Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/sql/71.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Export.sql转储_Sql_Oracle_Oracle10g_Dump - Fatal编程技术网

Export.sql转储

Export.sql转储,sql,oracle,oracle10g,dump,Sql,Oracle,Oracle10g,Dump,我必须创建一个扩展名为.sql的转储文件,正确的方法是什么?我正在使用Oracle database Express Edition 10g。如果我在cmd中输入它,这可以工作吗 expdp system/system_password full=Y EXCLUDE=SCHEMA:\"LIKE \'APEX_%\'\",SCHEMA:\"LIKE \'FLOWS_%\'\" directory=DUMP_DIR dumpfile=DB1.sql logfile=expdpDB10G.log e

我必须创建一个扩展名为.sql的转储文件,正确的方法是什么?我正在使用Oracle database Express Edition 10g。如果我在cmd中输入它,这可以工作吗

expdp system/system_password full=Y EXCLUDE=SCHEMA:\"LIKE \'APEX_%\'\",SCHEMA:\"LIKE \'FLOWS_%\'\" directory=DUMP_DIR dumpfile=DB1.sql logfile=expdpDB10G.log

expdp创建一个转储文件,该文件只能由impdp使用,不能作为SQL脚本运行,因此将其命名为
.SQL
扩展名没有意义


我更喜欢用
.dmp
这样的名字来命名它,这样它包含的内容就更清楚了。

我怎样才能生成一个.sql文件呢?好吧,有些人使用sql Developer,但我,我是个老派。记事本:)