The Dutch Prutser's Blog

By: Harald van Breederode

  • Disclaimer

    The views expressed on this blog are my own and do not necessarily reflect the views of Oracle.
  • Subscribe

  • Email Subscription

    Enter your email address to subscribe to this blog and receive notifications of new posts by email.

NEW: Blog Subscriptions!

Posted by Harald van Breederode on November 26, 2009

Yesterday WordPress introduced a really cool new feature: blog subscriptions. It is now easier than ever to follow my blog, just subscribe and you will receive an email whenever I post something new. Cool huh?

You can subscribe by leaving your email address above the SignMeUp! button located in the right side-bar on my blog and pressing the button. There is no need for a wordpress account, but if you happens to have one there is no need to enter your email address after you logged in. You will receive an email to confirm your subscription and once responded you are all set. You can manage your subscriptions on your personal wordpress page that gets created automaticly.
-Harald

Posted in Uncategorized | Leave a Comment »

4th Dutch Planboard Oracle DBA Symposium

Posted by Harald van Breederode on November 19, 2009

Last Tuesday I presented at, and attended, the 4th Dutch Planboard Oracle DBA Symposium and here are my impressions about this wonderful event.

The symposium offered ten presentations, divided into two parallel tracks with each presentation taking approximately one hour. All presentations featured hard-core DBA topics or topics very closely related to DBA work.

The first session I attended was by Yuri van Buren who gave a presentation on performance forecasting. Yuri started by introducing several mathematical forecasting models and continued with examples on how to use them in real world scenario’s. He did a fantastic job on describing the formulas and graphics on the screen to me, remember that I am blind, to help me understand what was going on. Thank you Yuri!

After the coffee break I attended Nienke Gijsen’s session who presented a performance case where the Oracle server created 75000+ child cursor’s for a SQL statement with system generated bind variables. She started by describing the symptoms followed by several pieces of theory on cursor sharing, histograms and bind variable peeking. Nienke continued explaining how these three features work together and in which situations they can cause serious performance problems. Mrs. Planboard concluded her session with live demos proving the above and gave a few tips on how to prevent this performance problem in the future. Well done Nienke!

After lunch I attended a session about securing the Oracle HTTP server presented by Frits Hoogland. He started by explaining TCP/IP basics on connection establishment and demonstrated this using a network sniffer. Frits continued by explaining what a firewall is, what it can do and more important what it can’t do. After this it became clear that one should secure the HTTP server by using a combination of system hardening and implementing security features inside the HTTP server itself. Frits ended his session by concluding that administering and securing a HTTP server is a task that doesn’t fit easily in the DBA skill set and therefore should probably be left to dedicated security experts.

The last session I attended was brought by Ingo Wevers who presented an introduction to Oracle Streams. Ingo begun his talk by positioning Oracle Streams and gave a brief overview of the Streams architecture followed by a sample implementation. After demonstrating the sample implementation he concluded his session by sharing a few tips and tricks.

Finally it was time for me to present my own Oracle Database 11g: Data Guard New Features in Action presentation. The title says it all, I explained the Data Guard new features and demonstrated the most important ones live. I recorded the demo output. Traditionally I overran my allotted time, but I managed to keep it to only 15 minutes ;-)

The day ended with a dinner for all attendees, speakers and supporting staff after which we all went home after yet another successful symposium.

I am looking forward to the 5th edition of the Planboard DBA Symposium to be held on June 8, 2010. If you were not able to attend this time, make sure that you can next time (and learn Dutch if you do not understand this language at present!)
-Harald

Posted in Linux, Oracle | Leave a Comment »

Born Again Classic Metalink

Posted by Harald van Breederode on November 12, 2009

On November 6th MyOracleSupport went into production to replace Metalink. MyOracleSupport is build using Flash technology which isn’t totally accessible to visually impaired people who rely on screen-readers. Although Flash can be made accessible, it remains difficult to use in my opinion and I prefer using an HTML interface where available. When logging in to Metalink, one was offered a choice of using Flash or HTML interfaces and I believe most users preferred the HTML interface as did I.

When logging in to MyOracleSupport no choice is offered, but an HTML interface
is still available and is perfectly accessible to the blind and others who dislike using Flash.
-Harald

Posted in Accessibility, Linux, Oracle | 10 Comments »

Explaining the number of Consistent Gets

Posted by Harald van Breederode on November 6, 2009

Last week I received an email from a friend, who wishes to remain anonymous, with the question why Oracle needed 8 consistent gets to perform a full table scan on a table where all the rows are stored in just one data block. There are several possibilities that can cause this and that is what this posting is all about: Explaining the number of Consistent Gets.

Verifying the claim

Let me first demonstrate that the claim made by my friend is indeed true. I start by setting the STATISTICS_LEVEL parameter to ALL to enable the collection of “Plan Execution Statistics” needed by DBMS_XPLAN to be able to report the number of consistent gets. Next I execute a query to fetch the data followed by a call to DBMS_XPLAN to get and format the execution plan.

SQL> alter session set statistics_level = all;

Session altered.

SQL> select * from foo;

        C1
----------
         1
....
....
        64

64 rows selected.

SQL> select * from table(dbms_xplan.display_cursor( -
> format=>'basic -rows iostats last -rows'));

PLAN_TABLE_OUTPUT
--------------------------------------------------------------------------------
EXPLAINED SQL STATEMENT:
------------------------
select * from foo

Plan hash value: 1245013993

---------------------------------------------------------------------------
| Id  | Operation         | Name | Starts | A-Rows |   A-Time   | Buffers |
---------------------------------------------------------------------------
|   0 | SELECT STATEMENT  |      |      1 |     64 |00:00:00.01 |       8 |
|   1 |  TABLE ACCESS FULL| FOO  |      1 |     64 |00:00:00.01 |       8 |
---------------------------------------------------------------------------

We can clearly see that there are 64 rows in table FOO and that Oracle performed 8 consistent gets to fulfill my request for data. The question is why 8 and not something less assuming all 64 rows are indeed stored in the same data block. Making assumptions is risky, so, lets verify the one data block assumption:

SQL> select blocks from dba_tables where table_name = 'FOO';

    BLOCKS
----------
         1

SQL> select count(distinct dbms_rowid.rowid_block_number(rowid)) from foo;

COUNT(DISTINCTDBMS_ROWID.ROWID_BLOCK_NUMBER(ROWID))
---------------------------------------------------
                                                  1

The above shows that according to the data dictionary all data is indeed stored in one data block, but this information could be stale. Hence the verification on the actual data itself. We now know for sure that all rows are indeed stored in one data block. But there is more to a table than data blocks and maybe that is causing the somewhat high number of consistent gets we saw earlier. I recall from memory that Oracle needs 3 consistent gets to perform a full table scan on an empty table, but before jumping to conclusions I better verify my memory”.

SQL> create table bar as select * from foo where 1=0;

Table created.

SQL> select * from bar;

no rows selected

SQL> select * from table(dbms_xplan.display_cursor( -
> format=>'basic -rows iostats last -rows'));

PLAN_TABLE_OUTPUT
--------------------------------------------------------------------------------
EXPLAINED SQL STATEMENT:
------------------------
select * from bar

Plan hash value: 4224476444

---------------------------------------------------------------------------
| Id  | Operation         | Name | Starts | A-Rows |   A-Time   | Buffers |
---------------------------------------------------------------------------
|   0 | SELECT STATEMENT  |      |      1 |      0 |00:00:00.01 |       3 |
|   1 |  TABLE ACCESS FULL| BAR  |      1 |      0 |00:00:00.01 |       3 |
---------------------------------------------------------------------------

The above confirms that Oracle indeed used three consistent gets to scan the empty table. This leaves us with 5 consistent gets to fetch the 64 rows. The question remains why 5 gets?

The arraysize

When a database client executes a query it starts fetching rows until there is nothing more to fetch. This fetching is performed in batches and the number of rows to fetch in one batch is known as the arraysize or fetchsize depending on the programming environment. The arraysize can be displayed in SQL*Plus using the ’show arraysize’ command as shown below:

SQL> show array
arraysize 15

By default SQL*Plus uses an arraysize of 15, which means that each fetch performed requests a batch of 15 rows. Thus if we are about to fetch 64 rows we need 5 batches. This is the key to the answer why Oracle needed 8 consistent gets to scan the 64 row table, 5 are used to fetch the actual rows and the other 3 were already shown.

We can easily show the effect of arraysize by raising it from 15 to 35 using the ’set arraysize’ command. This will reduce the number of batches from 5 to 2, resulting in a total of 5 consistent gets as demonstrated below:.

SQL> set array 35
SQL> select * from foo;

        C1
----------
         1
....
....
        64

64 rows selected.

SQL> select * from table(dbms_xplan.display_cursor( -
> format=>'basic -rows iostats last -rows'));

PLAN_TABLE_OUTPUT
--------------------------------------------------------------------------------
EXPLAINED SQL STATEMENT:
------------------------
select * from foo

Plan hash value: 1245013993

---------------------------------------------------------------------------
| Id  | Operation         | Name | Starts | A-Rows |   A-Time   | Buffers |
---------------------------------------------------------------------------
|   0 | SELECT STATEMENT  |      |      1 |     64 |00:00:00.01 |       5 |
|   1 |  TABLE ACCESS FULL| FOO  |      1 |     64 |00:00:00.01 |       5 |
---------------------------------------------------------------------------

If we double the arraysize from 35 to 70 all rows will be fetched in just one batch resulting in the lowest possible number of consistent gets (in this example).

SQL> set array 70
SQL> select * from foo;

        C1
----------
         1
....
....
        64

64 rows selected.

SQL> select * from table(dbms_xplan.display_cursor( -
> format=>'basic -rows iostats last -rows'));

PLAN_TABLE_OUTPUT
--------------------------------------------------------------------------------
EXPLAINED SQL STATEMENT:
------------------------
select * from foo

Plan hash value: 1245013993

---------------------------------------------------------------------------
| Id  | Operation         | Name | Starts | A-Rows |   A-Time   | Buffers |
---------------------------------------------------------------------------
|   0 | SELECT STATEMENT  |      |      1 |     64 |00:00:00.01 |       4 |
|   1 |  TABLE ACCESS FULL| FOO  |      1 |     64 |00:00:00.01 |       4 |
---------------------------------------------------------------------------

The arraysize is quite important when it comes to performance tuning and a good discussion about it can be found in Making Friends written by fellow OakTable member Cary Millsap.

The above answered the question from my friend. Before wrapping up there are a few things to watch out for when it comes to explaining the number of consistent gets.

The aggregate trap

The first thing to be aware of is what I call the “aggregate trap”. The arraysize controls the batch size between the Oracle database server and its client, and does not affect SQL operations which are running completely inside the server. The classic example is an SQL aggregation function as shown below:

SQL> select sum(c1) from foo;

   SUM(C1)
----------
      2080

SQL> select * from table(dbms_xplan.display_cursor( -
> format=>'basic -rows iostats last -rows'));

PLAN_TABLE_OUTPUT
--------------------------------------------------------------------------------
EXPLAINED SQL STATEMENT:
------------------------
select sum(c1) from foo

Plan hash value: 1342139204

----------------------------------------------------------------------------
| Id  | Operation          | Name | Starts | A-Rows |   A-Time   | Buffers |
----------------------------------------------------------------------------
|   0 | SELECT STATEMENT   |      |      1 |      1 |00:00:00.01 |       3 |
|   1 |  SORT AGGREGATE    |      |      1 |      1 |00:00:00.01 |       3 |
|   2 |   TABLE ACCESS FULL| FOO  |      1 |     64 |00:00:00.01 |       3 |
----------------------------------------------------------------------------

Although Oracle performed a full table scan on the 64 row table it only needed 3 consistent gets. Because the SUM function ran entirely inside the Oracle server process, which required no interaction with the client, the arraysize has no impact.

The Read Consistency Trap

Another thing to watch out for is known as the Read Consistency Trap, which causes the number of consistent gets to go up whenever the Oracle database server has to apply undo records to a data block to make it read consistent. Each undo record that gets applied increases the number of consistent gets by one as illustrated below:

SQL> show array
arraysize 70
SQL> select * from foo;

        C1
----------
         1
....
....
        64

64 rows selected.

SQL> select * from table(dbms_xplan.display_cursor( -
> format=>'basic -rows iostats last -rows'));

PLAN_TABLE_OUTPUT
--------------------------------------------------------------------------------
EXPLAINED SQL STATEMENT:
------------------------
select * from foo

Plan hash value: 1245013993

---------------------------------------------------------------------------
| Id  | Operation         | Name | Starts | A-Rows |   A-Time   | Buffers |
---------------------------------------------------------------------------
|   0 | SELECT STATEMENT  |      |      1 |     64 |00:00:00.01 |      69 |
|   1 |  TABLE ACCESS FULL| FOO  |      1 |     64 |00:00:00.01 |      69 |
---------------------------------------------------------------------------

Suddenly there are 69 consistent gets instead of 5, as shown previously, using an arraysize of 70. The extra 64 consistent gets are caused by applying 64 undo records to make the data block read consistent. The 64 undo records were created in another session by updating each row in a PL/SQL loop (one row at a time) without issuing a COMMIT.

A little quiz to wrap-up

The final example shows yet another number of consistent gets for retrieving the same 64 rows using an arraysize of 70:

SQL> show array
arraysize 70
SQL> select * from foo;

        C1
----------
         1
....
....
        64

64 rows selected.

SQL> select * from table(dbms_xplan.display_cursor( -
> format=>'basic -rows iostats last -rows'));

PLAN_TABLE_OUTPUT
--------------------------------------------------------------------------------
EXPLAINED SQL STATEMENT:
------------------------
select * from foo

Plan hash value: 1245013993

---------------------------------------------------------------------------
| Id  | Operation         | Name | Starts | A-Rows |   A-Time   | Buffers |
---------------------------------------------------------------------------
|   0 | SELECT STATEMENT  |      |      1 |     64 |00:00:00.01 |      24 |
|   1 |  TABLE ACCESS FULL| FOO  |      1 |     64 |00:00:00.01 |      24 |
---------------------------------------------------------------------------

If you can explain why there are 24 consistent gets instead of just 4 please leave a comment below and I will let you know if you are correct ;-)
-Harald

Posted in Oracle | 17 Comments »

Checkpoint presentation presented at the RAC SIG

Posted by Harald van Breederode on October 30, 2009

Yesterday I presented my What’s the Point of Oracle Checkpoints presentation at the Oracle RAC SIG and although I was a bit nervous it went quite well. However somehow my assigned time slot was shortened without notice and instead of having 90 minutes for my presentation I had to cut short after just 60 minutes. Lucky enough I finished the presentation before this, but there wasn’t enough time to run all my nicely prepared demos….

Yesterday evening I captured the demo output to give you a chance to look at the demos you had to miss yesterday. Apologies for cutting short yesterday.
-Harald

Posted in Oracle | 3 Comments »

Alive and Prutsing

Posted by Harald van Breederode on October 6, 2009

As you might have noticed I haven’t been exactly busy posting new stories on my blog. The obvious reason for this is that I have been way too busy doing other things such as prutsing with Oracle11g Release 2. Two weeks ago I taught my first NF11g class, which includes all major new release 2 new features, and you can imagine that it took some time to prepare myself for this course.

meanwhile I did upload an article (in Dutch) about SQL Plan Managementto my “Papers / Presentations” page that I wrote for the September 2009 issue of the Dutch Optimize magazine.

On my “Upcoming Events” page, which I update every week, you can read that I will present the RAC version of my “What’s the point of Oracle Checkpoints” presentation on October 29 in the web seminar series of the Oracle RAC SIG.

Furthermore I will talk about the new Data Guard features in Oracle11g Release 2 during the 4th Planboard DBA Symposium to be held on November 17.

Finally I will present my SQL Plan Management presentation on November 30 during the UKOUG Annual Conference in Birmingham.

Hopefully things are becoming a bit more quiet in the upcoming weeks so that I can find the time to write something about one or more interesting cool Oracle11g Release 2 new features.
-Harald

Posted in Oracle | Leave a Comment »