Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Insert Records - Performance Problem

Re: Insert Records - Performance Problem

From: Steve Adams <steve.adams_at_ixora.com.au>
Date: Wed, 21 Apr 1999 00:51:59 GMT
Message-ID: <7fj7fe$qli$1@nnrp1.dejanews.com>


After your session has done its inserts on production, please post the output of the following:

select e.event, e.time_waited
from v$session_event e, v$session s
where s.audsid = userenv('SessionID')
and e.sid = s.sid;

select s.name, m.value
from v$mystat m, v$statname s
where m.statistic# = s.statistic#
and s.name = 'CPU used by this session';

Thanks,
Steve Adams

In article <7fihbe$6it$1_at_nnrp1.dejanews.com>,   kmyu_at_my-dejanews.com wrote:
> I have a problem in inserting records into Oracle 8. I have two machine, one
> for development and one for production and they have similar setting. The
> development machine takes only 0.8 sec to insert 1000 record, but the
> production machine takes 23 minutes to finish the same task. Is there any clue
> why there is different? I checked for the init.ora. They have similar
> parameters.
>
> -----------== Posted via Deja News, The Discussion Network ==----------
> http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
>

-----------== Posted via Deja News, The Discussion Network ==---------- http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own Received on Tue Apr 20 1999 - 19:51:59 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US