Viewing 15 posts - 91 through 105 (of 893 total)
I unfortunately don't know of a more elegant way, and have used empty script tasks in the past as a starting point.
May 28, 2020 at 1:57 pm
You'll probably have to do something like this: https://docs.microsoft.com/en-us/analysis-services/tutorial-tabular-1200/supplemental-lesson-implement-dynamic-security-by-using-row-filters?view=asallproducts-allversions
April 23, 2020 at 9:38 pm
To an extent, yes. Some tools, as good as they are, require a lot of monotonous and repetitive work and we're new seeing tools in some of those cases that...
April 23, 2020 at 8:35 pm
BIML is that free tool. Use BIML Express in Visual Studio.
April 23, 2020 at 4:51 pm
BIML could be your friend in this case, to generate all of these packages and save your sanity.
April 23, 2020 at 4:43 pm
Ok gotcha, so it's really only the lookup for existence that's an issue.
How about assigning surrogate keys in your destination table, and then building either filtered indexes or partitioning the...
April 23, 2020 at 4:38 pm
From a partitioning point of view, just think of a way in which you can structure your source query to get a somewhat equal distribution. Dates work well for this,...
April 23, 2020 at 4:33 pm
You could try to partition the import and load the cache in parallel, but I have never done that and don't know if that will really eliminate the problem.
To be...
April 23, 2020 at 4:20 pm
You can use AD Groups in Analysis Services roles to limit data, but row-level-security is to limit data from the end user and not entire entities (tables) or attributes. There...
April 23, 2020 at 4:15 pm
You can use the following API to refresh a dataset: https://docs.microsoft.com/en-us/rest/api/power-bi/datasets/refreshdatasetingroupÂ
Here's a C# example on the .Net object model you can use to call the API: https://docs.microsoft.com/en-us/power-bi/developer/automation/walkthrough-push-data-complete-code
April 21, 2020 at 7:21 pm
I'd recommend using Powershell, as it is much more robust than trying to do it in native SSIS tasks.
March 17, 2020 at 2:56 pm
I like to use XMLA directly in the SQL Agent jobs. At least in my experience, the built-in SSAS processing task is a little clunky sometimes.
February 18, 2020 at 4:27 pm
No worries. The dimension that was failing was most likely causing your other dimensions down the list not to process, and SSIS wasn't throwing the error like it should have....
February 18, 2020 at 3:52 pm
In the world of multidimensional cubes, the value it's complaining about is usually the culprit (or part of it). I would do the following:
...
February 18, 2020 at 3:01 pm
If the cube is processed "full", then all associated measure groups in the cube will also be processed. You may have to dive into the error a little more. For...
February 18, 2020 at 12:23 pm
Viewing 15 posts - 91 through 105 (of 893 total)