1

有谁知道如何编写将 .dmp 文件导入 Oracle Express 数据库,然后将数据导出为 CSV 文件的特定命令行?

任何帮助将不胜感激。谢谢!

4

1 回答 1

0

使用 impdp 导入:

impdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=impdpEMP_DEPT.log

然后假脱机到 csv:

set heading off
spool myfile.csv
select col1|','||col2 from my_tables;
set colsep ','
select * from my_table;
spool off;

按照以下链接寻求帮助。

导入:https ://oracle-base.com/articles/10g/oracle-data-pump-10g 假脱机到 csv:http ://www.dba-oracle.com/t_export_to_csv_file.htm

于 2016-01-10T16:37:27.473 回答