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

Thread: Nologging on INSERT

  1. #1
    Join Date
    Sep 2000
    Posts
    78

    Arrow

    Hi,

    I have a INSERT, but I don't want it to be logged as it creates a big archivelogs. How do I make INSERT NOLOGGING. Is it possible since I can't find that option in the docs. (I have Oracle8.1.5 standard edition).

    Thanx!

  2. #2
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    you can only use nologging option if you do direct inserts

    first alter the table to nologging attribute
    then

    insert /*+ append */ into xxxx
    select * from yyyy;

    direct insert is insert.... select....
    there is no way you can avoid logging in a normal insertion

  3. #3
    Join Date
    Sep 2000
    Posts
    78
    Thanx! it is clear to me now

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