SQLLDR 和skip_unusable_indexes

发布于 2024-08-13 08:48:59 字数 274 浏览 5 评论 0原文

我有一个带有唯一索引的表,需要将 800,000 行加载到其中。

我更改了索引并使其无法使用。 我将“选项(行= 4000,bindsize = 512000,skip_unusable_indexes = TRUE)”添加到我的控制文件中。

我仍然收到以下形式的错误:

ORA-01502: index 'x_Unique' or partition of such index is in unusable state

欢迎建议

I have a table with a Unique Index that I need to load 800,000 rows into.

I altered the index and made it unuseable.
I added 'options( rows=4000, bindsize=512000, skip_unusable_indexes=TRUE )' to my control file.

I'm still getting errors of the form:

ORA-01502: index 'x_Unique' or partition of such index is in unusable state

Suggestions welcome

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

冷了相思 2024-08-20 08:48:59

您无法使用唯一索引来做到这一点。请参阅SKIP_UNUSABLE_INDEXES

但是,不允许使用唯一且标记为 IU 的索引
跳过索引维护。该规则由 DML 操作强制执行,
并通过直接路径加载强制与 DML 保持一致。

您可能应该删除索引并在之后重新创建它。

You cannot do it with unique indexes. See SKIP_UNUSABLE_INDEXES:

However, indexes that are unique and marked IU are not allowed
to skip index maintenance. This rule is enforced by DML operations,
and enforced by the direct path load to be consistent with DML.

You probably should drop your index and recreate it after.

这个俗人 2024-08-20 08:48:59

我认为您可以用非唯一索引替换唯一索引,然后在同一列上放置唯一约束。然后可以在加载之前禁用约束并使索引变得不可用,然后重建索引并在之后重新启用约束。

I think that you could replace the unique index with a non-unique index and then place a unique constraint on the same column(s). Then the constraint can be disabled and the index made unusable before the load, then the index rebuilt and the constraint re-enabled afterwards.

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