Lk_brown,

thanks for replying back, I do have "configure" set in my backup script, the reason being b/c we want to seperate FULL and DIFFERENTIAL into seperate folder on the bakcup so we can move them to tape. below is what I have"

Code:
run {
	CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO 'C:\BACKUP\FULL\TESTCF_TEST_%F';
     	allocate channel c1 device type disk format 'C:\BACKUP\FULL\TESTDF_TEST_%U';
      	backup INCREMENTAL level=0 database plus archivelog delete input;
	delete FORCE noprompt obsolete;
    }


Please advie if you see better method.