I want to import .sql file in Oracle by command prompt so please tell me that command to import .sql file in oracle in MYSQL I am using it like this
我想要在Oracle中导入.sql文件,所以请告诉我在MYSQL中导入.sql文件的命令是这样的。
mysql -u root -p -h localhost softpoint < D:\Nisarg\NEult\softpoint.sql
but In Oracle I don't know how to use this utility so please help me
但是在Oracle中,我不知道如何使用这个工具,所以请帮助我。
Thanks
谢谢
3 个解决方案
#1
#2
4
Try to use sqlplus
:
尝试使用sqlplus:
sqlplus user/password@connect @/Nisarg/NEult/softpoint.sql
更多的信息。
#3
0
It's worth knowing you can have a space between @ and the input file, which enables the use of the tab key auto completion.
值得了解的是,您可以在@和输入文件之间有一个空格,这允许使用tab键自动完成。
#1
13
In Oracle, to run a script (.sql) you use SQLPLUS command line utility.
在Oracle中,要运行一个脚本(.sql),您可以使用SQLPLUS命令行实用程序。
c:\> sqlplus user_name/user_password@connect_string @path\your_sql.sql
#2
4
Try to use sqlplus
:
尝试使用sqlplus:
sqlplus user/password@connect @/Nisarg/NEult/softpoint.sql
更多的信息。
#3
0
It's worth knowing you can have a space between @ and the input file, which enables the use of the tab key auto completion.
值得了解的是,您可以在@和输入文件之间有一个空格,这允许使用tab键自动完成。