problem in insert [message #267279] |
Wed, 12 September 2007 23:20 |
anamika_025
Messages: 81 Registered: July 2007 Location: Indore
|
Member |
|
|
Hi all,
I have problem in insert the records from one table to another.
one table have 6 lacs records and another table i m using range partition and i want to insert the records to partition table.
i m using this query
insert into t_receiptd2 ( select * from t_receiptd);
more than half hour but this query is not yet completed
what to do? please help me
thanks and regards
Anamika.
[Updated on: Wed, 12 September 2007 23:22] Report message to a moderator
|
|
|
|
|
Re: problem in insert [message #267663 is a reply to message #267279] |
Fri, 14 September 2007 02:46 |
anamika_025
Messages: 81 Registered: July 2007 Location: Indore
|
Member |
|
|
hi,
13:10:34 SQL> select count(*) from t_receiptd;
COUNT(*)
----------
593134
Elapsed: 00:00:03.21
12:56:27 SQL> insert into t_receiptd2 (select * from t_receiptd);
insert into t_receiptd2 (select * from t_receiptd)
*
ERROR at line 1:
ORA-03113: end-of-file on communication channel
Elapsed: 00:09:27.51
not inserting
|
|
|
|
|
|
|
|
Re: problem in insert [message #267684 is a reply to message #267675] |
Fri, 14 September 2007 04:31 |
abhilash8@gmail.com
Messages: 5 Registered: September 2006
|
Junior Member |
|
|
UNDO_RETENTION specifies for how many seconds undo information is kept. The default is 900 seconds and you can set this parameter to guarantee that Oracle keeps undo logs for extended periods of time. By example this parameter specify how long undo information should be retained after commit, preventing "snapshot too old" errors on long running queries in addition to supporting Oracle flashback query.This could be the reason for your slow performance with multiple inserts.
Revert it back to normal after your insert operation.
regards
abhilash
|
|
|
Re: problem in insert [message #267693 is a reply to message #267684] |
Fri, 14 September 2007 05:01 |
|
Michel Cadot
Messages: 68729 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
Quote: | This could be the reason for your slow performance with multiple inserts.
|
Why?
Regards
Michel
|
|
|