Operating System - HP-UX
1753893 Members
7609 Online
108809 Solutions
New Discussion юеВ

interesting ORA-19506 error

 
Murat SULUHAN
Honored Contributor

interesting ORA-19506 error

 
Murat Suluhan
8 REPLIES 8
Massimo Bianchi
Honored Contributor

Re: interesting ORA-19506 error

Hi,
oracle release is the same for all working instances ?

Massimo
Massimo Bianchi
Honored Contributor

Re: interesting ORA-19506 error

Error: ORA 19624

Text: operation failed, retry possible

---------------------------------------------------------------------------

Cause: A backup, restore or image copy operation failed with an I/O error. If

the source of the I/O error can be corrected, then the operation may be

retried.

Action: This message is used by recovery manager to decide whether or not to

retry the operation.

... looks like there was an intermittent problem. is it reproducible with continuity ?

Massimo
Murat SULUHAN
Honored Contributor

Re: interesting ORA-19506 error

Hi Massimo

absolutely same version

Thanx for your response

Best Regards
Murat
Murat Suluhan
Murat SULUHAN
Honored Contributor

Re: interesting ORA-19506 error

Hi Massimo


about your second message,

I checked this error, but I could not find any efficient action for it, I copied rman script from other instance's dataprotector backup configuration and I changed labels with OYAK
so I think I have to solve first error

Thanx for your response,

Best regards
Murat

PS: please switch your points between your responses :))
Murat Suluhan
Enrico P.
Honored Contributor

Re: interesting ORA-19506 error

Hi,
in the RMAN script add the OB2BARLIST to the allocate channel.

Example:


run { allocate channel 'dev_0' type 'sbt_tape' parms 'ENV=(OB2BARTYPE=Oracle8,OB2APPNAME=RMAN81T,OB2BARLIST=test_full)'; backup incremental level filesperset 1 format 'test_full.dbf' database include current controlfile ; }

Enrico.

Murat SULUHAN
Honored Contributor

Re: interesting ORA-19506 error

Hi

my rman script as follows

run {
allocate channel 'dev_0' type 'sbt_tape'
parms 'ENV=(OB2BARTYPE=Oracle8,OB2APPNAME=OYAK,OB2BARLIST=OYAK_DB_Arch)';
allocate channel 'dev_1' type 'sbt_tape'
parms 'ENV=(OB2BARTYPE=Oracle8,OB2APPNAME=OYAK,OB2BARLIST=OYAK_DB_Arch)';
allocate channel 'dev_2' type 'sbt_tape'
parms 'ENV=(OB2BARTYPE=Oracle8,OB2APPNAME=OYAK,OB2BARLIST=OYAK_DB_Arch)';
allocate channel 'dev_3' type 'sbt_tape'
parms 'ENV=(OB2BARTYPE=Oracle8,OB2APPNAME=OYAK,OB2BARLIST=OYAK_DB_Arch)';
backup incremental level filesperset 1
format 'OYAK_DB_Arch.dbf'
database
include current controlfile
;
sql 'alter system archive log current'
;
backup filesperset 1
format 'OYAK_DB_Arch.dbf'
archivelog all
;
}


Thanx for your response
Best Regards
Murat
Murat Suluhan
Massimo Bianchi
Honored Contributor

Re: interesting ORA-19506 error

Hi,
a second look at your code showed me this:


...OYAK_DB_Arch..


the error regards the arc section.


Please check if you have all the archivelog, issue (from rman) a


change archivelog all crosscheck


i do not remember if sintax is this...

Massimo
Murat SULUHAN
Honored Contributor

Re: interesting ORA-19506 error

Hi

first off all thank you so much for your helps, I think you found really important points so I have trouble

when I "crosscheck copy" from rman some archivelog files fails, so this database not running in the evening (by local time :))

so how can I fix this archive log errors without lossing data

Best Regards
Murat
Murat Suluhan