SQL Loader into another user's table

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Anus

    SQL Loader into another user's table

    Can the SQL Loader utility load data into another user's table?

    note:
    this USER has select,update insert and delete privileges on the other
    user's tables
  • LKBrwn_DBA

    #2
    Re: SQL Loader into another user's table


    Yes, just code:

    INTO OTHERUSR.HIS_TA BLE

    or, create synonym.

    --
    Posted via http://dbforums.com

    Comment

    • Mark D Powell

      #3
      Re: SQL Loader into another user's table

      Anus <anus@anus.anus wrote in message news:<6gcfivss5 m7jqeb79f41i0jn mb81n2q6u1@4ax. com>...
      Can the SQL Loader utility load data into another user's table?
      >
      note:
      this USER has select,update insert and delete privileges on the other
      user's tables
      Yes, as long as the userid used to run the load has insert then just
      prefix the table_name with the owner in the ctl file: into table
      owner.table_nam e

      HTH -- Mark D Powell --

      Comment

      Working...