How to export a user without data of few tables [message #468384] |
Thu, 29 July 2010 23:21 |
hari_bk
Messages: 110 Registered: March 2006
|
Senior Member |
|
|
Hi
I need to export a user with all the tables. But I need to export data into only few tables, need to omit the data of few tables.
Ex I dont want to export data of Audit tables with AU prefix.
Thanks
Hari
|
|
|
|
|
|
|
|
|
Re: How to export a user without data of few tables [message #468413 is a reply to message #468395] |
Fri, 30 July 2010 01:11 |
|
rahulvb
Messages: 924 Registered: October 2009 Location: Somewhere Near Equator.
|
Senior Member |
|
|
Dont pass ther quey just get the list of tables you and put
it in the braket [tables=( t,t,2... )]for which you want export the data
exp scott/tiger file=emp.dmp log=emp.log tables=( T1,T2,T3,...) rows=yes indexes=no
without data rows=no
exp scott/tiger file=emp.dmp log=emp.log tables=( T1,T2,T3,...) rows=no indexes=no
|
|
|