更新进程 CUBE

发布于 2024-10-21 14:47:54 字数 415 浏览 5 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

_失温 2024-10-28 14:47:54

可以在分析服务部署中完成快速修复

  • ,选择“流程”>“更改设置...”维度键错误
  • 选择使用自定义错误配置
  • 在“出现错误时停止”中,确保“出现错误时操作”设置为“停止日志记录”。
  • 在“特定错误情况”中,确保选择“报告并继续”。
  • 单击“确定”,将重新处理多维数据集并忽略此错误。

A quickfix could be done in analysis services deployment

  • Select Process>Change Settings…> Dimension key errors
  • Choose Use custom error configuration
  • In Stop on Error, ensure that On Error Action is set to "Stop Logging".
  • In Specific error conditions make sure that "Report and Continue" is selected.
  • Click OK and the cube will be reprocessed ignoring this error.
弥枳 2024-10-28 14:47:54

如果源表中有删除的记录,则必须使用完整模式处理多维数据集/度量组/分区。

If there are deleted records in the source table, you have to process the cube/measure group/partition using full mode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文