Going to do a POC on Snowflake and just wanted to check what is the best practice around loading the data to snowflake:
- Should load data in normalized (Group and store related information into multiple tables) Or go with Denormalized form? What is recommended here..?
- Or dump data to one table and create multiple views from one table? But think that The big table has 150 million records and it has a column called Australia State and we know that we have only 6 states in Australia. If a create a view to extract Australia State information from main table via view, I feel like it will be more costly than store Australia State Information in a separate table and that is what I am talking about normalization..?
- What is the way to load SCD-2 dimensions in Snowflake? Interested to know the efficient way to do this..?