我想导出数据库,首先我使用cmd
C:\>expdp userid=AF/AF@//214.146.74.241:1521/LOPES CONTENT=METADATA_ONLY dumpfile=lopes.dmp
结果
La tabla maestra "AF"."SYS_EXPORT_SCHEMA_03" se ha cargado/descargado correctamente
******************************************************************************
El juego de archivos de volcado para AF.SYS_EXPORT_SCHEMA_03 es:
C:\ORACLE\ADMIN\LOPES\DPDUMP\LOPES.DMP
El trabajo "AF"."SYS_EXPORT_SCHEMA_03" ha terminado correctamente en Mar Sep 26 11:07:25 2017 elapsed 0 00:02:04
但是这个文件夹不存在,因为Oracle位于这里:C:\oraclexe\app\oracle
所以我无法将转储文件存档到任何地方
然后我尝试了:
C:\>expdp userid=AF/AF@//214.146.74.241:1521/LOPES CONTENT=METADATA_ONLY dumpfile=c:/tmp/lopes.dmp
结果如下:
Export: Release 11.2.0.2.0 - Production on Mar Sep 26 11:18:11 2017
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
Connected to: Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
ORA-39001: valor de argumento no vßlido
ORA-39000: especificaci≤n de archivo de volcado err≤nea
ORA-39088: el nombre de archivo no puede contener una especificaci≤n de ruta de acceso
答案 0 :(得分:0)
expdp实用程序在服务器上的默认目录“DATA_PUMP_DIR'”中创建转储文件。
SELECT a.owner, a.directory_name, a.directory_path
FROM sys.all_directories a
where directory_name='DATA_PUMP_DIR'
过时的实用程序exp在指定位置的客户端上创建转储文件。
答案 1 :(得分:0)
我的问题是,您是否使用dba权限定义数据库中的全局导出目录:CREATE DIRECTORY ExportData AS'C:\ ExportData';
之后,您需要对要导出的用户使用expdp GRANT READ,WRITE ON DIRECTORY ExportData TO YOUR_USER;
导出此目录对象的读/写权限