有人知道如何编写一个特定的命令行,将.dmp文件导入Oracle Express数据库,然后将数据导出为CSV文件吗?
如有任何帮助,我们将不胜感激。非常感谢。
使用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