Forum Discussion

eyeballkid's avatar
eyeballkid
Frequent Visitor
1 year ago
Solved

Move and transform Dynamics CRM data from bronze to silver

Hi,   I hope this is the an appropriate place to post this question as I'm new to Fabric. I am exploring how to create a Lakehouse using the medallion architecture so we can report on our Dynamics3...
  • SudhavaniKolla3's avatar
    1 year ago

    Hi, so we have 2 options todo this.

    1 way is creating one lake link/Synapse link in Dataverse to bring D365 CRM data to Fabric raw lakehouse(via shortcut, which means no physical movent of data) in the form of tables with all headters, so that you can apply next transfomations on top of data and push to silver(no need to combine headers with data, since all your data will come with headers as table).

    2 way is after comming data to Fabrci raw lakwhouse via ADLS gen2 as CSV files, which has no header(your current approach), you need to use notebook(pyspark code) to combine that header(json format) and data file(CSV format) by writing some pyspak code, so that it will form as dataframe with headers and push that dataframe data to silver layer as table.

     

    by following any of these 2 ways, you can able to achieve the required output.

    please let me know if you have any queries.

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.