Oracle Database import .sql file by command prompt -
i want import .sql file in oracle command prompt please tell me command import .sql file in oracle in mysql using
mysql -u root -p -h localhost softpoint < d:\nisarg\neult\softpoint.sql but in oracle don't know how use utility please me
thanks
in oracle, run script (.sql) use sqlplus command line utility.
c:\> sqlplus user_name/user_password@connect_string @path\your_sql.sql
Comments
Post a Comment