impdp导致主键索引的变化分析

本篇内容介绍了“impdp导致主键索引的变化分析”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

在使用数据泵导入数据时,有时需要禁用掉主键约束。
这样做在特定情况下会存在导入数据后主建索引丢失和主键对应的索引变化的问题。
官方支持如下。
禁用约束,删除索引:
Oracle? Database Administrator's Guide 11g Release 2 (11.2)--》Managing Integrity Constraints
You can use the ALTER TABLE statement to enable, disable, modify, or drop a constraint. When the database is using a UNIQUE or PRIMARY KEY index to enforce a constraint, and constraints associated with that index are dropped or disabled, the index is dropped, unless you specify otherwise.

重建约束后会自动选择唯一键:
Why Does The Primary Key Constraint Point To A Different Index After Import? (文档 ID 1455492.1)

During import, this sequence order is kept. When adding a primary/unique key constraint (step 3), Oracle checks if any existing index can be utilized to enforce the constraint, and in that case, uses it instead of creating a unique index (which was done before in 7.x releases unconditionally). This was done to minimize disk utilization and time needed for the constraint to be enabled.

可以在禁用约束时候使用keep index选项。
或者采用删除和重建的方式。

“impdp导致主键索引的变化分析”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程之家网站,小编将为大家输出更多高质量的实用文章

相关文章

这篇文章主要介绍“hive和mysql的区别是什么”,在日常操作中...
这篇“MySQL数据库如何改名”文章的知识点大部分人都不太理解...
这篇文章主要介绍“mysql版本查询命令是什么”的相关知识,小...
本篇内容介绍了“mysql怎么修改字段的内容”的有关知识,在实...
这篇文章主要讲解了“mysql怎么删除unique约束”,文中的讲解...
今天小编给大家分享一下mysql怎么查询不为空的字段的相关知识...