473,405 Members | 2,154 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

why this 2-column index not used

I have a composite index on two columns in a table. However, the
index is not used in a query that restricts the 2nd column to a
constant. If both columns are linked with columns in other join
tables, the index will be used.

To illustrate it with an example, I have a query like this:

select s.ticker, p.quantity
from stock s, positions p
where s.type_id = 4
and s.stock_id = p.stock_id

There is an index on stock: (stock_id, type_id). In the table stocks,
there are about 100 different type_ids evenly distributed, and ten of
thousand different stock_ids (each stock_id could map to every one of
the 100 type_ids).

From the plan, the above query does not use the index, but the
following query does use the index:

select s.ticker, p.quantity
from stock s, positions p
where s.type_id = p.pos_type_id
and s.stock_id = p.stock_id

The only difference is that in the first query, type_id is constant 4,
while in the second it is linked with another column in the second
table.

The stats are good. Is there anything else that might have caused the
above?

Sep 13 '08 #1
6 3911
Even if I add another index stock (stock_id), the first query still
doesn't use any index.

However, if the query is like this:

select s.ticker, p.quantity
from stock s, positions p
where s.stock_id = p.stock_id

The index on stock (stock) will be used (of course). If the query is
like this:

select s.ticker, p.quantity
from stock s, positions p
where s.stock_id = 101
s.type_id = 4

then the index on stock (stock_id, type_id) is used.

BTW, there is a foreign key in stock that links the stock_id field to
the positions (stock_id).

Anybody can explain the above?
Sep 13 '08 #2
"Henry J." <ta********@yahoo.comwrote in message
news:02**********************************@m45g2000 hsb.googlegroups.com...
>I have a composite index on two columns in a table. However, the
index is not used in a query that restricts the 2nd column to a
constant. If both columns are linked with columns in other join
tables, the index will be used.

To illustrate it with an example, I have a query like this:

select s.ticker, p.quantity
from stock s, positions p
where s.type_id = 4
and s.stock_id = p.stock_id

There is an index on stock: (stock_id, type_id). In the table stocks,
there are about 100 different type_ids evenly distributed, and ten of
thousand different stock_ids (each stock_id could map to every one of
the 100 type_ids).

From the plan, the above query does not use the index, but the
following query does use the index:

select s.ticker, p.quantity
from stock s, positions p
where s.type_id = p.pos_type_id
and s.stock_id = p.stock_id

The only difference is that in the first query, type_id is constant 4,
while in the second it is linked with another column in the second
table.

The stats are good. Is there anything else that might have caused the
above?
You are confusing the use of an index with automatically getting better
performance than not using an index. Sometimes using an index will result in
better performance, and sometimes not. If DB2 determines that it is faster
to not use an index, then it will not use one. This typically happens when
DB2 will have read every data page (rows are stored in pages) to satisfy the
query.

Keep in mind that you are returning all rows from the table (you don't
qualify which type_id or which stock_id's you want), so it is safe to assume
that DB2 will have to read not just every page, but in fact every row, to
satisfy the query.

Assuming you did a runstats as follows:
runstats on table <table-namewith distribution on key columns and indexes
all
then DB2 almost always makes the correct decision.
Sep 13 '08 #3
On Sep 13, 12:34*am, "Mark A" <some...@someone.comwrote:
"Henry J." <tank209...@yahoo.comwrote in message

news:02**********************************@m45g2000 hsb.googlegroups.com...
I have a composite index on two columns in a table. *However, the
index is not used in a query that restricts the 2nd column to a
constant. *If both columns are linked with columns in other join
tables, the index will be used.
To illustrate it with an example, I have a query like this:
select s.ticker, p.quantity
from stock s, positions p
* * *where s.type_id = 4
* * * * * * * and s.stock_id = p.stock_id
There is an index on stock: (stock_id, type_id). *In the table stocks,
there are about 100 different type_ids evenly distributed, and ten of
thousand different stock_ids (each stock_id could map to every one of
the 100 type_ids).
From the plan, the above query does not use the index, but the
following query does use the index:
select s.ticker, p.quantity
from stock s, positions p
* * *where s.type_id = p.pos_type_id
* * * * * * * and s.stock_id = p.stock_id
The only difference is that in the first query, type_id is constant 4,
while in the second it is linked with another column in the second
table.
The stats are good. *Is there anything else that might have caused the
above?

You are confusing the use of an index with automatically getting better
performance than not using an index. Sometimes using an index will resultin
better performance, and sometimes not. If DB2 determines that it is faster
to not use an index, then it will not use one. This typically happens when
DB2 will have read every data page (rows are stored in pages) to satisfy the
query.

Keep in mind that you are returning all rows from the table (you don't
qualify which type_id or which stock_id's you want), so it is safe to assume
that DB2 will have to read not just every page, but in fact every row, to
satisfy the query.

Assuming you did a runstats as follows:
runstats on table <table-namewith distribution on key columns and indexes
all
then DB2 almost always makes the correct decision.
My first query is not to return all data? It's only returning on
s.type_id = 4.

Actually my questions arised when I changed the indexes on the table
stock and the same queries run more than twice as long as before.
Then I found the main index is not used at all. Since the tables are
huge (40 mil rows), I don't see why DB2 decides it's faster not to use
the index.

Maybe I should create an index on stock (type_id)? Actually it
eliminates a table scan on stock. But why it is not using (stock_id,
type_id) even though both columns are used in where clause.

I know I must have some mis-conceptions. I just don't know which ones.
Sep 13 '08 #4
On Sep 13, 10:07*am, "Henry J." <tank209...@yahoo.comwrote:
On Sep 13, 12:34*am, "Mark A" <some...@someone.comwrote:
"Henry J." <tank209...@yahoo.comwrote in message
news:02**********************************@m45g2000 hsb.googlegroups.com....
>I have a composite index on two columns in a table. *However, the
index is not used in a query that restricts the 2nd column to a
constant. *If both columns are linked with columns in other join
tables, the index will be used.
To illustrate it with an example, I have a query like this:
select s.ticker, p.quantity
from stock s, positions p
* * *where s.type_id = 4
* * * * * * * and s.stock_id = p.stock_id
There is an index on stock: (stock_id, type_id). *In the table stocks,
there are about 100 different type_ids evenly distributed, and ten of
thousand different stock_ids (each stock_id could map to every one of
the 100 type_ids).
From the plan, the above query does not use the index, but the
following query does use the index:
select s.ticker, p.quantity
from stock s, positions p
* * *where s.type_id = p.pos_type_id
* * * * * * * and s.stock_id = p.stock_id
The only difference is that in the first query, type_id is constant 4,
while in the second it is linked with another column in the second
table.
The stats are good. *Is there anything else that might have caused the
above?
You are confusing the use of an index with automatically getting better
performance than not using an index. Sometimes using an index will result in
better performance, and sometimes not. If DB2 determines that it is faster
to not use an index, then it will not use one. This typically happens when
DB2 will have read every data page (rows are stored in pages) to satisfy the
query.
Keep in mind that you are returning all rows from the table (you don't
qualify which type_id or which stock_id's you want), so it is safe to assume
that DB2 will have to read not just every page, but in fact every row, to
satisfy the query.
Assuming you did a runstats as follows:
runstats on table <table-namewith distribution on key columns and indexes
all
then DB2 almost always makes the correct decision.

My first query is not to return all data? *It's only returning on
s.type_id = 4.

Actually my questions arised when I changed the indexes on the table
stock and the same queries run more than twice as long as before.
Then I found the main index is not used at all. * Since the tables are
huge (40 mil rows), I don't see why DB2 decides it's faster not to use
the index.

Maybe I should create an index on stock (type_id)? *Actually it
eliminates a table scan on stock. * But why it is not using (stock_id,
type_id) even though both columns are used in where clause.

I know I must have some mis-conceptions. *I just don't know which ones.
You should create index (type_id, stock_id) on stock.

Yonglei
Sep 14 '08 #5
On Sep 14, 10:51*am, yongl...@gmail.com wrote:
On Sep 13, 10:07*am, "Henry J." <tank209...@yahoo.comwrote:
On Sep 13, 12:34*am, "Mark A" <some...@someone.comwrote:
"Henry J." <tank209...@yahoo.comwrote in message
>news:02**********************************@m45g200 0hsb.googlegroups.com....
I have a composite index on two columns in a table. *However, the
index is not used in a query that restricts the 2nd column to a
constant. *If both columns are linked with columns in other join
tables, the index will be used.
To illustrate it with an example, I have a query like this:
select s.ticker, p.quantity
from stock s, positions p
* * *where s.type_id = 4
* * * * * * * and s.stock_id = p.stock_id
There is an index on stock: (stock_id, type_id). *In the table stocks,
there are about 100 different type_ids evenly distributed, and ten of
thousand different stock_ids (each stock_id could map to every one of
the 100 type_ids).
From the plan, the above query does not use the index, but the
following query does use the index:
select s.ticker, p.quantity
from stock s, positions p
* * *where s.type_id = p.pos_type_id
* * * * * * * and s.stock_id = p.stock_id
The only difference is that in the first query, type_id is constant4,
while in the second it is linked with another column in the second
table.
The stats are good. *Is there anything else that might have caused the
above?
You are confusing the use of an index with automatically getting better
performance than not using an index. Sometimes using an index will result in
better performance, and sometimes not. If DB2 determines that it is faster
to not use an index, then it will not use one. This typically happenswhen
DB2 will have read every data page (rows are stored in pages) to satisfy the
query.
Keep in mind that you are returning all rows from the table (you don't
qualify which type_id or which stock_id's you want), so it is safe toassume
that DB2 will have to read not just every page, but in fact every row, to
satisfy the query.
Assuming you did a runstats as follows:
runstats on table <table-namewith distribution on key columns and indexes
all
then DB2 almost always makes the correct decision.
My first query is not to return all data? *It's only returning on
s.type_id = 4.
Actually my questions arised when I changed the indexes on the table
stock and the same queries run more than twice as long as before.
Then I found the main index is not used at all. * Since the tables are
huge (40 mil rows), I don't see why DB2 decides it's faster not to use
the index.
Maybe I should create an index on stock (type_id)? *Actually it
eliminates a table scan on stock. * But why it is not using (stock_id,
type_id) even though both columns are used in where clause.
I know I must have some mis-conceptions. *I just don't know which ones.

You should create index (type_id, stock_id) on stock.

Yonglei
I think you are right -- if I create an index stock (type_id,
stock_id), the index will be used and no more table scan is done.

I created the index on (stock_id, type_id) because stock_id is much
more selective. Can't the DB2 optimizer figure out that this index
should be used?

BTW, as (stock_id, type_id) was the only index on the table, I'm able
to get rid of the table scan by making the table volatile.

I know DB2 optimizer is good, so what do I miss?
Sep 14 '08 #6
On Sep 14, 3:35*pm, "Henry J." <tank209...@yahoo.comwrote:
On Sep 14, 10:51*am, yongl...@gmail.com wrote:
On Sep 13, 10:07*am, "Henry J." <tank209...@yahoo.comwrote:
On Sep 13, 12:34*am, "Mark A" <some...@someone.comwrote:
"Henry J." <tank209...@yahoo.comwrote in message
news:02**********************************@m45g2000 hsb.googlegroups.com...
>I have a composite index on two columns in a table. *However, the
index is not used in a query that restricts the 2nd column to a
constant. *If both columns are linked with columns in other join
tables, the index will be used.
To illustrate it with an example, I have a query like this:
select s.ticker, p.quantity
from stock s, positions p
* * *where s.type_id = 4
* * * * * * * and s.stock_id = p.stock_id
There is an index on stock: (stock_id, type_id). *In the table stocks,
there are about 100 different type_ids evenly distributed, and ten of
thousand different stock_ids (each stock_id could map to every one of
the 100 type_ids).
From the plan, the above query does not use the index, but the
following query does use the index:
select s.ticker, p.quantity
from stock s, positions p
* * *where s.type_id = p.pos_type_id
* * * * * * * and s.stock_id = p.stock_id
The only difference is that in the first query, type_id is constant 4,
while in the second it is linked with another column in the second
table.
The stats are good. *Is there anything else that might have caused the
above?
You are confusing the use of an index with automatically getting better
performance than not using an index. Sometimes using an index will result in
better performance, and sometimes not. If DB2 determines that it isfaster
to not use an index, then it will not use one. This typically happens when
DB2 will have read every data page (rows are stored in pages) to satisfy the
query.
Keep in mind that you are returning all rows from the table (you don't
qualify which type_id or which stock_id's you want), so it is safe to assume
that DB2 will have to read not just every page, but in fact every row, to
satisfy the query.
Assuming you did a runstats as follows:
runstats on table <table-namewith distribution on key columns andindexes
all
then DB2 almost always makes the correct decision.
My first query is not to return all data? *It's only returning on
s.type_id = 4.
Actually my questions arised when I changed the indexes on the table
stock and the same queries run more than twice as long as before.
Then I found the main index is not used at all. * Since the tables are
huge (40 mil rows), I don't see why DB2 decides it's faster not to use
the index.
Maybe I should create an index on stock (type_id)? *Actually it
eliminates a table scan on stock. * But why it is not using (stock_id,
type_id) even though both columns are used in where clause.
I know I must have some mis-conceptions. *I just don't know which ones.
You should create index (type_id, stock_id) on stock.
Yonglei

I think you are right -- if I create an index stock (type_id,
stock_id), the index will be used and no more table scan is done.

I created the index on (stock_id, type_id) because stock_id is much
more selective. * Can't the DB2 optimizer figure out that this index
should be used?

BTW, as (stock_id, type_id) was the only index on the table, I'm able
to get rid of the table scan by making the table volatile.

I know DB2 optimizer is good, so what do I miss?
For index1 (stock_id, type_id), DB2 needs to scan the whole index and
keep keys with type_id=4, while for index2 (type_id, stock_id), it
only needs to scan portion of index where type_id=4.

That's huge difference.
Sep 14 '08 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Heiko | last post by:
Hello, is there any way (v$-view) to get informaion about how often an index hast been used since of starting the Database? Thanks for help Heiko
0
by: Dare to be the best | last post by:
I don't understand I have this table: CREATE TABLE product ( p_id int(11) NOT NULL default '0', p_name varchar(250) NOT NULL default '', p_cat int(11) NOT NULL default '0', PRIMARY KEY ...
2
by: paul | last post by:
Hi, i have a table like this CREATE TABLE dbo.test ( num int NOT NULL, ename char(80), eadress char(200), archived char(1) PRIMARY KEY CLUSTERED (num) )
0
by: George Essig | last post by:
I have installed tsearch2 and have noticed that the gist index used to do searches grows and grows as I update rows, delete rows, or run VACUUM FULL ANALYZE. Below are some details: PostgreSQL...
4
by: maricel | last post by:
Could someone confirm which tablespace is being used when running ALTER & CREATE INDEX. Is it the tempspace or the tablespace where the table resides? Many thanks, maricel
14
by: Sean C. | last post by:
Helpful folks, Most of my previous experience with DB2 was on s390 mainframe systems and the optimizer on this platform always seemed very predictable and consistent. Since moving to a WinNT/UDB...
8
by: Mike | last post by:
Hello, I have a few rather urgent questions that I hope someone can help with (I need to figure this out prior to a meeting tomorrow.) First, a bit of background: The company I work for is...
3
by: Anton Maksimenkov | last post by:
Hello. Explain. I have table "traf_raw" contains field "sip_id" (integer). This field indexed with "CREATE INDEX traf_raw_sip ON traf_raw (sip_id)". Question. When I try to get different...
15
by: rAinDeEr | last post by:
Suppose i have a table which holds thousands of records with the following structure CREATE TABLE "test "."T_CNTRY" ( "CNTRY_CDE" CHAR(2) NOT NULL , "CNTRY_NAME" VARCHAR(50) ) and i have...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.