Hi all,

I am running RMAN with recovery catalog. I took the whole database backup with controlfile using the following command


Rman target sys/winter catalog rman/rman@rman

rman> run
{
allocate channel c1 type disk;
allocate channel c1 type disk;
backup database include controlfile
format 'c:\rmanbackup\%U' tag 'Fridayback';
}

It execute the above command successfully and also created four backuppieces in c:\rmanbackup

But when I give

list backup;

It is showing
RMAN-03022-Compiling command: List

But I am not getting any output

Can anyone guide me to find out my problem?

Seelan