If you ever need to export specific records from your table to a .dmp file using exp.exe here is an example :
Suppose we have a table Orders and we want to export that table to a dmp file - not the whole table but today's orders.
from the prompt you write :
exp.exe 'sys/mypass@mydb as sysdba' file=c:\orders.dmp log=c:\orders.log tables=(ORDERS) QUERY=\" WHERE ORDER_DATE = '11/08/2006'\"
Remember : query=\" \" or else you get an error ! |
@gpdimonderose
Man it's easy to make a blog and post your stuff there. This is a technology blog.