Oracle Database import .sql file by command prompt
In Oracle, to run a script (.sql) you use SQLPLUS command line utility.
c:\> sqlplus user_name/user_password@connect_string @path\your_sql.sql
Try to use sqlplus
:
sqlplus user/password@connect @/Nisarg/NEult/softpoint.sql
More information.
It's worth knowing you can have a space between @ and the input file, which enables the use of the tab key auto completion.