I have built a standby db, which i manually backup the archivelogs to, then execute RECOVER STANDBY DATABASE. Correct me if am wrong. I read some oracle documentation that said i should be able to connect to the recovery catalog that i have registered my primary db with by executing RMAN CATALOG =RMAN/RMAN@CATDB TARGET=USER/PASS@STANDBYDB and backing up the standby there as well. When i check the recovery catalog for the standby backups they are not there. The only thing that gets backed up is the datafiles to a folder in i have specified. I use the same script for my primary db and with the only difference being the db_name and it backs up everything. Am using oracle -ver 9.2 standard edition. Is this part of the managed recovery standby db feature and is this available in the standard edition?why are my archivelogs not been backed up?ANYBODY!

backup
incremental level 0
skip inaccessible
tag backup_db_level_0
# filesperset equals
# to number of channels
filesperset 8
format '/u01/orabkup/standbydb/df_t%t_s%s_p%p'
database
setsize = 16777216;
#
# archives current redologs
#
# sql 'alter system archive log current';
#
# backup archive logs
#
backup
filesperset 10
format '/u01/orabkup/standby/al_t%t_s%s_p%p'
setsize = 524288
archivelog all;