I want to get a single table accidentally dropped from db. Db is a pluggable db I have tried this but fail
rman target=/
recover table myuser.persons2 OF PLUGGABLE DATABASE pdb2
until scn 37128783
auxiliary destination '/tmp/aux'
datapump destination '/var/oracle/data/export'
dump file 'saved_copy.dmp'
notableimport;
The command fail because the command search for undo logs in SYSTEM tablespace, but my table was in another tablespace called "users_pers", is possible to specify the tablespace or there is another way? The error message is similar to:
table myuser.persons2 don'exist or not found, actually I don't have the console error (it was a test db for training).