Viewing 15 posts - 466 through 480 (of 595 total)
Don't forget if you are doing a Process Incrimental/Update to do a Process Index on the whole cube afterwards to rebuild aggregations.
This is quite a good article on using...
January 31, 2014 at 6:17 am
Processing is different depending on the state of whatever object you are processing (a cube, the whole db, a dimension)
Have a look here: http://msdn.microsoft.com/en-us/library/ms175634.aspx
My guess is that in your case...
January 30, 2014 at 9:29 am
Here's something on using VB.net in SSRS:
http://www.codemag.com/Article/0701061
As for a generic VB.net guide just google "VB.net tutorial" or something similar.
Good luck 🙂
January 24, 2014 at 8:28 am
According to your image, if you have dimensions that correspond to the foreign keys in your fact table and you have them properly related to your relevant measure group on...
January 24, 2014 at 8:22 am
Are you sure the folders are actually deleted or is it that the permissions have changed?
Have a look in the ReportServer database and look at the catalog table. Check...
January 21, 2014 at 9:11 am
The way I have handled this in the past is to do a process update to the dimensions followed by processing the latest partition in the facts. Then the final...
January 21, 2014 at 2:59 am
Try using a derived column transformation in conjunction with the TOKEN expression.
For example, for what you are calling "Column4" the expression would be something like:
[Prefix]+TOKEN([Prefix 1],",",1)
"Column5" would be:
[Prefix]+TOKEN([Prefix 1],",",2)
....and so...
January 20, 2014 at 8:19 am
From personal experience it depends but generally I would recommend that it is separate. What else is happening on the box? If you have all of your SQL databases on...
January 20, 2014 at 6:43 am
Depends on which aspect of SSAS you mean.
SSAS in Multi Dimensional Mode is a fairly mature and well established product. Whilst it's unlikely to undergo any drastic changes it is...
January 16, 2014 at 7:13 am
robshobs (1/15/2014)
That did it.
I have really got to get through some MDX courses. Self-taught or otherwise.
Thank you.
Rob
January 16, 2014 at 4:49 am
Have you tried using OPENQUERY?
SELECT *
FROM
OPENQUERY (SSAS, 'Select * from [$SYSTEM].DBSCHEMA_TABLES')
You shouldn't need to specify the catalog (which I'm assuming is [Self Service Reporting]) as you define that in...
January 16, 2014 at 4:45 am
I think you'd have to do this in a script task and then pass the value into a variable to use later on in a data flow task excel source.
You...
January 15, 2014 at 9:25 am
I believe so, if this thread is anything to go by.
January 15, 2014 at 4:13 am
Have a look into the SCOPE statement it should give you the ability to do what you need:
January 15, 2014 at 3:45 am
Viewing 15 posts - 466 through 480 (of 595 total)