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

Home -> Community -> Mailing Lists -> Oracle-L -> RE: SOS Alert

RE: SOS Alert

From: Mohan, Ross <MohanR_at_STARS-SMI.com>
Date: Wed, 20 Dec 2000 15:20:20 -0500
Message-Id: <10716.125030@fatcity.com>


This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible.

------_=_NextPart_001_01C06AC2.46995EF0
Content-Type: text/plain;

        charset="iso-8859-1"

4K striping is a major Major MAJOR mistake.

Doing it in software makes it at least 3x as bad.

Either fix alone would have provided at least a 2-4x improvement.

Given a choice, I'd fix the stripe size first, then convert the mirroring to hardware.

hth

imho

ymmv

afaik,

etc.

-----Original Message-----
From: VIVEK_SHARMA [mailto:VIVEK_SHARMA_at_infy.com] Sent: Wednesday, December 20, 2000 11:13 AM To: Multiple recipients of list ORACLE-L Subject: RE: SOS Alert

CASE In a Bank , Interest Calculation Batch Processing Unable to go beyond 500 A/cs per minute

ACTION Moved the Database to Another IBM Machine ( 4 CPU , 4 GB RAM ) with HARDWARE Mirroring & 64 K Stripe Size

NOTE - On the Under-performing DB Server S80 Model of IBM) there exists Software Mirroring (By the AIX O.S.) & a Stripe Size of 4K exist

Firing Off the Interest Calculation Runs from 2 APP Servers Giving an Overall Total Processing of Number of 3000 A/cs per minute ( 1500 from each )

Qs. Which of the 2 i.e. Hardware Mirroring OR 64 K Striping , do you think is the Cause of the Increase in performance as we put BOTH features Together at the SAME Time OR do Both Contribute Equally ?

Thanks to Vivek for everything

-----Original Message-----

	From:	VIVEK_SHARMA 
	Sent:	Thursday, December 07, 2000 6:35 PM
	Subject:	RE: SOS Alert 



	ACTION Identified the 2 indexes having the waits of "db file
sequential read"
	Created 2 NEW Tablespaces Each containing 1 Index 
	Also Specified parameter log_small_entry_max_size = 0
	NOTE - ORA 7.3.4.5

	RESULT Performance thruput increased to 1500 A/cs per minute from
1000 A/cs per minute
	Allow me to begin :-
	There were 2 routes in between the APP & DB Servers .
	One had a Bandwidth of 10 MBPS while Another had a Bandwidth of 100
MBPS
	The 10 MBPS route was being used all this while . On Enabling the
100 MBPS route
	(by Specifying the I.P. Address Instead of Hostname in the
tnsnames.ora & listener.ora)
	the performance has jumped to 1100 records per minute (from 500
records per minute)
	i.e. Almost Doubled .
	100 MBPS is the MAX Possible Bandwidth Possible as per the SA 

	Qs. Your Views on this please

	Additional responses Follow your Views BELOW :-


-----Original Message-----
From: Vivek [SMTP:Vivek_at_1800FLOWERS.com] Sent: Tuesday, November 28, 2000 6:30 PM To: 'VIVEK_SHARMA' Cc: Arun Chakrapani Subject: RE: SOS Alert Vivek: Sorry for not replying to you yesterday itself. A Busy day. Took a look at you report.txt. They were having 2 different profiles. Since You had mentioned that it also stalled in Test DB I concentrated more on the test report.txt. One thing which stood out on the other one (live) on opening you report.txt is the SQL _AREA GET_HIT_RATIO is very poor. I don't know whether you have already pinned your SYS objects and other objects that are executed often in shared pool. Please use DBMS_SHARED_POOL.keep to pin package,procedure,function,sequence,cursors, triggers that are used
often.

        Ans OK will do so

        So now I will concentrate on the Test DB.

  1. Even though the SQL_AREA GET_HIT_RATIO is higer(82%) when compared to live this is not good enough. It should be close to 100%(1 some where like .98 alteast). Please pin the SYS objects to start with.
	OK
	Allow me to say that the shared_pool_size has by experience been
kept at bare minimum required
	for we did experience performance poblems with a shred_pool_size of
300 MB 
	( Though on Another machine on SUN OS )
	It is recommended to keep shared_pool_size at rock bottom just above
the Limit 
	where ORA-4031 out of shared pool segments occurs


	2. On seeing you system wide wait events the following stands out.

	    1.log file sync                    2863        83922      29.31
	    2.write complete waits             905         71401      78.9
	    3.free buffer waits                60          4718        78.63

	    The first event log file sync event mostly comes when there is a
disk
	i/o bottleneck for the online redo logs.This happens when the
processes have
	to wait for the LGWR to sync a particular REDO log. The p1 parameter
in a
	Log sync in the corresponding LOg Buffer. 


	The Write complete waits comes
	when the user process is waiting for the LGWR to complete the
writing of the
	redo information.  So Please take a look at the placing of the
online redo
	log. In which disk have you placed this. Also if it has been place
in its
	own file system it doesn't mean that it is not going to a busy disk.
Since
	you have 0+1, The slices may belong to a HOT disk. What you need to
do is
	ask your SA to monitor the disk I/O usage and see whats happening to
the
	disk containing the redo log file. Also you can use iostat -xPnce 5
5 (I
	think its available in AIX). the output will look something like

	us sy wt id
	 23  7 49 21
	                              extended device statistics ---- errors
---
	  r/s  w/s   kr/s   kw/s wait actv wsvc_t asvc_t  %w  %b s/w h/w trn
tot
	device
	  0.0  0.0    0.0    0.0  0.0  0.0    0.0   13.4   0   0   0   0   0
0
	c1t10d0s0
	  0.0  0.0    0.0    0.0  0.0  0.0    0.0    2.4   0   0   0   0   0
0
	c1t10d0s1
	  0.0  0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0   0   0   0
0
	c1t10d0s2
	  0.0  1.3    0.3   10.1  0.0  0.1    4.6  105.8   0   1   0   0   0
0
	c1t10d0s3
	Watch out for %b column. If its somewhere around 60 then you may be
	experiencing contention on those slices. Ask you SA by giving
him/her the
	device name and they will be able to give you what the FS is. 

	NOTE - 4 Datafiles Containing a Particular Table & it's
Corresponding indexes (to Which INSERTS 
	happen ) were Moved out of the RAID onto a Local Disk whereafter
performance Jumped from 
	850 per minute to 1100  per minute

	Ans - OK . Will Issue the Command 

	Also I see 
	Free Buffer waits. This is caused because there are no free buffers
when
	they are requested - pointing directly to the inefficiency of the
DBWR.
	Again the DBWR may be slow because you have a I/O bottleneck for the
DB
	files and indirectly because of the Write complete waits.

	Qs. Would you recommend Setting Multiple db_writer processes 
	even though async_io is set to true ?


		" Thus a Volume Group Contains 8 Disks with 4 Disks 
		> Stripe Size = 4K "


	[Vivek]  Please confirm me that the Stripe size is 4K. Usually you
will have
	a stripe size of 32K,64K,128K,256K .... If you are having a stripe
size of
	4K and your db_block_size as 8K, It is going to take 2 reads to
satisfy one
	request for a db_file_sequential_read (Usually requests 1 Oracle
block)
	[Vivek]  . This doesn't sound good if thats true. 

	NOTE - The "test" Database is a 4K DB_BLOCK_SIZE while the Live
Database is 
	an 8K DB_BLOCK_SIZE , But the SAME performance Limits were Observed
on Both

        So if possible could you please do the following.

  1. Please shutdown the Test db and start fresh.
  2. Run the same process again and also run the iostat -xPnce 60 10000 for the duration of the run (output this to a file)
  3. Run vmstat and see whats the CPU usage for USER and SYSTEM
  4. When the 500 A/c per sec reaches - Please run
	set lines 132
	select sid, substr(event,1,40),p1,p2,p3 from v$session_wait
	where event in ('db file scattered read','db file sequential
read','latch
	free','buffer busy waits','log file sync','db file scattered
	read','enqueue'); 

	and give me the output.  

	OK - Will Action & revert to you 

	5. IF may waits are showing as "latch free" in the event column of
	v$session_wait, Please query v$latch for
	latch#,name,level,GETS,MISSES,SLEEPS IMMEDIATE_GETS
	,WAITS_HOLDING_LATCH, SPIN_GETS, SLEEP1. 

	Ans OK 

	6. Preserve the output for v$latch_children.

	Ans OK

	Qs. Are their any IBM OS Specific Parameters which are considered
benefitial for performance ?

        I will take a look at both the report.txt in more detail today and get back

        to you.

	Thanks Again so much 
	Where are you Located  / Phone No ? if you please
	We are Currently Located in Bangalore & Addressing The Problem at
Mumbai over a WAN
	Phone 91 80 6588668

	HTH

	Vivek

	> -----Original Message-----
	> From:	VIVEK_SHARMA [SMTP:VIVEK_SHARMA_at_infy.com]
	> Sent:	Monday, November 27, 2000 11:16 AM
	> To:	'Vivek'
	> Cc:	Arun Chakrapani
	> Subject:	RE: SOS Alert 
	> 
	> THANKS so much for the association in this issue 
	> 
	> Attached 2 report.txt each taken for 1 Hour approx . Is it
Sufficient ?
	> 
	> Attached  report.txt of  Problem on the "Live" Database 
	> 
	>  <<report.txt_Live>> 
	> NOTE - A "test" Database  Created on the DB Server Itself  in the
Same
	> Partitions as the "Live" Database
	> Runs Done on this "test" Database Also failing to go beyond 500
A/cs per
	> minute
	> 
	> 
	>  <<report.txt_TEST>> 
	> 
	> NOTE - Interest Runs were Done on the "Test" Database During
Down-Time
	> Periods of the "Live" Database
	> 
	> You Wrote :-
	> 	Since there is some write complete waits Please take a look
at the
	> place the on line redo logs are and what is the read, write on
these
	> disks.
	> 
	> Ans Online Redo logs ALSO present on the RAID 0+1 Disks & are
Multiplexed 
	> Size of Online Redo logfile on the "Live" Database = 30 MB
	> 
	> NOTE - On the test Database we increased the Size of the Online
Redo
	> logfile
	> to 100MB but with NO benefit
	> 
	> You wrote :-
	> Please give me the DB Version as well
	> 
	> Ans Database Oracle  version = 7.3.4.5.0
	> 
	> You wrote :-
	> 	I see some waits on More data from client. 
	> Qs. What is to be done about the Same ?
	> 
	> NOTE - Will Run the 2 SQL Scripts Suggested by you & revert back
	> 
	> Thanks Again
	> 
	> 
	> > -----Original Message-----
	> > From:	Vivek [SMTP:Vivek_at_1800FLOWERS.com]
	> > Sent:	Monday, November 27, 2000 7:44 PM
	> > To:	'VIVEK_SHARMA_at_infy.com'
	> > 
	> > Cc:	Arun Chakrapani
	> > Subject:	SOS Alert 
	> > 
	> > Hi Vivek:
	> > 
	> > Will it be possible to send the whole report.txt to me. Since
you have
	> not
	> > given for how long this was taken (time from utlbstat and
utlestat) it
	> is
	> > more difficult to say anything.  Based on the report.txt snippet
you
	> have
	> > given there seems to me there are some issues with the enqueues
and
	> latch
	> > free waits. Please run the following SQL as SYS so bet' 2
different
	> times
	> > (
	> > say 1/2 apart) and send me both the values(It will be great if
you could
	> > run
	> > this when the batch processing is running). 
	> > 
	> > select KSQSTTYP,KSQSTGET,KSQSTWAT from x$ksqst where KSQSTGET>0
and
	> > KSQSTWAT
	> > >0;
	> > 
	> > The delta bet' the 2 results will give you information on what
is the
	> > enqueue that we see more waits on. Also Please run this sql
given below
	> in
	> > a
	> > cron every minute or so and output this to a file
	> > 
	> > SELECT p1 "File", p2 "Block", p3 "Reason"  FROM v$session_wait
WHERE
	> event
	> > like  'buffer busy waits'  ;
	> > 
	> > This will give you and idea about the buffer busy waits. Since
there is
	> > some
	> > write complete waits Please take a look at the place the on line
redo
	> logs
	> > are and what is the read, write on these disks. Also Please give
me
	> > infomation on the relog file size. Please give me the DB Version
as
	> well.
	> > I
	> > see some waits on More data from client. Again since I don't
know for
	> how
	> > long the stats were run can't say whether they are significant
or not.
	> > 
	> > HTH
	> > 
	> > Vivek
	> > 
	> > 
	> > 
	> > From: VIVEK_SHARMA <VIVEK_SHARMA_at_infy.com>
	> >  Date: Mon, 27 Nov 2000 12:11:59 +0530
	> >  Subject: SOS Alert 
	> > 
	> > CASE In a Bank , Interest Calculation Batch Processing Unable to
go
	> beyond
	> > 500 A/cs per minute 
	> > 
	> > CAUSE of the Problem is UNKNOWN 
	> > 
	> > ORACLE 7.3.4.5 on AIX 4.3.3
	> > DB Server - IBM S80 Model - 12 CPUs , 3 GB RAM 
	> > APP Server 1 - IBM S80 Model - 6 CPUs , 2 GB RAM
	> > APP Servers 2 & 3 - IBM Thin Nodes model - 4 CPUs , 1 GB RAM
	> > 
	> > Storage Box :-
	> > ===========
	> > SS Class Storage 
	> > RAID 0+1 - (First Striped & then Mirrored) 
	> > NOTE - 2 Storage Boxes Exist , one being the Mirror of the Other
	> > Striping exists across a set 4 Disks (in one Box) with another 4
being
	> > it's
	> > mirror 
	> > (in another Box). 
	> > Thus a Volume Group Contains 8 Disks with 4 Disks 
	> > Stripe Size = 4K
	> >  
	> > NOTE - Runs Tried from BOTH the APP Servers 1 OR 2 ,But with the
SAME
	> MAX
	> > of
	> > 500 A/cs 
	> > processed per minute
	> > 
	> > CPU Utilizations on BOTH APP & DB Server = 40 %
	> > wio% on BOTH APP & DB Servers = 35 % 
	> > No paging happening on Both APP & DB Servers
	> > 
	> > - Oracle Contention Values Seem Small to us as shown Below or so
they
	> seem
	> > to us :-
	> > 
	> > SVRMGR> Rem System wide wait events for non-background processes
(PMON, 
	> > SVRMGR> Rem SMON, etc).  Times are in hundreths of seconds.
Each one of
	> 
	> > SVRMGR> Rem these is a context switch which costs CPU time.  By
looking
	> at
	> > SVRMGR> Rem the Total Time you can often determine what is the
	> bottleneck 
	> > SVRMGR> Rem that processes are waiting for.  This shows the
total time
	> > spent
	> > SVRMGR> Rem waiting for a specific event and the average time
per wait
	> on 
	> > SVRMGR> Rem that event.
	> > SVRMGR> select 	n1.event "Event Name", 
	> >      2>        	n1.event_count "Count",
	> >      3> 	n1.time_waited "Total Time",
	> >      4> 	round(n1.time_waited/n1.event_count, 2) "Avg Time"
	> >      5>    from stats$event n1
	> >      6>    where n1.event_count > 0
	> >      7>    order by n1.time_waited desc;
	> > Event Name                       Count         Total Time    Avg
Time
	> 
	> > -------------------------------- ------------- -------------
	> -------------
	> > SQL*Net message from client           10856276      31977110
	> 2.95
	> > enqueue                                   1295        374980
	> 289.56
	> > db file sequential read                3614044        303848
	> .08
	> > write complete waits                      5812        295937
	> 50.92
	> > latch free                             5045060        242170
	> .05
	> > SQL*Net more data from client            13939        165275
	> 11.86
	> > log file sync                            12794        146409
	> 11.44
	> > buffer busy waits                       100443         92477
	> .92
	> > 
	> > 
	> > 
	> > - ALL Literal SQLs were Converted to using Bind variables 
	> > - ALL Tables Running on Indexes Without Any FULL Scans happening
.
	> > 
	> > - All the Literal SQLs (Dynamic) Converted to using Bind
variables
	> (Static
	> > Queries)
	> > 
	> > - event="10181 trace name context forever, level 1000" 
	> > NOTE - Set nevertheless , None of the SQLs taking Excessive time
to
	> parse
	> > though 
	> > 
	> > - NO statistics are Analyzed 
	> > - 7 tables involved in the interest Calc.
	> > inserts to 2 Tables 
	> > selects , updates in 5 tables
	> > 
	> > Qs. Are there Any BASIC O.S./Hardware Features to Enhance
Performance on
	> > IBM
	> > AIX Systems ?
	> > 
	> > Qs. Is Any Other portion of the report.txt required for perusal
?
	> > 
	> > Please Revert to me for any further info / Clarifications ?
	> > 
	> > 
	> > 
	> >  << File: report.txt_Live >>  << File: report.txt_TEST >> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: VIVEK_SHARMA
  INET: VIVEK_SHARMA_at_infy.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

------_=_NextPart_001_01C06AC2.46995EF0
Content-Type: text/html;
	charset="iso-8859-1"

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 5.5.2653.12">
<TITLE>RE: SOS Alert </TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=2>4K striping is a major Major MAJOR mistake.</FONT>
</P>

<P><FONT SIZE=2>Doing it in software makes it at least 3x as</FONT>
<BR><FONT SIZE=2>bad. </FONT>
</P>

<P><FONT SIZE=2>Either fix alone would have provided at least a </FONT>
<BR><FONT SIZE=2>2-4x improvement. </FONT>
</P>

<P><FONT SIZE=2>Given a choice, I'd fix the stripe size first, then</FONT>
<BR><FONT SIZE=2>convert the mirroring to hardware. </FONT>
</P>

<P><FONT SIZE=2>hth</FONT>
</P>

<P><FONT SIZE=2>imho</FONT>
</P>

<P><FONT SIZE=2>ymmv</FONT>
</P>

<P><FONT SIZE=2>afaik, </FONT>
</P>

<P><FONT SIZE=2>etc. </FONT>
</P>

<P><FONT SIZE=2>- Ross Mohan</FONT>
</P>

<P><FONT SIZE=2>-----Original Message-----</FONT>
<BR><FONT SIZE=2>From: VIVEK_SHARMA [<A HREF="mailto:VIVEK_SHARMA_at_infy.com">mailto:VIVEK_SHARMA_at_infy.com</A>]</FONT>
<BR><FONT SIZE=2>Sent: Wednesday, December 20, 2000 11:13 AM</FONT>
<BR><FONT SIZE=2>To: Multiple recipients of list ORACLE-L</FONT>
<BR><FONT SIZE=2>Subject: RE: SOS Alert </FONT>
</P>
<BR>

<P><FONT SIZE=2>CASE In a Bank , Interest Calculation Batch Processing Unable to go beyond</FONT>
<BR><FONT SIZE=2>500 A/cs per minute </FONT>
</P>

<P><FONT SIZE=2>ACTION Moved the Database to Another IBM Machine ( 4 CPU , 4 GB RAM ) with</FONT>
<BR><FONT SIZE=2>HARDWARE Mirroring &amp; 64 K Stripe Size</FONT>
</P>

<P><FONT SIZE=2>NOTE - On the Under-performing DB Server S80 Model of IBM) there exists</FONT>
<BR><FONT SIZE=2>Software Mirroring (By the AIX O.S.) &amp; a Stripe Size of 4K exist </FONT>
</P>

<P><FONT SIZE=2>Firing Off the Interest Calculation Runs from 2 APP Servers Giving an</FONT>
<BR><FONT SIZE=2>Overall Total&nbsp; Processing of Number of 3000 A/cs per minute ( 1500 from each</FONT>
<BR><FONT SIZE=2>)</FONT>
</P>

<P><FONT SIZE=2>Qs. Which of the 2 i.e. Hardware Mirroring OR 64 K Striping , do you think</FONT>
<BR><FONT SIZE=2>is the Cause of the Increase in performance as we put BOTH features Together</FONT>
<BR><FONT SIZE=2>at the SAME Time OR do Both Contribute Equally ?</FONT>
</P>

<P><FONT SIZE=2>Thanks to Vivek for everything</FONT>
</P>
<BR>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>-----Original Message-----</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>From:&nbsp;&nbsp; VIVEK_SHARMA </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Sent:&nbsp;&nbsp; Thursday, December 07, 2000 6:35 PM</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Subject:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RE: SOS Alert </FONT>
</P>
<BR>
<BR>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>ACTION Identified the 2 indexes having the waits of &quot;db file</FONT>
<BR><FONT SIZE=2>sequential read&quot;</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Created 2 NEW Tablespaces Each containing 1 Index </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Also Specified parameter log_small_entry_max_size = 0</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>NOTE - ORA 7.3.4.5</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>RESULT Performance thruput increased to 1500 A/cs per minute from</FONT>
<BR><FONT SIZE=2>1000 A/cs per minute</FONT>
</P>
<BR>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>==============================================</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Allow me to begin :-</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>There were 2 routes in between the APP &amp; DB Servers .</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>One had a Bandwidth of 10 MBPS while Another had a Bandwidth of 100</FONT>
<BR><FONT SIZE=2>MBPS</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>The 10 MBPS route was being used all this while . On Enabling the</FONT>
<BR><FONT SIZE=2>100 MBPS route</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>(by Specifying the I.P. Address Instead of Hostname in the</FONT>
<BR><FONT SIZE=2>tnsnames.ora &amp; listener.ora)</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>the performance has jumped to 1100 records per minute (from 500</FONT>
<BR><FONT SIZE=2>records per minute)</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>i.e. Almost Doubled .</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>100 MBPS is the MAX Possible Bandwidth Possible as per the SA </FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Qs. Your Views on this please</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Additional responses Follow your Views BELOW :-</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>-----Original Message-----</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>From:&nbsp;&nbsp; Vivek [SMTP:Vivek_at_1800FLOWERS.com]</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Sent:&nbsp;&nbsp; Tuesday, November 28, 2000 6:30 PM</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>To:&nbsp;&nbsp;&nbsp;&nbsp; 'VIVEK_SHARMA'</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Cc:&nbsp;&nbsp;&nbsp;&nbsp; Arun Chakrapani</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Subject:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RE: SOS Alert </FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Vivek:</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&nbsp; Sorry for not replying to you yesterday itself. A Busy day. Took a</FONT>
<BR><FONT SIZE=2>look at</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>you report.txt. They were having 2 different profiles. Since You had</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>mentioned that it also stalled in&nbsp; Test DB I concentrated more on</FONT>
<BR><FONT SIZE=2>the test</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>report.txt. One thing which stood out on the other one (live) on</FONT>
<BR><FONT SIZE=2>opening you</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>report.txt is the SQL _AREA GET_HIT_RATIO is very poor. I don't know</FONT>
<BR><FONT SIZE=2>whether</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>you have already pinned your SYS objects and other objects that are</FONT>
<BR><FONT SIZE=2>executed</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>often in shared pool. Please use DBMS_SHARED_POOL.keep to pin</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>package,procedure,function,sequence,cursors, triggers that are used</FONT>
<BR><FONT SIZE=2>often.</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Ans OK will do so </FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>So now I will concentrate on the Test DB.</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>1. Even though the SQL_AREA GET_HIT_RATIO is higer(82%) when</FONT>
<BR><FONT SIZE=2>compared to</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>live this is not good enough. It should be close to 100%(1 some</FONT>
<BR><FONT SIZE=2>where like</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>.98 alteast). Please pin the SYS objects to start with. </FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>OK</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Allow me to say that the shared_pool_size has by experience been</FONT>
<BR><FONT SIZE=2>kept at bare minimum required</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>for we did experience performance poblems with a shred_pool_size of</FONT>
<BR><FONT SIZE=2>300 MB </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>( Though on Another machine on SUN OS )</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>It is recommended to keep shared_pool_size at rock bottom just above</FONT>
<BR><FONT SIZE=2>the Limit </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>where ORA-4031 out of shared pool segments occurs</FONT>
</P>
<BR>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>2. On seeing you system wide wait events the following stands out.</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&nbsp;&nbsp;&nbsp; 1.log file sync&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2863&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 83922&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 29.31</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&nbsp;&nbsp;&nbsp; 2.write complete waits&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 905&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 71401&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 78.9</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&nbsp;&nbsp;&nbsp; 3.free buffer waits&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4718&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 78.63</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&nbsp;&nbsp;&nbsp; The first event log file sync event mostly comes when there is a</FONT>
<BR><FONT SIZE=2>disk</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>i/o bottleneck for the online redo logs.This happens when the</FONT>
<BR><FONT SIZE=2>processes have</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>to wait for the LGWR to sync a particular REDO log. The p1 parameter</FONT>
<BR><FONT SIZE=2>in a</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Log sync in the corresponding LOg Buffer. </FONT>
</P>
<BR>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>The Write complete waits comes</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>when the user process is waiting for the LGWR to complete the</FONT>
<BR><FONT SIZE=2>writing of the</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>redo information.&nbsp; So Please take a look at the placing of the</FONT>
<BR><FONT SIZE=2>online redo</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>log. In which disk have you placed this. Also if it has been place</FONT>
<BR><FONT SIZE=2>in its</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>own file system it doesn't mean that it is not going to a busy disk.</FONT>
<BR><FONT SIZE=2>Since</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>you have 0+1, The slices may belong to a HOT disk. What you need to</FONT>
<BR><FONT SIZE=2>do is</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>ask your SA to monitor the disk I/O usage and see whats happening to</FONT>
<BR><FONT SIZE=2>the</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>disk containing the redo log file. Also you can use iostat -xPnce 5</FONT>
<BR><FONT SIZE=2>5 (I</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>think its available in AIX). the output will look something like</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>us sy wt id</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT SIZE=2> 23&nbsp; 7 49 21</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; extended device statistics ---- errors</FONT>
<BR><FONT SIZE=2>---</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&nbsp; r/s&nbsp; w/s&nbsp;&nbsp; kr/s&nbsp;&nbsp; kw/s wait actv wsvc_t asvc_t&nbsp; %w&nbsp; %b s/w h/w trn</FONT>
<BR><FONT SIZE=2>tot</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>device</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&nbsp; 0.0&nbsp; 0.0&nbsp;&nbsp;&nbsp; 0.0&nbsp;&nbsp;&nbsp; 0.0&nbsp; 0.0&nbsp; 0.0&nbsp;&nbsp;&nbsp; 0.0&nbsp;&nbsp; 13.4&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0</FONT>
<BR><FONT SIZE=2>0</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>c1t10d0s0</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&nbsp; 0.0&nbsp; 0.0&nbsp;&nbsp;&nbsp; 0.0&nbsp;&nbsp;&nbsp; 0.0&nbsp; 0.0&nbsp; 0.0&nbsp;&nbsp;&nbsp; 0.0&nbsp;&nbsp;&nbsp; 2.4&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0</FONT>
<BR><FONT SIZE=2>0</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>c1t10d0s1</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&nbsp; 0.0&nbsp; 0.0&nbsp;&nbsp;&nbsp; 0.0&nbsp;&nbsp;&nbsp; 0.0&nbsp; 0.0&nbsp; 0.0&nbsp;&nbsp;&nbsp; 0.0&nbsp;&nbsp;&nbsp; 0.0&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0</FONT>
<BR><FONT SIZE=2>0</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>c1t10d0s2</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&nbsp; 0.0&nbsp; 1.3&nbsp;&nbsp;&nbsp; 0.3&nbsp;&nbsp; 10.1&nbsp; 0.0&nbsp; 0.1&nbsp;&nbsp;&nbsp; 4.6&nbsp; 105.8&nbsp;&nbsp; 0&nbsp;&nbsp; 1&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0</FONT>
<BR><FONT SIZE=2>0</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>c1t10d0s3</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Watch out for %b column. If its somewhere around 60 then you may be</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>experiencing contention on those slices. Ask you SA by giving</FONT>
<BR><FONT SIZE=2>him/her the</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>device name and they will be able to give you what the FS is. </FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>NOTE - 4 Datafiles Containing a Particular Table &amp; it's</FONT>
<BR><FONT SIZE=2>Corresponding indexes (to Which INSERTS </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>happen ) were Moved out of the RAID onto a Local Disk whereafter</FONT>
<BR><FONT SIZE=2>performance Jumped from </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>850 per minute to 1100&nbsp; per minute</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Ans - OK . Will Issue the Command </FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Also I see </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Free Buffer waits. This is caused because there are no free buffers</FONT>
<BR><FONT SIZE=2>when</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>they are requested - pointing directly to the inefficiency of the</FONT>
<BR><FONT SIZE=2>DBWR.</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Again the DBWR may be slow because you have a I/O bottleneck for the</FONT>
<BR><FONT SIZE=2>DB</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>files and indirectly because of the Write complete waits.</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Qs. Would you recommend Setting Multiple db_writer processes </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>even though async_io is set to true ?</FONT>
</P>
<BR>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&quot; Thus a Volume Group Contains 8 Disks with 4 Disks </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Stripe Size = 4K &quot;</FONT>
</P>
<BR>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>[Vivek]&nbsp; Please confirm me that the Stripe size is 4K. Usually you</FONT>
<BR><FONT SIZE=2>will have</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>a stripe size of 32K,64K,128K,256K .... If you are having a stripe</FONT>
<BR><FONT SIZE=2>size of</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>4K and your db_block_size as 8K, It is going to take 2 reads to</FONT>
<BR><FONT SIZE=2>satisfy one</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>request for a db_file_sequential_read (Usually requests 1 Oracle</FONT>
<BR><FONT SIZE=2>block)</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>[Vivek]&nbsp; . This doesn't sound good if thats true. </FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>NOTE - The &quot;test&quot; Database is a 4K DB_BLOCK_SIZE while the Live</FONT>
<BR><FONT SIZE=2>Database is </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>an 8K DB_BLOCK_SIZE , But the SAME performance Limits were Observed</FONT>
<BR><FONT SIZE=2>on Both</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>So if possible could you please do the following.</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>1. Please shutdown the Test db and start fresh.</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>2. Run the same process again and also run the iostat -xPnce 60</FONT>
<BR><FONT SIZE=2>10000 for</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>the duration of the run (output this to a file)</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>3. Run vmstat and see whats the CPU usage for USER and SYSTEM</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>4. When the 500 A/c per sec reaches - Please run</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>set lines 132</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>select sid, substr(event,1,40),p1,p2,p3 from v$session_wait</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>where event in ('db file scattered read','db file sequential</FONT>
<BR><FONT SIZE=2>read','latch</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>free','buffer busy waits','log file sync','db file scattered</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>read','enqueue'); </FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>and give me the output.&nbsp; </FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>OK - Will Action &amp; revert to you </FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>5. IF may waits are showing as &quot;latch free&quot; in the event column of</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>v$session_wait, Please query v$latch for</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>latch#,name,level,GETS,MISSES,SLEEPS IMMEDIATE_GETS</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>,WAITS_HOLDING_LATCH, SPIN_GETS, SLEEP1. </FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Ans OK </FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>6. Preserve the output for v$latch_children.</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Ans OK</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Qs. Are their any IBM OS Specific Parameters which are considered</FONT>
<BR><FONT SIZE=2>benefitial for performance ?</FONT>
</P>
<BR>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>I will take a look at both the report.txt in more detail today and</FONT>
<BR><FONT SIZE=2>get back</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>to you.</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Thanks Again so much </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Where are you Located&nbsp; / Phone No ? if you please</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>We are Currently Located in Bangalore &amp; Addressing The Problem at</FONT>
<BR><FONT SIZE=2>Mumbai over a WAN</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Phone 91 80 6588668</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>HTH</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>Vivek</FONT>
</P>

<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; -----Original Message-----</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; From: VIVEK_SHARMA [SMTP:VIVEK_SHARMA_at_infy.com]</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Sent: Monday, November 27, 2000 11:16 AM</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; To:&nbsp;&nbsp; 'Vivek'</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Cc:&nbsp;&nbsp; Arun Chakrapani</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Subject:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RE: SOS Alert </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; THANKS so much for the association in this issue </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Attached 2 report.txt each taken for 1 Hour approx . Is it</FONT>
<BR><FONT SIZE=2>Sufficient ?</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Attached&nbsp; report.txt of&nbsp; Problem on the &quot;Live&quot; Database </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt;&nbsp; &lt;&lt;report.txt_Live&gt;&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; NOTE - A &quot;test&quot; Database&nbsp; Created on the DB Server Itself&nbsp; in the</FONT>
<BR><FONT SIZE=2>Same</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Partitions as the &quot;Live&quot; Database</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Runs Done on this &quot;test&quot; Database Also failing to go beyond 500</FONT>
<BR><FONT SIZE=2>A/cs per</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; minute</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt;&nbsp; &lt;&lt;report.txt_TEST&gt;&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; NOTE - Interest Runs were Done on the &quot;Test&quot; Database During</FONT>
<BR><FONT SIZE=2>Down-Time</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Periods of the &quot;Live&quot; Database</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; You Wrote :-</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Since there is some write complete waits Please take a look</FONT>
<BR><FONT SIZE=2>at the</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; place the on line redo logs are and what is the read, write on</FONT>
<BR><FONT SIZE=2>these</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; disks.</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Ans Online Redo logs ALSO present on the RAID 0+1 Disks &amp; are</FONT>
<BR><FONT SIZE=2>Multiplexed </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Size of Online Redo logfile on the &quot;Live&quot; Database = 30 MB</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; NOTE - On the test Database we increased the Size of the Online</FONT>
<BR><FONT SIZE=2>Redo</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; logfile</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; to 100MB but with NO benefit</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; You wrote :-</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Please give me the DB Version as well</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Ans Database Oracle&nbsp; version = 7.3.4.5.0</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; You wrote :-</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I see some waits on More data from client. </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Qs. What is to be done about the Same ?</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; NOTE - Will Run the 2 SQL Scripts Suggested by you &amp; revert back</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; Thanks Again</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; -----Original Message-----</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; From:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Vivek [SMTP:Vivek_at_1800FLOWERS.com]</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Sent:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Monday, November 27, 2000 7:44 PM</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; To: 'VIVEK_SHARMA_at_infy.com'</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Cc: Arun Chakrapani</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Subject:&nbsp;&nbsp;&nbsp; SOS Alert </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Hi Vivek:</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Will it be possible to send the whole report.txt to me. Since</FONT>
<BR><FONT SIZE=2>you have</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; not</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; given for how long this was taken (time from utlbstat and</FONT>
<BR><FONT SIZE=2>utlestat) it</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; is</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; more difficult to say anything.&nbsp; Based on the report.txt snippet</FONT>
<BR><FONT SIZE=2>you</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; have</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; given there seems to me there are some issues with the enqueues</FONT>
<BR><FONT SIZE=2>and</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; latch</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; free waits. Please run the following SQL as SYS so bet' 2</FONT>
<BR><FONT SIZE=2>different</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; times</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; (</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; say 1/2 apart) and send me both the values(It will be great if</FONT>
<BR><FONT SIZE=2>you could</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; run</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; this when the batch processing is running). </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; select KSQSTTYP,KSQSTGET,KSQSTWAT from x$ksqst where KSQSTGET&gt;0</FONT>
<BR><FONT SIZE=2>and</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; KSQSTWAT</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; &gt;0;</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; The delta bet' the 2 results will give you information on what</FONT>
<BR><FONT SIZE=2>is the</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; enqueue that we see more waits on. Also Please run this sql</FONT>
<BR><FONT SIZE=2>given below</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; in</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; a</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; cron every minute or so and output this to a file</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; SELECT p1 &quot;File&quot;, p2 &quot;Block&quot;, p3 &quot;Reason&quot;&nbsp; FROM v$session_wait</FONT>
<BR><FONT SIZE=2>WHERE</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; event</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; like&nbsp; 'buffer busy waits'&nbsp; ;</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; This will give you and idea about the buffer busy waits. Since</FONT>
<BR><FONT SIZE=2>there is</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; some</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; write complete waits Please take a look at the place the on line</FONT>
<BR><FONT SIZE=2>redo</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; logs</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; are and what is the read, write on these disks. Also Please give</FONT>
<BR><FONT SIZE=2>me</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; infomation on the relog file size. Please give me the DB Version</FONT>
<BR><FONT SIZE=2>as</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; well.</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; I</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; see some waits on More data from client. Again since I don't</FONT>
<BR><FONT SIZE=2>know for</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; how</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; long the stats were run can't say whether they are significant</FONT>
<BR><FONT SIZE=2>or not.</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; HTH</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Vivek</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; From: VIVEK_SHARMA &lt;VIVEK_SHARMA_at_infy.com&gt;</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt;&nbsp; Date: Mon, 27 Nov 2000 12:11:59 +0530</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt;&nbsp; Subject: SOS Alert </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; CASE In a Bank , Interest Calculation Batch Processing Unable to</FONT>
<BR><FONT SIZE=2>go</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; beyond</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; 500 A/cs per minute </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; CAUSE of the Problem is UNKNOWN </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; ORACLE 7.3.4.5 on AIX 4.3.3</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; DB Server - IBM S80 Model - 12 CPUs , 3 GB RAM </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; APP Server 1 - IBM S80 Model - 6 CPUs , 2 GB RAM</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; APP Servers 2 &amp; 3 - IBM Thin Nodes model - 4 CPUs , 1 GB RAM</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Storage Box :-</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; ===========</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; SS Class Storage </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; RAID 0+1 - (First Striped &amp; then Mirrored) </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; NOTE - 2 Storage Boxes Exist , one being the Mirror of the Other</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Striping exists across a set 4 Disks (in one Box) with another 4</FONT>
<BR><FONT SIZE=2>being</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; it's</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; mirror </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; (in another Box). </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Thus a Volume Group Contains 8 Disks with 4 Disks </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Stripe Size = 4K</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt;&nbsp; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; NOTE - Runs Tried from BOTH the APP Servers 1 OR 2 ,But with the</FONT>
<BR><FONT SIZE=2>SAME</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; MAX</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; of</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; 500 A/cs </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; processed per minute</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; CPU Utilizations on BOTH APP &amp; DB Server = 40 %</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; wio% on BOTH APP &amp; DB Servers = 35 % </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; No paging happening on Both APP &amp; DB Servers</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; - Oracle Contention Values Seem Small to us as shown Below or so</FONT>
<BR><FONT SIZE=2>they</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; seem</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; to us :-</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; SVRMGR&gt; Rem System wide wait events for non-background processes</FONT>
<BR><FONT SIZE=2>(PMON, </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; SVRMGR&gt; Rem SMON, etc).&nbsp; Times are in hundreths of seconds.</FONT>
<BR><FONT SIZE=2>Each one of</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; SVRMGR&gt; Rem these is a context switch which costs CPU time.&nbsp; By</FONT>
<BR><FONT SIZE=2>looking</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; at</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; SVRMGR&gt; Rem the Total Time you can often determine what is the</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; bottleneck </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; SVRMGR&gt; Rem that processes are waiting for.&nbsp; This shows the</FONT>
<BR><FONT SIZE=2>total time</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; spent</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; SVRMGR&gt; Rem waiting for a specific event and the average time</FONT>
<BR><FONT SIZE=2>per wait</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; on </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; SVRMGR&gt; Rem that event.</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; SVRMGR&gt; select &nbsp;&nbsp;&nbsp;&nbsp; n1.event &quot;Event Name&quot;, </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; n1.event_count &quot;Count&quot;,</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3&gt; &nbsp;&nbsp;&nbsp; n1.time_waited &quot;Total Time&quot;,</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4&gt; &nbsp;&nbsp;&nbsp; round(n1.time_waited/n1.event_count, 2) &quot;Avg Time&quot;</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5&gt;&nbsp;&nbsp;&nbsp; from stats$event n1</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6&gt;&nbsp;&nbsp;&nbsp; where n1.event_count &gt; 0</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7&gt;&nbsp;&nbsp;&nbsp; order by n1.time_waited desc;</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Event Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Count&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Total Time&nbsp;&nbsp;&nbsp; Avg</FONT>
<BR><FONT SIZE=2>Time</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; -------------------------------- ------------- -------------</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; -------------</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; SQL*Net message from client&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 10856276&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 31977110</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; 2.95</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; enqueue&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1295&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 374980</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; 289.56</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; db file sequential read&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3614044&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 303848</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; .08</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; write complete waits&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5812&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 295937</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; 50.92</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; latch free&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5045060&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 242170</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; .05</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; SQL*Net more data from client&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 13939&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 165275</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; 11.86</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; log file sync&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 12794&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 146409</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; 11.44</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; buffer busy waits&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 100443&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 92477</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; .92</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; - ALL Literal SQLs were Converted to using Bind variables </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; - ALL Tables Running on Indexes Without Any FULL Scans happening</FONT>
<BR><FONT SIZE=2>.</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; - All the Literal SQLs (Dynamic) Converted to using Bind</FONT>
<BR><FONT SIZE=2>variables</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; (Static</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Queries)</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; - event=&quot;10181 trace name context forever, level 1000&quot; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; NOTE - Set nevertheless , None of the SQLs taking Excessive time</FONT>
<BR><FONT SIZE=2>to</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; parse</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; though </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; - NO statistics are Analyzed </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; - 7 tables involved in the interest Calc.</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; inserts to 2 Tables </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; selects , updates in 5 tables</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Qs. Are there Any BASIC O.S./Hardware Features to Enhance</FONT>
<BR><FONT SIZE=2>Performance on</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; IBM</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; AIX Systems ?</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Qs. Is Any Other portion of the report.txt required for perusal</FONT>
<BR><FONT SIZE=2>?</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; Please Revert to me for any further info / Clarifications ?</FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt; </FONT>
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT SIZE=2>&gt; &gt;&nbsp; &lt;&lt; File: report.txt_Live &gt;&gt;&nbsp; &lt;&lt; File: report.txt_TEST &gt;&gt; </FONT>
</P>
Received on Wed Dec 20 2000 - 14:20:20 CST

Original text of this message

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