Viewing 15 posts - 1 through 15 (of 16 total)
The easiest way would be to run the SSIS package only through a SQL Agent job. You would then have history available through SSMS.
You could also set up the...
July 26, 2012 at 10:03 am
with member [Measures].[Total] as
[Measures].[Amt] * [Measures].[Qty]
DRILLTHROUGH MAXROWS 1000 SELECT
{[Measures].[Total]}
on columns,
nonempty([Employee Master].[Empid].members) on rows
from
[Sales_Cube]
July 23, 2012 at 1:46 pm
I think the 'DrillThrough' statement will give you the results you are looking for. It returns all rows from the data set and does not apply any aggregation.
Here is...
July 23, 2012 at 8:55 am
This could also be caused by waiting for a lock on all the tables in the query.
Depending on what you are doing with the data you may want to...
July 23, 2012 at 7:46 am
Instead of intersecting the answer sets, I would suggest intersecting the people who had those answers. So you would need to construct two MDX set statements that use the answers...
June 5, 2012 at 6:43 am
Thanks for clarifying Mike, I thought he was trying to extract data into a CSV file.
I still think SSIS would be a good choice if the CSV file comes...
May 18, 2012 at 8:46 am
Hello,
Ideally it would be beneficial to have your partitioning so that archived or static data is in a separate partition. If it is not possible to change the partitioning in...
May 18, 2012 at 8:44 am
I agree that an SSIS solution would typically be the best solution for transferring data to a CSV file. It tends to be more easily modified/debugged down the road.
James
May 18, 2012 at 8:27 am
If you are working from a network drive that has backups running during the day it may very well trigger this message. It all depends on the backup software you...
May 17, 2012 at 7:50 am
Sorry, it appears Microsoft has removed ProClarity Desktop Professional from it's available MSDN downloads. In this case you should browse the cube via Visual Studio (BIDS) and then run a...
May 15, 2012 at 9:13 am
Also, I do have one tip. If you are not that strong in MDX I would recommend you install ProClarity (If you have an MSDN account) and create your report...
May 14, 2012 at 7:02 am
I would continue trying to get the SSIS data flow task to work. I was able to extract over 2 million rows from an OLAP cube into a CSV file...
May 14, 2012 at 6:56 am
rumsmaster (5/14/2012)
Once you are done deploying your project in SSAS, open Excel, select Data from the main ribbon, then Get external data, then from other sources and finally click...
May 14, 2012 at 6:34 am
rumsmaster - How exactly do you 'Import a cube into Excel'?
May 11, 2012 at 12:58 pm
Hello,
It looks like you are attempting to return a large number of records. I would recommend you first create a new MDX Query that returns a small amount of data...
May 11, 2012 at 7:02 am
Viewing 15 posts - 1 through 15 (of 16 total)