Oracle Database import .sql file by command prompt

后端 未结 4 2059
再見小時候
再見小時候 2021-02-20 06:53

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          


        
4条回答
  •  闹比i
    闹比i (楼主)
    2021-02-20 06:59

    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
    

提交回复
热议问题