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

Thread: Rollback segment problem

Threaded View

  1. #9
    Join Date
    Nov 2004
    Location
    Mumbai, India
    Posts
    452
    Originally posted by davey23uk
    well you are fetching across a commit - that is a such a bad thing to do and can guarantee yourself a ORA-1555 which you have got
    I ran the delete without the commit also :
    Delete from temp_tab a where exists
    (select 1 from temp_tab b where ((a.amount>0
    and b.AMOUNT<0) or(a.amount<0 and b.AMOUNT>0))
    and abs(a.amount)=abs(b.AMOUNT)
    and a.md=b.MD
    and a.comment=b.COMMENT
    and a.type=b.TYPE);
    Got the same error
    Latest update is :
    Set undo retention to 5000
    commit every 5000 rows instead of 1000
    Any solutions??
    Am really in a fix with this
    Last edited by simply_dba; 04-28-2005 at 12:30 PM.
    There are three kinds of lies: Lies, damned lies, and benchmarks...

    Unix is user friendly. It's just very particular about who it's friends are.

    Oracle DBA

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