Viewing 15 posts - 91 through 105 (of 887 total)
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
Processing all the dimensions first and then the cubes should work. If it doesn't, it might be because you're not doing a "full" process on the dimensions or you may...
February 18, 2020 at 11:34 am
In my experience it is usually locking/waiting of some kind (if you're referencing an external file, server or system), or a delay with the BIML add-in in VS/SSDT. You could...
December 19, 2019 at 10:23 pm
It's important to understand your use-case better, before making decisions on a best way forward. Could you provide more details about that?
December 10, 2019 at 1:37 pm
I don't necessarily pre-stage (with two separate staging areas), but I do prefer to do no (or minimal) transformations when I bring data into the staging area. All my transformations...
December 5, 2019 at 12:18 pm
Scheduled I'm not sure about, but you can use the SSAS flight recorder to collect query execution info either to a table or log file. Look at the instance properties...
December 4, 2019 at 12:00 pm
Aggregations will help with performance and is definitely something worth looking at. You're right, proactive caching isn't really what you want to do here...you just want to warm the cache...
December 3, 2019 at 11:44 am
And surrogate keys can and usually are durable keys.
yes, true 🙂
December 2, 2019 at 3:48 pm
Viewing 15 posts - 91 through 105 (of 887 total)