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
Bookmarks