1752587 Members
3735 Online
108788 Solutions
New Discussion юеВ

VALIDATE ARCHIVE LOGS..

 
SOLVED
Go to solution
Tajammul_Ahmed
Regular Advisor

VALIDATE ARCHIVE LOGS..

Hi,

I want to validate my archave log with current databse, when I execute the command from UNIX prompt, I'm getting the fallowing
#rman
RMAN>
RMAN> crosscheck archivelog all ;

I'm getting the below error.
RMAN> corsscheck archivelog all;

RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-00558: error encountered while parsing input commands
RMAN-01005: syntax error: found "identifier": expecting one of: "allocate, alter, backup, beginline, blockrecover, catalog, change, connect, copy, create, crosscheck, configure, duplicate, debug, delete, drop, exit, endinline, host, {, library, list, mount, open, print, quit, recover, register, release, replace, report, renormalize, reset, restore, resync, rman, run, rpctest, set, setlimit, sql, spool, startup, shutdown, send, show, test, upgrade, validate"
RMAN-01008: the bad identifier was: corsscheck
RMAN-01007: at line 1 column 1 file: standard input

for your information I'm using oracle 9i.

how I can mount the databse in RMAN mode?

Thanks and best regards
Mohammed Tajammul Ahmed
4 REPLIES 4
Oviwan
Honored Contributor

Re: VALIDATE ARCHIVE LOGS..

hey

you wrote corsscheck instead of crosscheck.

check this reference:
http://download.oracle.com/docs/cd/B10501_01/server.920/a96565/rcmsynta5.htm#78096

Regards
Tajammul_Ahmed
Regular Advisor

Re: VALIDATE ARCHIVE LOGS..

Hi,

Still not clear, I want the exact command how to mount the DB at RMAN level.

Thanks
Oviwan
Honored Contributor
Solution

Re: VALIDATE ARCHIVE LOGS..

execute:
select status from v$instance;
in sqlplus and when the db is mounted so the db is mounted.

what kind of rman repository have you? controlfile or db?

if controlfile, start rman like this:
export ORACLE_SID=YOUR_SID
rman target / nocatalog

and then you should be able to validate your archivelogs..

p.s. don't forget to say thanks with hp points, also i your other threads.
Tajammul_Ahmed
Regular Advisor

Re: VALIDATE ARCHIVE LOGS..

Thank a lot...