Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Export Error, Exp-0056 , Ora-1422, Ora-6512

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

From: <kishanthakker_at_gmail.com>
Date: 2 Apr 2007 02:11:01 -0700
Message-ID: <1175505061.881311.61640@b75g2000hsg.googlegroups.com>


Dear Vladimir M. Zakharychev

Thanx . I M really grateful for the solution . I could really solve the problem.

Kishan Thakker

On Mar 31, 12:49 pm, "Vladimir M. Zakharychev" <vladimir.zakharyc..._at_gmail.com> wrote:
> On Mar 30, 5:54 pm, "kishanthak..._at_gmail.com"
>
>
>
> <kishanthak..._at_gmail.com> 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
Thanx
> 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
Received on Mon Apr 02 2007 - 04:11:01 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US