当前位置: 代码迷 >> 综合 >> oracle导出dmp
  详细解决方案

oracle导出dmp

热度:33   发布时间:2023-09-06 17:11:36.0


expdp scott/scott dumpfile=scott.dmp direcotry=filepath schemas=scott

刘保松:
CONNECT system/manager
CREATE OR REPLACE DIRECTORY expdir AS ‘d:\exp’;
GRANT read,write ON DIRECTORY expdir TO public;

  相关解决方案