Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 impdp 导入数据库。我想导入索引名称,然后手动重建它。
我使用了该选项
EXCLUDE=index
但是我在表中找不到索引all_indexes 有没有办法在不构建索引的情况下导入索引,然后手动构建它们?
all_indexes
使用以下参数导入所有表和数据
SQLFILE=create_index.sql 包含=索引
此参数不创建任何索引,而是创建一个包含所有 create index sql 语句的 sql 文件。使用此文件,您可以在完成表和数据导入后手动创建索引。
您还可以仅导出/导入元数据,这将仅导入表和索引结构。
内容=metadata_only