Importing two dmp files into single schema

ε祈祈猫儿з 提交于 2019-12-13 04:12:48

问题


I have two dmp files to imported into the same schema in my DB. They are each 20GB (size was probably the reason why they were exported as two dump files). How can I do a successive import into the schema. Does impdp command have an option to allow me to import more than one file?


回答1:


Can't you just run the import twice? I am assuming the files have disjoint sets of data. You may need a command line switch "ignore=y" to allow the import to continue if the objects it's trying to create already exist.

Or, perhaps I'm not understanding your situation fully.




回答2:


I haven't used DataPump, but it looks like you can just give multiple filenames separated by commas. Look here at the DUMPFILE parameter:

http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_import.htm#i1010670



来源:https://stackoverflow.com/questions/676187/importing-two-dmp-files-into-single-schema

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!