The information in this article applies to:
BUG #: 513 (plato7x) SYMPTOMSChanging a partition's underlying fact table may change a column name if the column name is the same name as the original fact table name. Processing the partition fails and the following error appears:
WORKAROUND
Avoid having a measure column name that has the same name as the fact table. STATUSMicrosoft has confirmed this to be a problem in SQL Server OLAP Services version 7.0. MORE INFORMATIONIf you have a fact table named store_sales that has a column named store_sales on which you have measure defined, while processing it sends something like following to the relational db:
If you change the underlying fact table to be sales_fact_1997, the following query is sent to the relational db:
which fails with:
Notice that "store_sales"."store_sales" is changed to "sales_fact_1997"."sales_fact_1997" instead of "sales_fact_1997"."store_sales" After you change the underlying fact table for a partition, the cube's fact table remains unchanged. Additional query words:
Keywords : kbSQLServ700bug |
Last Reviewed: September 27, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |