PRB: Error Occurs When You Create a Cube in the Dimension Editor (314161)
The information in this article applies to:
- Microsoft BizTalk Accelerator for Suppliers, version 1.0
This article was previously published under Q314161 SYMPTOMS
If you follow the instructions in Appendix B of the Extending Analysis and Reporting document, which is included with the BizTalk Accelerator for Suppliers, you may receive the following error message when you use the Dimension Editor to create a new cube:
Unable to count the members...
CAUSE
This problem occurs because there is no data in the Data Warehouse for the field in the corresponding table or view. Even if the data is available in the Commerce Server database, the data may not be populated when you run the DTS task.
RESOLUTION
To correct this problem, run a SQL script to update the date fields for the existing data in these tables. To create the script, and then run it at the appropriate time in the documented instructions, do the following:
- Create an empty text file, and then name it "Update.sql."
- Copy the following code into the Update.sql file:
UPDATE [dbo].[SE_FulfillmentStatus]
SET d_date_last_changed = getdate(),
d_date_created = getdate() where d_date_created is null
GO
UPDATE [dbo].[SE_Marketplace]
SET d_date_last_changed = getdate(),
d_date_created = getdate() where d_date_created is null
GO
- After you run the alter table scripts in the "Step 3: Preparing to Import Data" section of the Extending Analysis and Reporting document, run the Update.sql script.
Modification Type: | Major | Last Reviewed: | 6/25/2004 |
---|
Keywords: | kbprb KB314161 |
---|
|