June 30, 2009 at 6:03 pm
Hello,
I have a cube in my local SSAS instance which I can query through Excel.
I am getting security error when I attempt to run an MDX query against it.
My query is very simple one:
select
[Measures].[TargetAttainment]
from [HoursCube]
Here is the error I am getting:
Executing the query ...
Error (Data mining): Either the user,
Error (Data mining): Either the user,
Execution complete
Could anyone suggest how to resolve the issue, please.
Thanks,
Peter.
September 7, 2009 at 5:19 am
Can you try running the following MDX
select
[Measures].[TargetAttainment] on 0
from [HoursCube]
June 6, 2012 at 10:34 am
I'm not sure if you ever heard back from the asker but this worked for me.
Thank you!
June 8, 2012 at 4:39 am
The correct syntax is:
Select {Measures} ON COLUMNS,
{Dimensions} ON ROWS
FROM <<cube_name>>
WHERE
(any_slicers)
Raunak J
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply