Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Database Server Software > Oracle Database

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-26-2008, 05:49 AM
Alexander Peters
 
Posts: n/a
Default General Question about Performance/Tuning and scheduled Tuning

Hello!
I have a general question about Performance and Tuning. All few weeks
the database works very slow. Selects which have a duration about 5 -
10 sec. need about 40 - 60 sec. And some INSERT Statements need the
some time. Actually, i recompute the statistics of all Tables to solve
the problem, but i think thats not the real solution. Is there a way,
that the server optimize himself? Timed or anything else? We have the
some application on a MS SQL Server, and there isn't this problem. I
think that must be possible with a oracle server too.

A. Peters


Here my procedure, which i use to optimize my database. After this, the
Database is so fast as before.
CREATE OR REPLACE procedure compute_table ( as_tablename in varchar2 )
AS
PRAGMA AUTONOMOUS_TRANSACTION;
ls_sql varchar2 (255);
BEGIN
ls_sql := 'ANALYZE TABLE ' || as_tablename || ' DELETE STATISTICS';
EXECUTE IMMEDIATE ls_sql;
ls_sql := 'ANALYZE TABLE ' || as_tablename || ' ESTIMATE
STATISTICS';
EXECUTE IMMEDIATE ls_sql;
ls_sql := 'ANALYZE TABLE ' || as_tablename || ' COMPUTE STATISTICS';
EXECUTE IMMEDIATE ls_sql;
END;


--

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-26-2008, 05:49 AM
Cristian Cudizio
 
Posts: n/a
Default Re: General Question about Performance/Tuning and scheduled Tuning

On May 18, 9:03 am, "Alexander Peters" <apet...@ap-data.de> wrote:
> Hello!
> I have a general question about Performance and Tuning. All few weeks
> the database works very slow. Selects which have a duration about 5 -
> 10 sec. need about 40 - 60 sec. And some INSERT Statements need the
> some time. Actually, i recompute the statistics of all Tables to solve
> the problem, but i think thats not the real solution. Is there a way,
> that the server optimize himself? Timed or anything else? We have the
> some application on a MS SQL Server, and there isn't this problem. I
> think that must be possible with a oracle server too.
>
> A. Peters
>
> Here my procedure, which i use to optimize my database. After this, the
> Database is so fast as before.
> CREATE OR REPLACE procedure compute_table ( as_tablename in varchar2 )
> AS
> PRAGMA AUTONOMOUS_TRANSACTION;
> ls_sql varchar2 (255);
> BEGIN
> ls_sql := 'ANALYZE TABLE ' || as_tablename || ' DELETE STATISTICS';
> EXECUTE IMMEDIATE ls_sql;
> ls_sql := 'ANALYZE TABLE ' || as_tablename || ' ESTIMATE
> STATISTICS';
> EXECUTE IMMEDIATE ls_sql;
> ls_sql := 'ANALYZE TABLE ' || as_tablename || ' COMPUTE STATISTICS';
> EXECUTE IMMEDIATE ls_sql;
> END;
>
> --


It is better that you specify your database software version (if you
know it)
because it seems to me that from 8.1.5 exist dbms_stats (ml note
237293.1)
so from that version it is better you use that package to collect
statistics.
However you give so little details that's impossible to say if it is
the optimizer or
other the problem

Bye
Cristian Cudizio

http://oracledb.wordpress.com
http://cristiancudizio.wordpress.com

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-26-2008, 05:49 AM
Alexander Peters
 
Posts: n/a
Default Re: General Question about Performance/Tuning and scheduled Tuning

Cristian Cudizio wrote:

> On May 18, 9:03 am, "Alexander Peters" <apet...@ap-data.de> wrote:
> > Hello!
> > I have a general question about Performance and Tuning. All few
> > weeks the database works very slow. Selects which have a duration
> > about 5 - 10 sec. need about 40 - 60 sec. And some INSERT
> > Statements need the some time. Actually, i recompute the statistics
> > of all Tables to solve the problem, but i think thats not the real
> > solution. Is there a way, that the server optimize himself? Timed
> > or anything else? We have the some application on a MS SQL Server,
> > and there isn't this problem. I think that must be possible with a
> > oracle server too.
> >
> > A. Peters
> >
> > Here my procedure, which i use to optimize my database. After this,
> > the Database is so fast as before.
> > CREATE OR REPLACE procedure compute_table ( as_tablename in
> > varchar2 ) AS
> > PRAGMA AUTONOMOUS_TRANSACTION;
> > ls_sql varchar2 (255);
> > BEGIN
> > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' DELETE
> > STATISTICS'; EXECUTE IMMEDIATE ls_sql;
> > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' ESTIMATE
> > STATISTICS';
> > EXECUTE IMMEDIATE ls_sql;
> > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' COMPUTE
> > STATISTICS'; EXECUTE IMMEDIATE ls_sql;
> > END;
> >
> > --

>
> It is better that you specify your database software version (if you
> know it)
> because it seems to me that from 8.1.5 exist dbms_stats (ml note
> 237293.1)
> so from that version it is better you use that package to collect
> statistics.
> However you give so little details that's impossible to say if it is
> the optimizer or
> other the problem
>
> Bye
> Cristian Cudizio
>
> http://oracledb.wordpress.com
> http://cristiancudizio.wordpress.com



Hello Cristian Cudizio,
i use an Oracle 9.20 Server and have the some problem on a Oracle 10.1
and Oracle 10.2 Server. I dont know which details you need to know,
please let me know.

Is there a way to say the Oracle Server: Optimize yourself every
evening or if the Table xY grows about 10%?

bye A. Peters

--

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-26-2008, 05:49 AM
Frank van Bortel
 
Posts: n/a
Default Re: General Question about Performance/Tuning and scheduled Tuning

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Alexander Peters schreef:

>
> Is there a way to say the Oracle Server: Optimize yourself every
> evening or if the Table xY grows about 10%?
>
> bye A. Peters
>


ALTER TABLE MONITOR
- --
Regards,
Frank van Bortel

Top-posting is one way to shut me up...
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (MingW32)

iD8DBQFGTYXfLw8L4IAs830RAjjcAKCFsMRtjs9rVdhIRTVz44 oWGusntACgiM22
q/co1JqjD9UUeofxqmZYZpo=
=xJpC
-----END PGP SIGNATURE-----
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-26-2008, 05:49 AM
Cristian Cudizio
 
Posts: n/a
Default Re: General Question about Performance/Tuning and scheduled Tuning

On May 18, 12:29 pm, "Alexander Peters" <apet...@ap-data.de> wrote:
> Cristian Cudizio wrote:
> > On May 18, 9:03 am, "Alexander Peters" <apet...@ap-data.de> wrote:
> > > Hello!
> > > I have a general question about Performance and Tuning. All few
> > > weeks the database works very slow. Selects which have a duration
> > > about 5 - 10 sec. need about 40 - 60 sec. And some INSERT
> > > Statements need the some time. Actually, i recompute the statistics
> > > of all Tables to solve the problem, but i think thats not the real
> > > solution. Is there a way, that the server optimize himself? Timed
> > > or anything else? We have the some application on a MS SQL Server,
> > > and there isn't this problem. I think that must be possible with a
> > > oracle server too.

>
> > > A. Peters

>
> > > Here my procedure, which i use to optimize my database. After this,
> > > the Database is so fast as before.
> > > CREATE OR REPLACE procedure compute_table ( as_tablename in
> > > varchar2 ) AS
> > > PRAGMA AUTONOMOUS_TRANSACTION;
> > > ls_sql varchar2 (255);
> > > BEGIN
> > > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' DELETE
> > > STATISTICS'; EXECUTE IMMEDIATE ls_sql;
> > > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' ESTIMATE
> > > STATISTICS';
> > > EXECUTE IMMEDIATE ls_sql;
> > > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' COMPUTE
> > > STATISTICS'; EXECUTE IMMEDIATE ls_sql;
> > > END;

>
> > > --

>
> > It is better that you specify your database software version (if you
> > know it)
> > because it seems to me that from 8.1.5 exist dbms_stats (ml note
> > 237293.1)
> > so from that version it is better you use that package to collect
> > statistics.
> > However you give so little details that's impossible to say if it is
> > the optimizer or
> > other the problem

>
> > Bye
> > Cristian Cudizio

>
> >http://oracledb.wordpress.com
> >http://cristiancudizio.wordpress.com

>
> Hello Cristian Cudizio,
> i use an Oracle 9.20 Server and have the some problem on a Oracle 10.1
> and Oracle 10.2 Server. I dont know which details you need to know,
> please let me know.
>
> Is there a way to say the Oracle Server: Optimize yourself every
> evening or if the Table xY grows about 10%?
>
> bye A. Peters
>
> --


10.1 automatically gathers statistics every night (22:00) with package
dbms_stats. If your version is 9.2 then i'm sure you have to use
dbms_stats and not "ANALYZE".
We have our application migrated from 9.2 to 10.1 and then to 10.2.
With 10.2 we have had some problems, with 10.1 no.
10g has a bit of self tuning, you have to use em.
With 9.2 you have to analyze your system by your self.
An approach maybe using STATSPACK. In my opinion if the application
is complex (but if it run on both oracle and mssql may be not) it is
very difficult to hava a self tuning database. A lot of experts of
performance tuning say that for the most part performance problems are
caused by a bad application design.

about
> Is there a way to say the Oracle Server: Optimize yourself every
> evening or if the Table xY grows about 10%?

I think that is not a correct answer. Oracle is optimized from the
beginning, if data growth cause performance problems it is
very probable that application is not scalable and there is no
optimization oracle can do for you.

> i use an Oracle 9.20 Server and have the some problem on a Oracle 10.1
> and Oracle 10.2 Server. I dont know which details you need to know,
> please let me know.


now that we have a version put an example of query, with description
of table, and how much data is involved, execution plans etc.

Bye
Cristian Cudizio

http://oracledb.wordpress.com
http://cristiancudizio.wordpress.com

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-26-2008, 05:49 AM
sybrandb
 
Posts: n/a
Default Re: General Question about Performance/Tuning and scheduled Tuning

On May 18, 12:29 pm, "Alexander Peters" <apet...@ap-data.de> wrote:
> Cristian Cudizio wrote:
> > On May 18, 9:03 am, "Alexander Peters" <apet...@ap-data.de> wrote:
> > > Hello!
> > > I have a general question about Performance and Tuning. All few
> > > weeks the database works very slow. Selects which have a duration
> > > about 5 - 10 sec. need about 40 - 60 sec. And some INSERT
> > > Statements need the some time. Actually, i recompute the statistics
> > > of all Tables to solve the problem, but i think thats not the real
> > > solution. Is there a way, that the server optimize himself? Timed
> > > or anything else? We have the some application on a MS SQL Server,
> > > and there isn't this problem. I think that must be possible with a
> > > oracle server too.

>
> > > A. Peters

>
> > > Here my procedure, which i use to optimize my database. After this,
> > > the Database is so fast as before.
> > > CREATE OR REPLACE procedure compute_table ( as_tablename in
> > > varchar2 ) AS
> > > PRAGMA AUTONOMOUS_TRANSACTION;
> > > ls_sql varchar2 (255);
> > > BEGIN
> > > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' DELETE
> > > STATISTICS'; EXECUTE IMMEDIATE ls_sql;
> > > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' ESTIMATE
> > > STATISTICS';
> > > EXECUTE IMMEDIATE ls_sql;
> > > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' COMPUTE
> > > STATISTICS'; EXECUTE IMMEDIATE ls_sql;
> > > END;

>
> > > --

>
> > It is better that you specify your database software version (if you
> > know it)
> > because it seems to me that from 8.1.5 exist dbms_stats (ml note
> > 237293.1)
> > so from that version it is better you use that package to collect
> > statistics.
> > However you give so little details that's impossible to say if it is
> > the optimizer or
> > other the problem

>
> > Bye
> > Cristian Cudizio

>
> >http://oracledb.wordpress.com
> >http://cristiancudizio.wordpress.com

>
> Hello Cristian Cudizio,
> i use an Oracle 9.20 Server and have the some problem on a Oracle 10.1
> and Oracle 10.2 Server. I dont know which details you need to know,
> please let me know.
>
> Is there a way to say the Oracle Server: Optimize yourself every
> evening or if the Table xY grows about 10%?
>
> bye A. Peters
>
> --- Hide quoted text -
>
> - Show quoted text -


the ANALYZE commands are obsolete since 8.1.5.
You need to use dbms_stats.
dbms_stats has a facility to gather only statistics for 'stale'
tables, these are tables for which more than 10 percent of the data
has changed.
If you run a pl/sql job which just calls
dbms_stats.gather_schema_stats with the gather stale option, you have
completed the objective above.
Further info on dbms_stats on http://tahiti.oracle.com

--
Sybrand Bakker
Senior Oracle DBA


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-26-2008, 05:49 AM
Alexander Peters
 
Posts: n/a
Default Re: General Question about Performance/Tuning and scheduled Tuning

sybrandb wrote:

> On May 18, 12:29 pm, "Alexander Peters" <apet...@ap-data.de> wrote:
> > Cristian Cudizio wrote:
> > > On May 18, 9:03 am, "Alexander Peters" <apet...@ap-data.de> wrote:
> > > > Hello!
> > > > I have a general question about Performance and Tuning. All few
> > > > weeks the database works very slow. Selects which have a
> > > > duration about 5 - 10 sec. need about 40 - 60 sec. And some
> > > > INSERT Statements need the some time. Actually, i recompute the
> > > > statistics of all Tables to solve the problem, but i think
> > > > thats not the real solution. Is there a way, that the server
> > > > optimize himself? Timed or anything else? We have the some
> > > > application on a MS SQL Server, and there isn't this problem. I
> > > > think that must be possible with a oracle server too.

> >
> > > > A. Peters

> >
> > > > Here my procedure, which i use to optimize my database. After
> > > > this, the Database is so fast as before.
> > > > CREATE OR REPLACE procedure compute_table ( as_tablename in
> > > > varchar2 ) AS
> > > > PRAGMA AUTONOMOUS_TRANSACTION;
> > > > ls_sql varchar2 (255);
> > > > BEGIN
> > > > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' DELETE
> > > > STATISTICS'; EXECUTE IMMEDIATE ls_sql;
> > > > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' ESTIMATE
> > > > STATISTICS';
> > > > EXECUTE IMMEDIATE ls_sql;
> > > > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' COMPUTE
> > > > STATISTICS'; EXECUTE IMMEDIATE ls_sql;
> > > > END;

> >
> > > > --

> >
> > > It is better that you specify your database software version (if
> > > you know it)
> > > because it seems to me that from 8.1.5 exist dbms_stats (ml note
> > > 237293.1)
> > > so from that version it is better you use that package to collect
> > > statistics.
> > > However you give so little details that's impossible to say if it
> > > is the optimizer or
> > > other the problem

> >
> > > Bye
> > > Cristian Cudizio

> >
> > > http://oracledb.wordpress.com
> > > http://cristiancudizio.wordpress.com

> >
> > Hello Cristian Cudizio,
> > i use an Oracle 9.20 Server and have the some problem on a Oracle
> > 10.1 and Oracle 10.2 Server. I dont know which details you need to
> > know, please let me know.
> >
> > Is there a way to say the Oracle Server: Optimize yourself every
> > evening or if the Table xY grows about 10%?
> >
> > bye A. Peters
> >
> > --- Hide quoted text -
> >
> > - Show quoted text -

>
> the ANALYZE commands are obsolete since 8.1.5.
> You need to use dbms_stats.
> dbms_stats has a facility to gather only statistics for 'stale'
> tables, these are tables for which more than 10 percent of the data
> has changed.
> If you run a pl/sql job which just calls
> dbms_stats.gather_schema_stats with the gather stale option, you have
> completed the objective above.
> Further info on dbms_stats on http://tahiti.oracle.com


Ok, i tested the following with a positive (faster) effect.

I run in SQLPlus the command (hope that is what the answers mean)

DBMS_STATS.GATHER_SCHEMA_STATS ( ownname => 'TestDB_Slow', method_opt
=> 'FOR ALL COLUMNS SIZE SKEWONLY', cascade => true, options =>
'GATHER');



It takes 15 minutes, but this is ok. I think when i get this now in a
pl/sql job all is ok. Or is someone other mind?


Greetings
A. Peters



--

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 02-26-2008, 05:49 AM
DA Morgan
 
Posts: n/a
Default Re: General Question about Performance/Tuning and scheduled Tuning

Alexander Peters wrote:
> Hello!
> I have a general question about Performance and Tuning. All few weeks
> the database works very slow. Selects which have a duration about 5 -
> 10 sec. need about 40 - 60 sec. And some INSERT Statements need the
> some time. Actually, i recompute the statistics of all Tables to solve
> the problem, but i think thats not the real solution. Is there a way,
> that the server optimize himself? Timed or anything else? We have the
> some application on a MS SQL Server, and there isn't this problem. I
> think that must be possible with a oracle server too.
>
> A. Peters
>
>
> Here my procedure, which i use to optimize my database. After this, the
> Database is so fast as before.
> CREATE OR REPLACE procedure compute_table ( as_tablename in varchar2 )
> AS
> PRAGMA AUTONOMOUS_TRANSACTION;
> ls_sql varchar2 (255);
> BEGIN
> ls_sql := 'ANALYZE TABLE ' || as_tablename || ' DELETE STATISTICS';
> EXECUTE IMMEDIATE ls_sql;
> ls_sql := 'ANALYZE TABLE ' || as_tablename || ' ESTIMATE
> STATISTICS';
> EXECUTE IMMEDIATE ls_sql;
> ls_sql := 'ANALYZE TABLE ' || as_tablename || ' COMPUTE STATISTICS';
> EXECUTE IMMEDIATE ls_sql;
> END;


My instinct from reading this thread is that you are trying to treat
Oracle like SQL Server and don't understand the huge differences in
concept and architecture.

Produce a Stats Pack when the database is working properly.
Produce them every hour (at a minimum) until it is working poorly.
Determine what has changed.
--
Daniel A. Morgan
University of Washington
damorgan@x.washington.edu
(replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 02-26-2008, 05:50 AM
hpuxrac
 
Posts: n/a
Default Re: General Question about Performance/Tuning and scheduled Tuning

On May 18, 11:39 am, DA Morgan <damor...@psoug.org> wrote:
> Alexander Peters wrote:
> > Hello!
> > I have a general question about Performance and Tuning. All few weeks
> > the database works very slow. Selects which have a duration about 5 -
> > 10 sec. need about 40 - 60 sec. And some INSERT Statements need the
> > some time. Actually, i recompute the statistics of all Tables to solve
> > the problem, but i think thats not the real solution. Is there a way,
> > that the server optimize himself? Timed or anything else? We have the
> > some application on a MS SQL Server, and there isn't this problem. I
> > think that must be possible with a oracle server too.

>
> > A. Peters

>
> > Here my procedure, which i use to optimize my database. After this, the
> > Database is so fast as before.
> > CREATE OR REPLACE procedure compute_table ( as_tablename in varchar2 )
> > AS
> > PRAGMA AUTONOMOUS_TRANSACTION;
> > ls_sql varchar2 (255);
> > BEGIN
> > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' DELETE STATISTICS';
> > EXECUTE IMMEDIATE ls_sql;
> > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' ESTIMATE
> > STATISTICS';
> > EXECUTE IMMEDIATE ls_sql;
> > ls_sql := 'ANALYZE TABLE ' || as_tablename || ' COMPUTE STATISTICS';
> > EXECUTE IMMEDIATE ls_sql;
> > END;

>
> My instinct from reading this thread is that you are trying to treat
> Oracle like SQL Server and don't understand the huge differences in
> concept and architecture.
>
> Produce a Stats Pack when the database is working properly.
> Produce them every hour (at a minimum) until it is working poorly.
> Determine what has changed.
> --
> Daniel A. Morgan
> University of Washington
> damor...@x.washington.edu
> (replace x with u to respond)
> Puget Sound Oracle Users Groupwww.psoug.org- Hide quoted text -
>
> - Show quoted text -


Tuning by statpack hourly reports?

Sounds like a reply for the Oracle WTF.

Try reading Cary Millsap's book Optimizing Oracle Performance.

Rinse and repeat.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 02-26-2008, 05:50 AM
DA Morgan
 
Posts: n/a
Default Re: General Question about Performance/Tuning and scheduled Tuning

hpuxrac wrote:
> On May 18, 11:39 am, DA Morgan <damor...@psoug.org> wrote:
>> Alexander Peters wrote:
>>> Hello!
>>> I have a general question about Performance and Tuning. All few weeks
>>> the database works very slow. Selects which have a duration about 5 -
>>> 10 sec. need about 40 - 60 sec. And some INSERT Statements need the
>>> some time. Actually, i recompute the statistics of all Tables to solve
>>> the problem, but i think thats not the real solution. Is there a way,
>>> that the server optimize himself? Timed or anything else? We have the
>>> some application on a MS SQL Server, and there isn't this problem. I
>>> think that must be possible with a oracle server too.
>>> A. Peters
>>> Here my procedure, which i use to optimize my database. After this, the
>>> Database is so fast as before.
>>> CREATE OR REPLACE procedure compute_table ( as_tablename in varchar2 )
>>> AS
>>> PRAGMA AUTONOMOUS_TRANSACTION;
>>> ls_sql varchar2 (255);
>>> BEGIN
>>> ls_sql := 'ANALYZE TABLE ' || as_tablename || ' DELETE STATISTICS';
>>> EXECUTE IMMEDIATE ls_sql;
>>> ls_sql := 'ANALYZE TABLE ' || as_tablename || ' ESTIMATE
>>> STATISTICS';
>>> EXECUTE IMMEDIATE ls_sql;
>>> ls_sql := 'ANALYZE TABLE ' || as_tablename || ' COMPUTE STATISTICS';
>>> EXECUTE IMMEDIATE ls_sql;
>>> END;

>> My instinct from reading this thread is that you are trying to treat
>> Oracle like SQL Server and don't understand the huge differences in
>> concept and architecture.
>>
>> Produce a Stats Pack when the database is working properly.
>> Produce them every hour (at a minimum) until it is working poorly.
>> Determine what has changed.
>> --
>> Daniel A. Morgan
>> University of Washington
>> damor...@x.washington.edu
>> (replace x with u to respond)
>> Puget Sound Oracle Users Groupwww.psoug.org- Hide quoted text -
>>
>> - Show quoted text -

>
> Tuning by statpack hourly reports?


Last time I attended a lecture by Tom Kyte he recommended snapping
every 15-20 minutes (UKOUG). I wouldn't necessarily look at all of
them. But it sure would be nice to have them available when trying
to determine what happened when.

You assumed an intent not in evidence. <g>
--
Daniel A. Morgan
University of Washington
damorgan@x.washington.edu
(replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 02:19 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
UnixAdminTalk.com

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338