To restore a database from the default directory /backup/rman use the cmd

cmd: RESTORE DATABASE;

Restore Specific Tablespace:

Instead of restoring the full database, you can also restore only specific tablespace

cmd:RMNAN> RESTORE TABLESPACE dev1;

Here dev1 is the tablespace name

To restore more than one tablespace by separating them with commas.

cmd:RMNAN> RESTORE TABLESPACE dev1, dev2;