Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple table export in oracle

Is it possible to export multiple tables in oracle using QUERY parameter the WHERE clauses are different for each table?

like image 750
nayakam Avatar asked Dec 29 '25 03:12

nayakam


1 Answers

If you're using the old export (exp) then no, you'd need to do a separate export for each table. The restrictions are shown in the documentation.

If you're using data pump (expdp) then yes, you can specify multiple QUERY clauses and specify which table each applies too, again as described in the documentation.

like image 188
Alex Poole Avatar answered Dec 30 '25 23:12

Alex Poole