Read text file to insert data into Oracle SQL table

前端 未结 6 2060
慢半拍i
慢半拍i 2020-12-30 16:35

I am studying Oracle SQL developer.

What I am doing is reading text file line by line from the folder. Then Inserting data to the SQL table.

I am able to com

6条回答
  •  情话喂你
    2020-12-30 17:29

    first login with

    username:sys as sysdba

    password should be the same as used for user 'system'

    now enter

    SQL> grant execute on UTL_FILE to PUBLIC;

    Now login with any user with which you want to create procedure

提交回复
热议问题