Viewing 15 posts - 451 through 465 (of 595 total)
You can put this into the Where condition in a query for a simple solution. For example in AdventureWorks this:
SELECT
NON EMPTY [Measures].[Reseller Sales Amount] ON 0,
[Geography].[State-Province].[State-Province] ON 1
FROM
[Adventure Works]
WHERE
{[Geography].[Geography].[State-Province].&[NY]&[US],
[Geography].[Geography].[State-Province].&[SD]&[US]}
...would give...
February 17, 2014 at 9:08 am
They only have information on when a partition/dimension was last processed and don't record any sort of history. Your best bet is using msdb.dbo.sysjobhistory and running a query on that.
February 13, 2014 at 7:51 am
According to the Analysis Services Operations guide (http://msdn.microsoft.com/library/hh226085.aspx) CoordinatorExecutionMode is to do with processing and querying only. It mentions nothing of backup operations.
According to a quick google search if you...
February 13, 2014 at 7:36 am
There isn't a way of seeing how long a cube took to process within the cube itself. However if the processing is done via an agent job you can look...
February 13, 2014 at 6:50 am
debanjan.ray (2/12/2014)
all the rows are giving wrong information, as we don’t have any CostModelName in FactB table.
I'm not sure what you are trying to achieve by simply merging two fact...
February 13, 2014 at 6:41 am
Hi,
Sorry for the late reply I was busy yesterday!
I honestly can't see anything obvious but I'm still pretty sure it has something to do with the use of currentmember in...
February 13, 2014 at 12:30 am
Convert to XML then use one of two methods.
You can do it with an XML task in SSIS:
http://microsoft-ssis.blogspot.co.uk/2012/08/validating-xml-file-against-xsd-with.html
Or a script task in SSIS using C#:
http://microsoft-ssis.blogspot.co.uk/2012/08/validating-xml-file-against-xsd-with_6.html
I've done this in the...
February 11, 2014 at 7:21 am
For any connection manager you can set different aspects of it when you configure your project/package in SSMS. So you can set the initial catalog, password, servername and username independantly...
February 11, 2014 at 5:38 am
I have had some (quite brief) dealings with Dundas and I know that if you write manual mdx then you lose some functionality in regards to drilldown but I'm not...
February 11, 2014 at 1:27 am
Why do you need separate UserTypeMapping and UserTeamMapping intermediate facts.
Why not structure your data to have (going back a few steps to dimension modelling) one User table that has foreign...
February 6, 2014 at 8:24 am
Jake Shelton (2/5/2014)
Another question, I have a LOT of these to build, typically I'll only need 2-3 tasks and a couple of connections...
Is it possible/worthwhile using the Wizard to...
February 6, 2014 at 2:27 am
I might be wrong here, but do you just need to create a set from what is in your select statement that can be used at any time with the...
February 5, 2014 at 7:00 am
Can you not just install the Excel assembly on the server and then you can call the Mode function using Excel!Mode ?
February 4, 2014 at 9:22 am
FirstChild and LastChild are used for hierarchy navigation so wouldn't be that relevant in your query.
Have a read of the following:
February 4, 2014 at 9:14 am
This'll do it:
WITH MEMBER Aft AS
MAX({([Trans].[TRA].CURRENTMEMBER, [Trans].[Seq].[Seq].MEMBERS)},[Measures].[Num Val])
MEMBER Change AS
Aft - [Measures].[Num Val]
SELECT
{
[Measures].[Num Val], Aft, change
} ON COLUMNS ,
(
[Trans].[Tax Year].[Tax Year].members, [Trans].[TRA].[TRA].members
) ON ROWS
from...
February 4, 2014 at 4:32 am
Viewing 15 posts - 451 through 465 (of 595 total)