dbTalk Databases Forums  

Please some one help me on this, I posted couple times already

microsoft.public.sqlserver.olap microsoft.public.sqlserver.olap


Discuss Please some one help me on this, I posted couple times already in the microsoft.public.sqlserver.olap forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
meghana via SQLMonster.com
 
Posts: n/a

Default Please some one help me on this, I posted couple times already - 10-26-2006 , 12:17 PM






Each partition in a cube has a different data source.

I created a cube based on sale1 table in site1 data source
All the dimensions linked to site1 data source
I created partition1 on sale2 table in site 2 data source
Sale1 and sale 2 tables contains same schema
Receiving a error on partition1

A member with key 'Sales2' was found in the fact table but was not found in
the level 'Account Desc' of the dimension 'Account_Desc

Sale1 table account_desc is sale1
Sale 2 table account_desc is sale2

How do I fix it
Thank you so much for your help on this.

--
Message posted via SQLMonster.com
http://www.sqlmonster.com/Uwe/Forums...-olap/200610/1


Reply With Quote
  #2  
Old   
barry.hensch.nospam@gmail.com
 
Posts: n/a

Default Re: Please some one help me on this, I posted couple times already - 10-26-2006 , 01:20 PM






Hi meghana,

Is is possible that their is an entry from your Fact Table that isn't
in your Account Dimension. It sounds like you may not be using a
conformed Account dimension table and perhaps using a separate Account
dimension table for each fact table. In Analysis Services you will
need to make sure that all our your Account Dimension tables are
included in the load process (probably through a view with a UNION) --
the view because the source table in the data source view.

To test this out I would suggest running a query like:

SELECT count(1)
FROM sales2 s
LEFT OUTER JOIN acct1 a --The table you have defined in
the Analysis Services data source view
ON s.acct_id = a.acct_id --Joining on the same columns
as defined in the Analysis Services data source view
WHERE a.acct_desc IS NULL

Barry

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`
meghana via SQLMonster.com wrote:
Quote:
Each partition in a cube has a different data source.

I created a cube based on sale1 table in site1 data source
All the dimensions linked to site1 data source
I created partition1 on sale2 table in site 2 data source
Sale1 and sale 2 tables contains same schema
Receiving a error on partition1

A member with key 'Sales2' was found in the fact table but was not found in
the level 'Account Desc' of the dimension 'Account_Desc

Sale1 table account_desc is sale1
Sale 2 table account_desc is sale2

How do I fix it
Thank you so much for your help on this.

--
Message posted via SQLMonster.com
http://www.sqlmonster.com/Uwe/Forums...-olap/200610/1


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.