SantaMufasa
Technical User
Sheesh, it must be Friday. Can someone please look over what I'm doing here? We DataPump multiple times just about every day. But we are now experiencing errors on two different instances.
Here are details about my DataPump attempts:[ul][li]I am connecting directly to the machines upon which the Oracle instances are running.[/li][li]I am becoming the "oracle" user:
[/li][li]Here are the Oracle directories for the instance to which I am connecting:
[/li][li]Here are the contents of my Oracle expdp parameter file that I am running:
[/li][li]Here are the permissions on the target folder:
[/li][li]Here is an overview of the source schema's contents:
[/li][li]Here is a confirmation that there are no Oracle DataPump jobs running currently:
[/li][li]Following confirms that there are no existing OPS$ORACLE-owned objects:
[/li][li]Here is my command-line invocation of DataPump:
[/li][li]Notice that my invocation of Oracle DataPump is "expdp / ...", so I'm connecting as the "Almighty", All-privileged Oracle user "SYS".[/li][/ul]What am I missing/doing wrong?
Mufasa
(aka Dave of Sandy, Utah, USA)
[I provide low-cost, remote Database Administration services: www.dasages.com]
“Beware of those that seek to protect you from harm or risk. The cost will be your freedoms and your liberty.”
Here are details about my DataPump attempts:[ul][li]I am connecting directly to the machines upon which the Oracle instances are running.[/li][li]I am becoming the "oracle" user:
Code:
% sudo su - oracle
% whoami
oracle
Code:
select * from dba_directories;
OWNER DIRECTORY_NAME DIRECTORY_PATH
---------- ------------------------------ -------------------------------
SYS DPUMP_A141_LOG_DIR /opt/oracle/exports/a141/log
SYS WORK_DIR /opt/oracle/v10204db/work
SYS ORACLE_OCM_CONFIG_DIR /opt/oracle/v10205db/ccr/state
SYS DPUMP_A141_DMP_DIR /opt/oracle/exports/a141/exp
SYS DATA_PUMP_DIR /opt/oracle/v10204db/rdbms/log/
Code:
% cat dp_exp_a141_tidal_data.par
DIRECTORY=DPUMP_A141_DMP_DIR
JOB_NAME=cubsa141_DLH_20110317
DUMPFILE=dp_a141_dlh_tidal_data_20110317-1_%u.dmp
LOGFILE=DPUMP_A141_LOG_DIR:dp_exp_as141_dlh_tidal_data_20110317-1.log
PARALLEL=4
SCHEMAS=TIDAL
Code:
% pwd
/opt/oracle/exports/a141
% ls -l
drwxr-xr-x 2 oracle dba 4096 2011-03-17 16:28 exp
drwxr-xr-x 2 oracle dba 4096 2011-03-17 16:28 log
Code:
USERNAME SEGMENTS BYTES
-------- ----------- ------------
TIDAL 236 58,064,896
Code:
SELECT * FROM DBA_DATAPUMP_JOBS;
no rows selected
Code:
select table_name from dba_tables where owner like 'OPS%';
no rows selected
Code:
% expdp / parfile=/opt/oracle/usr/davehunt/dp_exp_a141_tidal_data.par
Export: Release 10.2.0.5.0 - 64bit Production on Friday, 18 March, 2011 17:31:18
Copyright (c) 2003, 2007, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
With the Partitioning, Real Application Clusters, OLAP, Data Mining
and Real Application Testing options
ORA-31626: job does not exist
ORA-31633: unable to create master table "OPS$ORACLE.CUBSA141_DLH_20110317"
ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
ORA-06512: at "SYS.KUPV$FT", line 866
ORA-01031: insufficient privileges
Mufasa
(aka Dave of Sandy, Utah, USA)
[I provide low-cost, remote Database Administration services: www.dasages.com]
“Beware of those that seek to protect you from harm or risk. The cost will be your freedoms and your liberty.”