Re: Export Error, Exp-0056 , Ora-1422, Ora-6512



On Mar 30, 5:54 pm, "kishanthak...@xxxxxxxxx"
<kishanthak...@xxxxxxxxx> wrote:
Dear friends,

I will be highly obliged if any one can help me on this error , which
I M getting while trying to backup user wise data from oracle9i on
Redhat Linux ES rel. 4.

While taking EXPORT backup on Oracle9i Enterprise Edition Release
9.2.0.4.0
I M getting following error message

. exporting triggers
EXP-00056: ORACLE error 1422 encountered
ORA-01422: exact fetch returns more than requested number of rows
ORA-06512: at "XDB.DBMS_XDBUTIL_INT", line 55
ORA-06512: at line 1
EXP-00056: ORACLE error 1422 encountered
ORA-01422: exact fetch returns more than requested number of rows
ORA-06512: at "XDB.DBMS_XDBUTIL_INT", line 55
ORA-06512: at line 1
EXP-00000: Export terminated unsuccessfully

I M taking backup with following command.

exp system/<password> file=<filename> log=<logfilename>
owner=<username>

we have around 15 oracle users. All other export is terminated without
error/warnings. Except only one user.

Once again I request to help me.

Thanx in Advance

Kishan Thakker

This is a known issue in 9.2.0.4, fixed in 9.2.0.5. Apply the latest
available patchset (9.2.0.8) to fix it. If you can't patch, there's a
workaround: make sure the schema being exported doesn't have triggers
with the same name as other objects. You can use the following query
to identify such triggers and rename them:

select object_type
,owner||'.'||object_name
from dba_objects
where (owner,object_name) in
(select o.owner, o.object_name from dba_objects o, dba_triggers t
where o.object_name = t.trigger_name
group by o.owner,o.object_name having count(*) > 1);

Hth,
Vladimir M. Zakharychev
N-Networks, makers of Dynamic PSP(tm)
http://www.dynamicpsp.com

.



Relevant Pages

  • Export Error, Exp-0056 , Ora-1422, Ora-6512
    ... While taking EXPORT backup on Oracle9i Enterprise Edition Release ... EXP-00056: ORACLE error 1422 encountered ... exact fetch returns more than requested number of rows ... Once again I request to help me. ...
    (comp.databases.oracle.misc)
  • Re: Question:encryption tool.
    ... -- What Oracle database versions does Oracle Secure Backup support? ... CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; ...
    (freebsd-questions)
  • Re: AIX Performance issue
    ... this is how we take backup ... Same for Oracle 7.3.4? ... application, in this database, on this Operating System? ... Perhaps the scripts and commands you're running ...
    (comp.unix.aix)
  • Re: Work with SQL*Plus through command prompt windows
    ... command prompt. ... a backup and recovery of an Oracle9i database. ... Copyright 1997, 2006, Oracle. ... editor and find the proper alias for the database in question. ...
    (comp.databases.oracle.server)
  • Re: Oracle 10g on Microsofts Virtual Server
    ... Oracle 9i introduced the facility to halt db I/O while the snapshot is being taken. ... Nightly backups of the VHDs is all that is required. ... For this requirement, Oracle has an option called Data Guard which can be configured for zero data loss, or minimal data loss. ... how do you achieve minimal data loss if you lose the VM and restore it from its backup? ...
    (comp.databases.oracle.server)