vote up 3 vote down star

Does anyone know why in Oracle 11g when you do a Count(1) with more than one natural join it does a cartesian join and throws the count way off?

Such as

SELECT Count(1) FROM record NATURAL join address NATURAL join person WHERE status=1
AND code = 1 AND state = 'TN'

This pulls back like 3 million rows when

SELECT * FROM record NATURAL join address NATURAL join person WHERE status=1
AND code = 1 AND state = 'TN'

pulls back like 36000 rows, which is the correct amount.

Am I just missing something?

Here are the tables I'm using to get this result.

CREATE TABLE addresses (
address_id           NUMBER(10,0)  NOT NULL,
address_1            VARCHAR2(60)  NULL,
address_2            VARCHAR2(60)  NULL,
city                 VARCHAR2(35)  NULL,
state                CHAR(2)       NULL,
zip                  VARCHAR2(5)   NULL,
zip_4                VARCHAR2(4)   NULL,
county               VARCHAR2(35)  NULL,
phone                VARCHAR2(11)  NULL,
fax                  VARCHAR2(11)  NULL,
origin_network       NUMBER(3,0)   NOT NULL,
owner_network        NUMBER(3,0)   NOT NULL,
corrected_address_id NUMBER(10,0)  NULL,
"HASH"                 VARCHAR2(200) NULL
);

CREATE TABLE rates (
rate_id      NUMBER(10,0) NOT NULL,
eob          VARCHAR2(30) NOT NULL,
network_code NUMBER(3,0)  NOT NULL,
product_code VARCHAR2(2)  NOT NULL,
rate_type    NUMBER(1,0)  NOT NULL
);

CREATE TABLE records (
pk_unique_id      NUMBER(10,0) NOT NULL,
rate_id           NUMBER(10,0) NOT NULL,
address_id        NUMBER(10,0) NOT NULL,
effective_date    DATE         NOT NULL,
term_date         DATE         NULL,
last_update       DATE         NULL,
status            CHAR(1)      NOT NULL,
network_unique_id VARCHAR2(20) NULL,
rate_id_2         NUMBER(10,0) NULL,
contracted_by     VARCHAR2(50) NULL,
contract_version  VARCHAR2(5)  NULL,
bill_address_id   NUMBER(10,0) NULL
);

I should mention this wasn't a problem in Oracle 9i, but when we switched to 11g it became a problem.

flag

Describe those tables. Do you get the same results if you explicitly specify the inner join? – Apocalisp Sep 19 '08 at 16:27

5 Answers

vote up 7 vote down check

My advice would be to NOT use NATURAL JOIN. Explicitly define your join conditions to avoid confusion and "hidden bugs". Here is the official NATURAL JOIN Oracle documentation and more discussion about this subject.

link|flag
Thanks a bunch! This helped me diagnose my bug (gist.github.com/72614) that turned out to be due to NATURAL JOINs. – rampion Mar 2 at 13:45
vote up 1 vote down

Just noticed you used 2 natural joins... From the documentation you can only use a natural join on 2 tables Natural_Join

link|flag
That is incorrect (and the site you referenced is not the documentation, it is an independent Wiki): See 68.142.116.68/docs/cd/… – Tony Andrews Sep 22 '08 at 9:22
vote up 1 vote down

you should try a count(*)

There is a difference between the two.
count(1) signifies count rows where 1 is not null
count(*) signifies count the rows

link|flag
1  
Since 1 is never null, there is no difference in potential results. – Tony Andrews Sep 22 '08 at 9:24
2  
... and count(1) is rewritten to count(*) anyway. asktom.oracle.com/pls/asktom/… – David Aldridge Mar 29 at 0:35
vote up 1 vote down

If it happens exactly as you say then it must be an optimiser bug, you should report it to Oracle.

link|flag
vote up 0 vote down

Could you provide а reproducible testcase?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.