Hi.
I m just learning to take backup using RMAN.
I used this script to get the Backup of my database.


run {
2> # backup the database to disk
3> allocate channel d1 type disk;
4> backup
5> full
6> tag full_db
7> format 'E:\backups\db_%t_%s_p%p'
8> (database);
9> release channel d1;
10> }

It Made a file in the specified folder.
But the problem is that i dont know how to recover the databse using the RMAN.

I tried the command
Recover Database;
But it gives me errors like this

RMAN-06099: error occured in source file: krmk.pc, line:9640
Plz anybudy give the list of the commands of RMAN and also tell me how to recover database using RMAN.

P.S.
Im using Oracle 9i version 1.0.1 on Intel Server Platform Using Windows 2000 server.
The database is in archivelog Mode.

Regards Zeeshan!