There is another gotcha with Teradata 14 (courtesy of TC) that may catch people out.
Using a table defined like this:
CREATE TABLE test(
CALENDAR_DATE DATE FORMAT 'YY/MM/DD' NOT NULL
,RETAIL_OUTLET_NUMBER INTEGER NOT NULL
,BASE_PRODUCT_NUMBER INTEGER NOT NULL
)
PRIMARY INDEX (calendar_date, retail_outlet_number, base_product_number)
This SQL will fail:
COLLECT STATS test COLUMN(
calendar_date, base_product_number, retail_outlet_number);
with the error message:
3706: Syntax error: Multiple statistics with different column ordering on the same set of columns are not allowed
But:
COLLECT STATS test COLUMN(
calendar_date, retail_outlet_number, base_product_number);
will be OK.
The order of the columns must now be the same in the collect stats statement and the primary index.
...
Is there any other way to make them work with out changing the column order???
Thanks...