Viewing 15 posts - 16 through 30 (of 35 total)
Install Microsoft SQL Server 2000 DTS Designer Components on your SQL Server 2005 server.
Look for a .dts file to import. Unfortunately you cannot create new DTS packages in the designer.
Now...
July 14, 2010 at 6:13 am
July 14, 2010 at 5:34 am
Create a DTS package with a Process OLAP database task. Schedule this package to run every hour.
July 14, 2010 at 4:50 am
In the dimension designer look for an property called HideMemberIf when you select your hierarchy. Now choose ParentName as the value. (A member is hidden when its name is identical...
July 14, 2010 at 4:48 am
Put the XMLA statement in a Job and execute this job from your proc with exec msdb..sp_start_job
March 22, 2010 at 6:59 am
Create a named calculation in your dsv
case Comp when 'yes' then 1 else 0 end
and create a regular measure on this named calculation with SUM as aggregate function.
March 9, 2010 at 5:36 am
Daniel Hallam (3/4/2010)
Sounds like there is a calculated member that is trying to perform a subtraction using a string
Or a named calculation in the DSV...
March 9, 2010 at 5:32 am
Strick,
stricknyn (9/30/2009)
[snip] does SSAS have a client side front end tool built in? Or is SSAS pretty much all backend stuff and we'd go purchase a client side tool?
Business...
October 12, 2009 at 5:14 am
You should add a surrogate key to your dimension tables. And join your fact to this surrogate key.
August 5, 2009 at 6:48 am
Have you created a DTS package that is run from your job? Have you tried to run the DTS package with dtsrun and see if it performs or not?
February 16, 2009 at 12:14 am
Or you could connect to your OLAP databse over http. Check Accessing the Analysis Server Over HTTPS on MSDN if you are using AS2000 or Configuring HTTP Access to SQL...
February 12, 2009 at 11:27 pm
Akshaya,
Akshaya (6/12/2008)
February 9, 2009 at 11:48 pm
Mohammed,
runs these queries on the Adventure Works OLAP database and notice the difference...
with member [measures].[x] as 1
select [measures].members on columns
from Finance;
with member [measures].[x] as 1
select addCalculatedMembers([measures].members) on columns
from Finance;
stevefromOZ (2/9/2009)
February 9, 2009 at 11:40 pm
mohd.imtiaz (1/28/2009)
Select [Measure Set 1 ] on Rows, [Products] on Columnsfrom [Adventure Works]
it give me perfect result but with no Calculated measures (but with no error).
Try adding AddCalculatedMembers to your...
February 9, 2009 at 12:10 am
Have you also tried other OLAP clients? CNS International has just released version 4.3 of their product Datawarehouse Exporer. A fully functional trial version can be downloaded from their site.
February 8, 2009 at 11:59 pm
Viewing 15 posts - 16 through 30 (of 35 total)