2

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?

Jason Aller
  • 3,541
  • 28
  • 38
  • 38
adelak
  • 647
  • 4
  • 11
  • 25

1 Answers1

0

Two approaches come to mind:

  1. Open the file with SQL Developer and Execute it (select the appropriate connection if prompted)

  2. Open a connection, and in the SQL Worksheet:

    @"C:\Path\To\My Schema\import.sql"

Then Execute as a statement.

MeyerRJ
  • 792
  • 4
  • 8