I have an sql file that contains user schema with all objects(tables, packages) which I get by export user objects in pl/sql developer. Now I need to import it to my database. How I can do it with pl/sql developer?
Asked
Active
Viewed 8,326 times
2
-
Possible duplicate of [PL/SQL developer import dump](https://stackoverflow.com/questions/6160097/pl-sql-developer-import-dump) – Dominique Fortin Nov 19 '18 at 16:20
1 Answers
0
Two approaches come to mind:
Open the file with SQL Developer and Execute it (select the appropriate connection if prompted)
Open a connection, and in the SQL Worksheet:
@"C:\Path\To\My Schema\import.sql"
Then Execute as a statement.

MeyerRJ
- 792
- 4
- 8