我正在尝试从预言机转储中导入特定表,为了避免任何父键未找到异常,我想按照一定的顺序导入表。例如,如果表 X 依赖于表 A 和 B,我想先导入 A 和 B:
imp user/pass@dbName tables=(A,B,X) rows=y ignore=Y
此命令是否保证在 X 之前导入 A 和 B?
exp userid=ronr tables=COMM_SCHEDULE_DELIVERY,COMM_SCHEDULE_DETAIL,COMM_SCHEDULE_HEADER file=z.dmp
...
...
imp userid=imp fromuser=ronr touser=imp tables=COMM_SCHEDULE_HEADER,COMM_SCHEDULE_DETAIL,COMM_SCHEDULE_DELIVERY file=z.dmp
Import: Release 11.2.0.3.0 - Production on Tue Aug 7 16:53:34 2012
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Password:
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Data Mining and Real Application Tes
Export file created by EXPORT:V11.02.00 via conventional path
Warning: the objects were exported by RONR, not by you
import done in US7ASCII character set and AL16UTF16 NCHAR character set
import server uses AL32UTF8 character set (possible charset conversion)
. importing RONR's objects into IMP
. . importing table "COMM_SCHEDULE_DELIVERY" 0 rows imported
. . importing table "COMM_SCHEDULE_DETAIL" 0 rows imported
. . importing table "COMM_SCHEDULE_HEADER" 0 rows imported
Import terminated successfully without warnings.
不,imp 上指定的顺序不能保证表的导入顺序,而是按照表的导出顺序完成的。