Pass value from plsql to unix? unix commands in plsql?
I'm new to all this.
I am migrating table data from source DB to target.
In a PL/SQL procedure, I am passing in a date. With that date, I am taking all the rows in a table that are created before that date and exporting the data to a dmp file, then importing it to another table on the target side.
3 questions...
Can I do this? Call a unix 'exp' or 'imp' command from plsql?
Can I use the date in the exp call? ie) exp apps/apps ... query /"where creation_date=v_date_in/"
When I import...will the constraints on the target table ignore all duplicates?
Thanks!!