This article shows an easy way to determine, whether your Oracle Database Performance Tuning task has been successful – or not. In the end, it boils down to “The objective for tuning an Oracle system could be stated as reducing the time that users spend in performing some action on the database, or simply reducing DB time.” as the Online Documentation says. Best proof would be a confirmation from the end users that run time got reduced; second best is a proof of reduced DB time, which is discussed here.
A tuning task should always end with such a proof; your gut feeling or high confidence is not sufficient – or as I like to say: “Don’t believe it, test it!” Image may be NSFW.
Clik here to view.
The demo scenario: With an Oracle Enterprise Edition version 11.2.0.3, an application uses these commands to delete rows:
SQL> create table t as select * from dual;
Table created.
SQL> begin
for i in 1..100000 loop
execute immediate 'delete from t where dummy='||to_char(i);
end loop;
end;
/
I am pretty sure that this code is not optimal, because it uses Literals instead of Bind Variables where it is not appropriate. Before I implement an improved version of the code, I take a Baseline with Automatic Workload Repository (AWR) snapshots. On my demo system, snapshots are taken every ten minutes:
Image may be NSFW.
Clik here to view.The code with Literals was just called – now about 10 minutes later on the Enterprise Manager (EM) Performance page:
Image may be NSFW.
Clik here to view.The AWR report that I take (with EM or with awrrpt.sql) as the baseline shows the following:
Image may be NSFW.
Clik here to view.Notice especially the poor Library Cache hit ration, significant for not using Bind Variables – and the meaningless high Buffer Cache hit ration Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.Starting after 9:00 am, my improved code that uses Bind Variables runs:
SQL> begin
for i in 1..100000 loop
delete from t where dummy=to_char(i);
end loop;
end;
/
The EM Performance page show no peak during the next 10 minutes which represent my comparison period after the tuning task:
Image may be NSFW.
Clik here to view.Let’s look at the AWR report of the second snapshot range after the tuning task:
Image may be NSFW.
Clik here to view.Same wall clock time, same application load, but reduced DB time – I was successful! Could stop here, but some more details:
Image may be NSFW.
Clik here to view.The important (especially for OLTP systems) Library Cache hit ratio is now very good. A very convenient way to compare the two snapshot ranges is the ‘AWR Compare Periods’ feature in EM (or awrddrpt.sql) , which shows us instructively:
Image may be NSFW.
Clik here to view.Although in both periods, CPU was the top event (also in % DB time), it took much less time in total for the 2nd period:
Image may be NSFW.
Clik here to view.The Time Model Statistics confirm a strongly reduced Parse Time for the 2nd period:
Image may be NSFW.
Clik here to view.Especially, we see a striking improvement for the run time of the code with Bind Variables: From about 82 seconds down to about 3 seconds!
Image may be NSFW.
Clik here to view.This kind of proof (less DB time) can be used also in cases where the reduction of run time for a single statement is not so obvious as in my example. If 1000 users had done each 100 deletes, they would have seen not much difference in run time each – but the parse time summarizes and impacts overall performance similar as seen here. If you would like to see the three original AWR reports were I took the screen shots above from, they are here as PDFs
Conclusion: You will – and should – be able to prove the effectiveness of your Oracle Database Tuning task with a reduction of DB time from an AWR report comparison. After all, you don’t want to waste your efforts, do you? Image may be NSFW.
Clik here to view.
Tagged: AWR, Performance Tuning Image may be NSFW.
Clik here to view.
Clik here to view.
Clik here to view.
Clik here to view.
Clik here to view.
Clik here to view.
Clik here to view.
Clik here to view.
