Viewing 15 posts - 46 through 60 (of 668 total)
try this:
SELECT MEASURES.DEFAULTMEMBER ON 0,
NON EMPTY
{
GENERATE([Geography].[Country].[Country],[Product].[Category].ALLMEMBERS)
*[Geography].[Country].[Country] } ON 1
FROM [Adventure Works]
October 6, 2013 at 11:26 pm
SELECT {<<some measures>>} ON 0,
[Customer Dimension].[Customer Status].[Customer Status] on 1
FROM <<your_cube>>
WHERE (NULL:[Dim Date].[Date].&[26062013])
This code will effectively give you the customer status from Start of Date in the dimension till 26th...
October 3, 2013 at 2:52 am
Create a new dataset which will query the server such as using @@SERVERNAME and use parameters in the report body
October 3, 2013 at 2:00 am
CAST & REPLACE are SQL functions and the keyword AS not understood by Analysis Engine. This DMV will not work.
September 30, 2013 at 12:59 am
MERGE JOIN transformation?
September 30, 2013 at 12:57 am
If you are executing the cube process logic via a SSIS package, you can design an audit mechanism to track package start time and package end time for every cube...
September 30, 2013 at 12:39 am
What kind of testing are you planning? Is the agenda for the testing related to data correctness or performance related?
September 30, 2013 at 12:36 am
For the #2 approach which you have mentioned, the design must have a dedicated staging area tables to perform an OUTER JOIN with destinations to load only new data.
September 30, 2013 at 12:33 am
You can create two tablix regions in the report body with distinct data sets and group the report datasets by Agent Name.
September 29, 2013 at 11:44 pm
Yes you are correct. But its just the way the query is built. You can always fine tune the MDX yourself 🙂
September 23, 2013 at 2:56 am
There are two parts to your question, if I understand it correctly
1. You can always use the the standard DMV's to see the formula and the MDX used to define...
September 12, 2013 at 1:57 am
To begin with, Profile the SQL and check whether the SQL is syntactically correct for the multi value parameters
September 12, 2013 at 1:51 am
See this:
http://stackoverflow.com/questions/11263538/powershell-display-table-in-html-email
and
http://lukieb.wordpress.com/2011/03/03/powershell-script-to-send-sql-server-query-results-via-e-mail/[/url]
What you should note here is that these blog links shared here have defined their own mail snippet to send the result, alternatively, you can also use the...
January 9, 2013 at 9:36 pm
Paste your complete PS code here. Also, is there a specific reason not to use sysjobshistory and sysjobs tables for reporting needs?
January 8, 2013 at 11:39 pm
What is the version of powershell you are using?
January 8, 2013 at 11:23 pm
Viewing 15 posts - 46 through 60 (of 668 total)