更新进程 CUBE
我正在使用 SSIS 分析任务来使用仅更新过程来处理 CUBE。
源记录是事务类型 1,因此当我们获取源中现有记录的更新记录时,将删除并插入新记录,此处更新过程多维数据集由于源处缺少键而失败(这是由于删除源记录)在更新的源代码上)
source table records cube process records
1000 1000
deleted 5 and inserted 5 new 5 and key error while processing the cube.
我们可以使用完整过程来避免这个问题,但会影响性能,
如何仅使用更新过程来执行此过程。
谢谢普拉夫
I am using the SSIS Analysis task to process CUBE using the update only process.
The source records is a transactional TYPE 1, so when we get an update records to exisitng records in the source will delete and insert the new records, here Update process cube failing due to missing key at source(which is due to deleting the source records on updated source)
source table records cube process records
1000 1000
deleted 5 and inserted 5 new 5 and key error while processing the cube.
we could use FULL PROCESS to avoid this problem but having performance hit,
How to do this process using the update process only.
thanks
prav
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以在分析服务部署中完成快速修复
A quickfix could be done in analysis services deployment
如果源表中有删除的记录,则必须使用完整模式处理多维数据集/度量组/分区。
If there are deleted records in the source table, you have to process the cube/measure group/partition using full mode.