Viewing 15 posts - 76 through 90 (of 102 total)
When a script means a xmla-script, you should use the DisplayFolder element.
Script the AdventureWorks-cube for an example.
June 5, 2008 at 6:58 am
I'm not quite sure what you mean by 'collapses nicely'.
However, AFAIK by default you can not get details for a calculated member when using a XL-pivot on a SSAS cube.
Hope...
June 5, 2008 at 6:51 am
If good old T-SQL is what you're looking for:
[font="System"]SELECT (CASE WHEN Age > 60
THEN 'Old'
ELSECASE WHEN Age > 40
THEN 'MiddleAge'
ELSECASE WHEN Age > 18
THEN'Young'
ELSE 'Baby'
END
END
END)...
June 5, 2008 at 6:45 am
As I read it, in Standard Edition it is not possible to have multiple SSRS instances use the same reporting database.
June 5, 2008 at 6:25 am
With some help of a colleague who is more familiar with asp.net and the security around that, we finally made this work.
I'm not quite sure how to describe it, but...
June 5, 2008 at 6:05 am
On my SQL 2005 Developer installation, sysprocesses is no table, but a view (master.sys.sysprocesses), which ruled out the first answer to me (as I did only check if the table...
April 17, 2008 at 6:02 am
In SSMS you can drag'n'drop elements from a list in a textual MDX query (when using the "New query" feature). However, you still got to make up the correct MDX...
March 5, 2008 at 1:04 am
I think this question doesn't provide the right answer with the 4 alternatives.
The answer should be BIDS, when developing a Reporting Services Project!
IMHO you can not do it in Reporting...
January 24, 2008 at 7:54 am
Actually, there is a 64 bit Oracle provider available from Oracle (OraOLEDB.Oracle.1, see the Connectivity whitepaper).
When implementing ETL packages at a customer however, we found that no performance benefit from...
January 3, 2008 at 2:53 am
OK, you could consider the following:
- use a simple table to hold the last successfull run of each job
- start each job by checking if the necessary jobs have run...
December 19, 2007 at 10:18 am
you might consider a "master package" in which you set the controlflow for the packages to be executed.
In its simplest form: two execute package tasks, with a "success" constraint between...
December 19, 2007 at 4:33 am
Have you checked the SSIS Connectivity whitepaper? They suggest using some ETI component for Bulk inserts to Oracle. See http://download.microsoft.com/download/2/7/c/27cd7357-2649-4035-84af-e9c47df4329c/ConnectivitySSIS.doc#_Toc158373716
If your solution/setup works for a smaller number of...
December 19, 2007 at 3:55 am
It might be that the error occurs in the code that is sent to SSAS, which is XAML if I'm correct. Maybe this code, generated by SSIS and send to...
December 19, 2007 at 3:19 am
Can anyone clarify why this questions is worth 2 points, where similar questions on other subjects are worth 1 point?
Is this because the editors think the subject of encryption is...
December 19, 2007 at 2:48 am
Jan;
You should use variables and expressions to achieve the task you mentioned.
I provided an example package (see attachment) that does the following:
- determine the startdate of the package and use...
December 19, 2007 at 2:30 am
Viewing 15 posts - 76 through 90 (of 102 total)