Home » RDBMS Server » Performance Tuning » Doubt about Tuning SQL (Oracle 11g R2)
Doubt about Tuning SQL [message #529935] Thu, 03 November 2011 11:32 Go to next message
aucrun
Messages: 114
Registered: February 2011
Senior Member
Hi,

First of all I would like to explain that this is not an problem, but, an question/doubt instead.

I'll keep it the simpliest I can manage.

Imagine I have the following table with several thousand records. (in the sample I only have few)

Table Creation:
  CREATE TABLE "AAA_PERSON" 
   (	"COD_PERSON" NUMBER, 
	"NAME" VARCHAR2(50 BYTE), 
	"ZIPCODE" NUMBER, 
	"PHONE" NUMBER, 
	"NICKNAME" VARCHAR2(20 BYTE), 
	"DATA_NASC" TIMESTAMP (3)
   ) ;

  CREATE INDEX "AAA_NOME_PERSON" ON "AAA_PERSON" ("NAME");



Sample Data:
insert into aaa_person (cod_person, name, zipcode, phone, nickname, data_nasc)
values (6, 'Anne', '1222', 983242442, 'Anne', '1975-02-03');
insert into aaa_person (cod_person, name, zipcode, phone, nickname, data_nasc)
values (7, 'Diane', '4433', 32424232, 'Diane', '1988-08-23');
insert into aaa_person (cod_person, name, zipcode, phone, nickname, data_nasc)
values (8, 'Jonh', '4244', 43534353, 'Jonh', '1980-11-14');
insert into aaa_person (cod_person, name, zipcode, phone, nickname, data_nasc)
values (9, 'Paul', '3312', 131313131, 'Paul', '1971-12-11');
insert into aaa_person (cod_person, name, zipcode, phone, nickname, data_nasc)
values (10, 'Peter', '1222', 433453535, 'Peter', '1965-08-24');
insert into aaa_person (cod_person, name, zipcode, phone, nickname, data_nasc)
values (11, 'Milene', '5555', 534535, 'Milene', '1973-05-15');


In a more complex scenario I could have an extreme complicated query relating this table with some others, but in my simple scenario I only have this.

Imagine I want to run as simple statement just like this:
SELECT name, zipcode, phone FROM AAA_PERSON WHERE name is not null ORDER BY name;


One feature over Oracle (from Oracle 9 I guess) is the possibility to refer to table Index directly in a way to tune the statement performance, just like the sample below):
SELECT /*+ ORDERED INDEX (aaa_person 'AAA_NOME_PERSON') */
name, zipcode, phone FROM AAA_PERSON WHERE name is not null;

(this statement only returns the data without sort, but optimizing by using the Index I've mentioned)

Bu my question is, is there any way to use the Index to Sort the statement results, instead of using the SORT BY clause?

Thanks!

[Updated on: Thu, 03 November 2011 11:33]

Report message to a moderator

Re: Doubt about Tuning SQL [message #529938 is a reply to message #529935] Thu, 03 November 2011 11:41 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
>Bu my question is, is there any way to use the Index to Sort the statement results, instead of using the SORT BY clause?
1) there is no "SORT BY" clause
2) when you desire the result set to be in a specific order, then include ORDER BY clause in SELECT statement
Re: Doubt about Tuning SQL [message #529940 is a reply to message #529935] Thu, 03 November 2011 11:44 Go to previous messageGo to next message
John Watson
Messages: 8929
Registered: January 2010
Location: Global Village
Senior Member
Running your test, the index is used by the first query, no hints needed:
orcl> set autot on exp
orcl> SELECT name, zipcode, phone FROM AAA_PERSON WHERE name is not null ORDER BY name;

NAME                                                  ZIPCODE      PHONE
-------------------------------------------------- ---------- ----------
Anne                                                     1222  983242442
Diane                                                    4433   32424232
Jonh                                                     4244   43534353
Milene                                                   5555     534535
Paul                                                     3312  131313131
Peter                                                    1222  433453535

6 rows selected.


Execution Plan
----------------------------------------------------------
Plan hash value: 3956904908

-----------------------------------------------------------------------------------------------
| Id  | Operation                   | Name            | Rows  | Bytes | Cost (%CPU)| Time     |
-----------------------------------------------------------------------------------------------
|   0 | SELECT STATEMENT            |                 |     6 |   318 |     0   (0)| 00:00:01 |
|   1 |  TABLE ACCESS BY INDEX ROWID| AAA_PERSON      |     6 |   318 |     0   (0)| 00:00:01 |
|*  2 |   INDEX FULL SCAN           | AAA_NOME_PERSON |     6 |       |     0   (0)| 00:00:01 |
-----------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   2 - filter("NAME" IS NOT NULL)

Note
-----
   - dynamic sampling used for this statement (level=2)
   - automatic DOP: Computed Degree of Parallelism is 1 because of parallel threshold

orcl>

What more would you want?
Re: Doubt about Tuning SQL [message #529941 is a reply to message #529938] Thu, 03 November 2011 11:44 Go to previous messageGo to next message
aucrun
Messages: 114
Registered: February 2011
Senior Member
Thanks!

Then I can assume that /*+ORDERED INDEX (<table> <index_name>) */ it's only for tuning purposes, right?

I is only used to use that specific Index primarly within table access?
Re: Doubt about Tuning SQL [message #529943 is a reply to message #529941] Thu, 03 November 2011 11:46 Go to previous messageGo to next message
John Watson
Messages: 8929
Registered: January 2010
Location: Global Village
Senior Member
Your second query, with the attempt at a hint, doesn't use the index:
orcl> SELECT /*+ ORDERED INDEX (aaa_person 'AAA_NOME_PERSON') */
  2  name, zipcode, phone FROM AAA_PERSON WHERE name is not null;

NAME                                                  ZIPCODE      PHONE
-------------------------------------------------- ---------- ----------
Anne                                                     1222  983242442
Diane                                                    4433   32424232
Jonh                                                     4244   43534353
Paul                                                     3312  131313131
Peter                                                    1222  433453535
Milene                                                   5555     534535

6 rows selected.


Execution Plan
----------------------------------------------------------
Plan hash value: 1340481993

----------------------------------------------------------------------------------------
| Id  | Operation                 | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
----------------------------------------------------------------------------------------
|   0 | SELECT STATEMENT          |            |     6 |   318 |     3   (0)| 00:00:01 |
|*  1 |  TABLE ACCESS STORAGE FULL| AAA_PERSON |     6 |   318 |     3   (0)| 00:00:01 |
----------------------------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   1 - storage("NAME" IS NOT NULL)
       filter("NAME" IS NOT NULL)

Note
-----
   - dynamic sampling used for this statement (level=2)
   - automatic DOP: Computed Degree of Parallelism is 1 because of parallel threshold

orcl>
Re: Doubt about Tuning SQL [message #529948 is a reply to message #529943] Thu, 03 November 2011 12:00 Go to previous messageGo to next message
aucrun
Messages: 114
Registered: February 2011
Senior Member
Yes it does!

SQL> r
  1   SELECT /*+ ORDERED INDEX (aaa_person 'AAA_NOME_PERSON') */
  2* name, zipcode, phone FROM AAA_PERSON WHERE name is not null

NAME                                                  ZIPCODE      PHONE
-------------------------------------------------- ---------- ----------
Anne                                                     1222  983242442
Diane                                                    4433   32424232
Dulce                                                    1000
Jonh                                                     4244   43534353
L·cia                                                    2255    8764564
Milene                                                   5555     534535
Paul                                                     3312  131313131
Paulo                                                    1000  656565565
Pedro                                                    2255     464564
Peter                                                    1222  433453535
Rui                                                      1250 6464646465

11 linhas seleccionadas.


Execution Plan
----------------------------------------------------------
Plan hash value: 3956904908

--------------------------------------------------------------------------------

---------------

| Id  | Operation                   | Name            | Rows  | Bytes | Cost (%C

PU)| Time     |

--------------------------------------------------------------------------------

---------------

|   0 | SELECT STATEMENT            |                 |     3 |    45 |     2
(0)| 00:00:01 |

|   1 |  TABLE ACCESS BY INDEX ROWID| AAA_PERSON      |     3 |    45 |     2
(0)| 00:00:01 |

|*  2 |   INDEX FULL SCAN           | AAA_NOME_PERSON |     3 |       |     1
(0)| 00:00:01 |

--------------------------------------------------------------------------------

---------------


Predicate Information (identified by operation id):
---------------------------------------------------

   2 - filter("NAME" IS NOT NULL)


But I guess the main question of mine is really why the existence of this hints?
(ORDERED, FIRST_ROWS, ALL_ROWS,...)
It is only to indicate the Database motor to know what kind of indexing will it use?
Re: Doubt about Tuning SQL [message #529950 is a reply to message #529948] Thu, 03 November 2011 12:07 Go to previous messageGo to next message
John Watson
Messages: 8929
Registered: January 2010
Location: Global Village
Senior Member
What we have proved is that the optimizer may or may not choose to use the index, and that your hint is being ignored.

It is in any case an impossible hint: ORDERED is meaningless when you are querying only one table.

(update: I've just seen the syntax error: you have the uindex name in single quotes. That invalidates the hint. )

[Updated on: Thu, 03 November 2011 12:11]

Report message to a moderator

Re: Doubt about Tuning SQL [message #529951 is a reply to message #529948] Thu, 03 November 2011 12:13 Go to previous messageGo to next message
cookiemonster
Messages: 13920
Registered: September 2008
Location: Rainy Manchester
Senior Member
aucrun wrote on Thu, 03 November 2011 17:00
Yes it does!


Oh No it doesn't.

Ordered doesn't do what you think it does. Maybe you should read up on what it does in the docs.

The fact that you got the data back in name order is a complete coincidence.

EDIT: typo

[Updated on: Thu, 03 November 2011 12:14]

Report message to a moderator

Re: Doubt about Tuning SQL [message #529960 is a reply to message #529951] Thu, 03 November 2011 12:25 Go to previous message
aucrun
Messages: 114
Registered: February 2011
Senior Member
cookiemonster wrote on Thu, 03 November 2011 12:13
aucrun wrote on Thu, 03 November 2011 17:00
Yes it does!


Oh No it doesn't.

Ordered doesn't do what you think it does. Maybe you should read up on what it does in the docs.

The fact that you got the data back in name order is a complete coincidence.

EDIT: typo


Yes, you are right!
Razz

Thanks, I'm going to read a little bit more of info.

Thanks!
Previous Topic: sql tunning help required
Next Topic: Reducing Hard parses
Goto Forum:
  


Current Time: Fri Apr 19 09:12:21 CDT 2024