Hi,

I am very new to oracle.

Currently I am learning RMAN.

My doubt is

I took two backups using the following commands
run
{
allocate channel c1 type disk;
backup database format='c:\full\%d_%u';
}

Another one
run
{
allocate channel c1 type disk;
backup tablespace users format='d:\part|%d_%u';
}

Now just imagine I have some problem with my users datafile. So that I want to recover the data from the backup file called 'd:\part\ '

But I have gone through RMAN document and found out the following

run

{
allocate channel c1 type dis;
recover tablespace users;
}



My problem is How can I tell oracle to recover the data from the specified backup ie) d:\part\

Cool