DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: Using hints with Insert Statement in PLSQL

Threaded View

  1. #1
    Join Date
    Jul 2003
    Posts
    136

    Question Using hints with Insert Statement in PLSQL

    Oracle 11g

    Does the below statement from within PLSQL block utilize the APPEND hint for direct inserts (without logging)

    INSERT /*+ APPEND */ into myTable Select * from myView

    1. How does commenting symbols read during execution of the PLSQL code.

    2. Does /*+ APPEND */ get ignored or take effect?

    or Should we must use something like this

    v_myvar := 'INSERT /*+ APPEND */ into myTable Select * from myView';
    execute immediate v_myvar;
    Last edited by daljitsb; 10-06-2011 at 01:32 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width