logical backup without a specific table [message #197657] |
Thu, 12 October 2006 03:46 |
lokeshonline
Messages: 29 Registered: April 2006
|
Junior Member |
|
|
How can I take a logical backup of the database without taking the backup of one specific table? Actually I need to give this to our client but we don't want to give them backup of one specific table.
|
|
|
|
|
Re: logical backup without a specific table [message #197942 is a reply to message #197861] |
Fri, 13 October 2006 06:32 |
|
Mahesh Rajendran
Messages: 10708 Registered: March 2002 Location: oracleDocoVille
|
Senior Member Account Moderator |
|
|
in 10g you exclude a particular object.
In all lower editions you need to specify all the tables in TABLES=() parameter.
It would be easier to script this.
write a sql to spool the names of tables you want (select table_name from user_tables where table_name not in MY_TABLE) in csv format. save the file and user PARFILE option.
Search the board. Long back, I have already posted a script to do this.
|
|
|