Hello,
I’m trying to use Dremio Connector on Windows and fetch data in Excel. I’m able to get data as long as dataset is not tied to any space, generated query is like
SELECT * FROM “@myloggedinuser”.dataset_name
I created few Spaces and added datasets to it, fetching these datasets works in Dremio Browser interface but its failing when I fetch these in Excel throwing error as shown here
Does anyone know how to get data from Views stored in Spaces? The query generated is
SELECT * FROM “DREMIO”.“SPACE_NAME”.“VIEW_NAME” , which is not clear to me, I tried to change it in different combinations e.g. remove “DREMIO”. part, add “my_user_name”. but none worked.
Thank you.