ChatGPT解决这个技术问题 Extra ChatGPT

如何在 Oracle SQL 开发者工具中运行 .sql 文件来导入数据库?

I have exported database from Oracle SQL developer tool into .sql file. Now I want to run this file which is of size 500+ MB.

I read about running scripts here, but I didn't understand the way. Is there any command or query by which we can run this sql script by providing path?

How did you export, using EXPDP? Is it a dump file or just a .sql file?
Tool -> Export Database ... I didn't get any other way

R
ROOT

You could execute the .sql file as a script in the SQL Developer worksheet. Either use the Run Script icon, or simply press F5.

https://i.stack.imgur.com/NJ9ST.jpg

For example,

@path\script.sql;

Remember, you need to put @ as shown above.

But, if you have exported the database using database export utility of SQL Developer, then you should use the Import utility. Follow the steps mentioned here Importing and Exporting using the Oracle SQL Developer 3.0


where should I run this command? Because I can get query explorer screen after click on one of present db
@Rushikesh Open a SQL Worksheet and then do as I said above.
I gave a 12GB .sql file of my whole database and the Oracle SQL Developer just Crashed :(
Thanks for the tip ! Works like a charm (example on Windows : @D:\Scripts\import.sql)
If you have spaces in your path use "..." for example: @"c:\temp\big path with spaces\sqltool - oracle.sql"
S
Sandeep

You need to Open the SQL Developer first and then click on File option and browse to the location where your .sql is placed. Once you are at the location where file is placed double click on it, this will get the file open in SQL Developer. Now select all of the content of file (CTRL + A) and press F9 key. Just make sure there is a commit statement at the end of the .sql script so that the changes are persisted in the database


Unfortunately, when the file is 500+ MB as asked in the question, the SQL developer will fail to open it.
In my case, the file is 2.5MB, and SQL Developer fails to open it.
B
Bipil Raut

You can use Load function

Load TableName fullfilepath;