Import multiple PDE files via script?

Using the "Copy as command" feature of the "export tables" dialog, I can create an export script that can be run from the command window, and I can put together multiple export commands to run them sequentially:

Code:
Export Tables=PLSQLDEV_EXPORT_DEMO1 Method="PL/SQL Developer" Compress IncludeStorage IncludePrivs Filename="C:\Users\schmitf2\Downloads\plsql-export-demo\export-table1.pde"
Export Tables=PLSQLDEV_EXPORT_DEMO2 Method="PL/SQL Developer" Compress IncludeStorage IncludePrivs Filename="C:\Users\schmitf2\Downloads\plsql-export-demo\export-table2.pde"

However, it seems there's no corresponding functionality to run several imports in a batch. I tried:

Code:
Import Tables Filename="C:\Users\schmitf2\Downloads\plsql-export-demo\export-table1.pde"
Import Tables Filename="C:\Users\schmitf2\Downloads\plsql-export-demo\export-table2.pde"

but it seems those commands are silently ignored. Is it possible to run such a batch import? If not I'd like to put in a feature request :-)
 
Back
Top