Hi, I would like to know, how to export many tables from oracle DB.
I use exp.exe, create file expdat.dmp and so on. I choose to export only tables and there I must write which ones.
Is there any chance of getting all of them?
thanks
Hi, I would like to know, how to export many tables from oracle DB.
I use exp.exe, create file expdat.dmp and so on. I choose to export only tables and there I must write which ones.
Is there any chance of getting all of them?
thanks
You can export a list of tables, or you can export all tables owned by a specific user, or various other methods. The exp command, with no args, will tell you this. But it will not be all that clear -- it is usually easier to use a parm file to tell it what you want to export and how.
You can export a specified list of tables
exp userid=scott/tiger file=dumfile.dmp log=logfile.txt tables=EMP,DEPT,SALGRADE consistent=y buffer=1024000