I had a script that backs up all the individual datafiles like:
RMAN> BACKUP AS COMPRESSED BACKUPSET DATAFILE 'datafile<1>.dbf'
So i have backupsets of all the datafiles. I'm confused as to whether it would be sufficient to use RESTORE DATABASE, as can be done after a full database backup using BACKUP DATABASE? Isn't the end result of both BACKUP operations the same?
Thank you in advance.