Forum Discussion
Where Do I Start With Consuming Source Files That can be Queries in Fabric Data Warehouse
- 2 years ago
What BI tool will you use? (Power BI?)
Will you query the files directly from your BI tool? Or will you load the data from the files into delta tables first, and then query the delta tables from your BI tool?
Could you write the contents of your files into a Delta table (by using Notebook), and use Notebook to add the Business Effective Date as a column in the Delta table?
Thanks frithjof_v,
From what I was reading, I think you confirmed that I need to park the actual files in Lakehouse. I was just wondering how to get the meta-data layer on top of them so we can query lake house and the files using our BI tool.
What BI tool will you use? (Power BI?)
Will you query the files directly from your BI tool? Or will you load the data from the files into delta tables first, and then query the delta tables from your BI tool?
Could you write the contents of your files into a Delta table (by using Notebook), and use Notebook to add the Business Effective Date as a column in the Delta table?
- v-cboorla-msft2 years ago
Microsoft Employee
Hi dnauflett
Thanks for using Microsoft Fabric Community.
We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet. In case if you have any resolution please do share that same with the community as it can be helpful to others. Otherwise, will respond back with the more details and we will try to help.
Thank you.
- v-cboorla-msft2 years ago
Microsoft Employee
Hi dnauflett
We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet. In case if you have any resolution please do share that same with the community as it can be helpful to others. If you have any question relating to the current thread, please do let us know and we will try out best to help you. In case if you have any other question on a different issue, we request you to open a new thread.
Thank you.
- dnauflett2 years agoFrequent Visitor
Sorry for my slow responses, I'm trying to figure out how to get started. I'm going to do some reading on Notebook to see if we could use it. We have about 520 files that we need to expose daily. I was hoping Fabric had some type of crawler that could crawl a directory struture and use Meta-data to define and expose the data for our BI tool.
- dnauflett2 years agoFrequent Visitor
We are going to continue using MicroStrategy. After months of trying and multiple high end consultants, we can't get Power BI to do Multi Fact Table analysis.
The plan is to query the data from MicroStrategy. I'm very new to the MicroSoft eco system and did not know how to get started. Not having File headers is definitly a complicating matter. I'm a little familur with Pipelines, but never used Notebook. Would I have to write a Notebook job for each file? or can it use Meta-data? I'm going to start reading about Note book.- frithjof_v2 years ago
Community Champion
I'm not quite sure what is meant by Multi Fact Table analysis.
If it is the same as Multi Fact Star Schema, then it should be quite straightforward to work with it in Power BI. https://community.fabric.microsoft.com/t5/Desktop/creating-a-multi-fact-star-schema/m-p/272010
I don't have experience with Microstrategy.
I think it should be possible with only one notebook for all the files. The notebook should be able to loop through the files, and do transformations, adding schema, column headers, etc. by using python code. I don't have super much experience with notebook, and I am not sure what a crawler is, but I think notebook should be good for working with manipulating files in directories, adding schema (column headers) and writing to tables like delta tables.
Notebook can be run on a schedule, or triggered by a Data pipeline.
If you can share some screenshots or illustrations of the files and the data structures you will be working with, it could be easier to understand and give suggestions.