将数据从数据仓库获取到关系数据库
这相当不寻常,但由于办公室政治等原因,我们可以(只读)访问数据仓库,但不能访问实时数据。然而,我们需要最新的数据来填充我们的关系(OLTP)数据库(MS SQL Server)。仓库(也是MS)中的数据采用星型模式格式(即维度和事实)。我对仓库不是很熟悉 将数据从仓库获取到关系数据库?我的 google-fu 太弱,无法得到任何答案(很多相反)。
数据库。如何 沙武
This fairly unusual, but because of office politics etc. we have (read-only) access to the data warehouse, but not to the live data. However we need up-to-date data to populate our relational (OLTP) database (MS SQL server. The data in the warehouse (also MS) is in star schema format (i.e. Dimensions and Facts). I am not very familiar with warehouse DBs. How can I get data from the warehouse into a relational database? My google-fu was too weak to get me any answers (lots for the other way round).
Thanks
Chavoux
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果有数据仓库,那么 ETL 流程就已经就位。因此,使用加载 DW 的相同工具(SSIS?)从 DW 中提取数据并将其移动到不同的 DB。您或许也可以请您的 ETL 人员提供帮助:)。
If there is a data-warehouse, then the ETL process is already in place. So, use the same tool (SSIS ?) that loads the DW to extract data from the DW and move it to a different DB. You can probably ask your ETL guy to help too :).
SSIS 包?任何可以加载和转换数据的东西。
SSIS packages? Anything that can load and transform data.
听起来数据仓库是一个 SQL Server 数据库,因此可以使用标准 SQL。您可以使用SSIS转换来自DW的数据并将其加载到OLTP数据库。
Sounds like the data warehouse is a SQL Server database so standard SQL can be used. You can use SSIS to transform the data from the DW and load it to the OLTP database.