Oracle Database import .sql file by command prompt

oracle, oracle-sqldeveloper, oracle10g, oracle11g, sql

Solution

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

Problem

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 ``` 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 Thanks

Original source