What is a staging table?

后端 未结 1 1486
走了就别回头了
走了就别回头了 2020-12-28 14:44

Are staging tables used only in Data warehouse project or in any SSIS Project? I would like to know what is a staging table? Can anyone give me some examples o

相关标签:
1条回答
  • 2020-12-28 15:37

    staging tables are just database tables containing your business data in some form or other. Staging is the process of preparing your business data, usually taken from some business application. For your average BI system you have to prepare the data before loading it. A staging table is essentially just a temporary table containing the business data, modified and/or cleaned. Depending on your actual case you may have several staging tables from different source systems that then are combined into the resulting fact table for the BI system.

    0 讨论(0)
提交回复
热议问题