Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

insert into and rollback segment

Status
Not open for further replies.

Rajesh99

Programmer
Mar 17, 2003
43
0
0
US

I have a huge table and I intend to do:

insert into another_table select * from big_table;

Will this run into can not extend rollback segment error?
 
Rajesh,

INSERT statements consume very little space (no matter how many rows you INSERT) since the ROLLBACK data that Oracle must store for in INSERT is what?...NULLs [2thumbsup]

The DML that consumes lots of space is DELETE since Oracle must store the entire row in case you want to ROLLBACK.

[santa]Mufasa
(aka Dave of Sandy, Utah, USA)
[I can provide you with low-cost, remote Database Administration services: see our website and contact me via www.dasages.com]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top