Viewing 15 posts - 16 through 30 (of 124 total)
I think what you're need to do is update the database names after processing. https://docs.microsoft.com/en-us/bi-reference/tmsl/alter-command-tmsl
January 23, 2019 at 1:11 pm
I would use the letter denoting the source system. I would convert the int to a uniqueidentifier though with a hashing algorithm. The natural key is then [Source System], [UniqueId]....
January 23, 2019 at 11:28 am
What I usually do for different grains on date is to make two tables internally: DimDate, DimMonth for example. Date has a direct relationship to month, many to one. Tie...
January 23, 2019 at 11:22 am
You need to be in the server admin group, not the model admin group. To check: use SSMS and connect to the SSAS instance you are trying to deploy to....
January 14, 2019 at 12:50 pm
The one with the GUID is one that you're currently using for your working environment (or one that was left over). Close VS and see if it disappears. If not,...
July 17, 2018 at 7:58 am
For question #2, it's not an exact science, but if you figure the uncompressed size of the data and it follows a typical pattern then it's approximately 10% of the...
July 13, 2018 at 10:14 am
If you are doing a full process of the cube, you need twice the memory (more or less) that the data will take. You can shrink this by partitioning the...
July 13, 2018 at 10:12 am
This sounds like a problem that is pretty common. You need to establish a connection before you change the model. I generally process the table before trying to make changes....
April 30, 2018 at 6:44 am
That's right. That's the reason for keeping Amount and Denominator separate. Create a measure for each and hide them. Then the final measure is Amount/Denominator.
DAX pseudo-code:
CALCULATE(DIVIDE([Amount], IF(ISBLANK([Denominator],...
March 23, 2018 at 2:18 pm
This sounds similar to something I just did. I have a "measures" dimension and a fact table that has two measures: Amount and Denominator. If denominator is blank I use...
March 23, 2018 at 1:36 pm
Depending on whether you're using MD or Tabular, there is a sort order or order by column property. Use this to control the sort order and make another attribute for...
January 24, 2018 at 1:33 pm
What you have described is that it's processing default rather than full. The row counts you see are the rows that are already in the cube instead of what's in...
November 14, 2017 at 9:03 am
Is it that you just want to update the data and it's not updating? Sometimes the cube process default is not sufficient. I run into that where I've made a...
November 13, 2017 at 1:21 pm
November 2, 2017 at 1:10 pm
I do this with an XMLA script to be run at the end of the deployment. I haven't done this the way you're trying to so that may be a...
November 2, 2017 at 1:06 pm
Viewing 15 posts - 16 through 30 (of 124 total)