|
|
Archives of the TeradataForum
Message Posted: Wed, 05 Nov 2003 @ 15:04:13 GMT
Subj: | | Re: Count of Distinct Rows |
|
From: | | Grenwelge, Bill A. |
Just tried the same test you did, Ruth and got the same results. We are on V2R4.1.3
create table dwwork.null_check
, no fallback
, no before journal
, no after journal
(
cola smallint,
colb smallint,
colc smallint
)
primary index (cola, colb, colc);
Insert into dwwork.Null_Check Values (1,1,null);
Insert into dwwork.Null_Check Values (1,2,null);
Insert into dwwork.Null_Check Values (1,3,null);
Insert into dwwork.Null_Check Values (1,4,null);
Insert into dwwork.Null_Check Values (1,5,null);
Collect Stats on dwwork.Null_Check Index (ColA, ColB, ColC);
Help stats dwwork.Null_Check;
Date Time Unique Values Column Names
03/11/05 09:06:57 1 cola,colb,colc
Bill Grenwelge
Data Warehouse
Union Planters Bank
| |