The documentation does not give a specific way to Restore a tablespace, just this:
To restore tablespaces and datafiles:
1. Open a command line window and enter the following commands if you have the database
in the
Open state:
sqlplus /nolog
SQL>connect
user/password@service as sysdba;
SQL>alter database datafile '
datafile name' offline;
If you are restoring a tablespace enter:
SQL>alter tablespace
tablespace_name offline;
2. When the restore has been completed put the datafiles and tablespaces back online with the
following procedures:
Open a command line window and enter the following commands:
sqlplus /nolog
SQL>connect
user/password@service as sysdba
If you are restoring a datafile enter:
SQL>alter database datafile '
datafile_name' online;
If you are restoring a tablespace enter:
SQL>alter tablespace
tablespace_name online;
===============
I found this in the KNowledgebase
Unfortuneatly, this is a limitation of the usage of the GUI (Oracle-Restore context) funtionality. For the current version
of Data Protector, TSPITR is not supported with the GUI.
To perform TSPITR, the RMAN interface has to be used instead.
This limitation is documented in the Release Notes:
3.7 Limitations on Database Integrations
3.7.1 Oracle Limitations
...
• When restoring tablespaces to point in time the
RMAN interface has to be used.
There were no lab cases that address this, so, unfortunately, there is no way to do this from the gUI