Viewing 15 posts - 151 through 165 (of 183 total)
gsc_dba (7/2/2010)
http://msdn.microsoft.com/en-us/library/ms144726.aspx
Sample:
WITH
SET MySet AS
Extract
(
...
July 2, 2010 at 9:12 am
You will need to create a custom set and then rank that set.
http://msdn.microsoft.com/en-us/library/ms144726.aspx
Sample:
WITH
SET MySet AS
Extract
(
...
July 2, 2010 at 9:08 am
Have you tried this in your SSRS parameter:
="[Country].[Country].&[Australia]"
July 2, 2010 at 3:22 am
Is it not as simple as...
Right Click on Tablix Properties -> Filters -> Add...?
I want to display only the lines that have values in any of the actual budget or...
July 2, 2010 at 3:08 am
Can you please provide the stored procedure?
July 2, 2010 at 2:56 am
Try (tried?) this link:
I have seen this before and turned out to be permissions/group policy for my scenario...:hehe:
June 30, 2010 at 4:06 am
This link should provide you with the examples you are after:
http://msdn.microsoft.com/en-us/library/ex0ss12c%28VS.80%29.aspx
For Windows Server 2008 (x64) you have to run the VS command prompt as administrator (regardless of your own permissions)...
June 30, 2010 at 2:49 am
Hi Andrew,
I googled around: http://searchsqlserver.techtarget.com/tip/Decrypt-encrypted-stored-procedures
As a fellow DBA I would consider using some form of source control for your SQL code.
RedGate http://www.red-gate.com/products/SQL_Source_Control/index.htm have a beta version which I find very...
June 29, 2010 at 10:29 am
Hi,
From my experience of custom components - you will need to register the .dll into the GAC (Global Assembly Cache).
This can be achieved by using GACUtil or Visual Studio command...
June 29, 2010 at 10:06 am
Sample to get you started:
Private bOddRow As Boolean
'*************************************************************************
' -- Display green-bar type color banding in detail rows
' -- Call from BackGroundColor property of all detail row textboxes
' -- Set Toggle...
June 29, 2010 at 9:46 am
I think you need to have a reports solution in VS2005.
Once you have this, add the Data Sources and then to add the reports:
Right click reports...Add...Existing Item -> point to...
June 29, 2010 at 9:41 am
The only way I can perceive this working is to create a custom macro in Excel to effectively "move" sheet2 to sheet1.
The macro would need to sit outside of the...
June 29, 2010 at 9:35 am
Wilfred van Dijk (3/19/2010)
Excellent piece of code! I implemented it to speed-up some Datawarehouse processing routines. Processing time dropped from 500 minutes to 70 minutes! :w00t: :w00t: :w00t:
I am intrigued...
June 17, 2010 at 4:06 am
These tools I find really useful:
http://bidshelper.codeplex.com/
http://www.mosha.com/msolap/mdxstudio.htm">
http://bidshelper.codeplex.com/
http://www.mosha.com/msolap/mdxstudio.htm
As for schedule, I setup the ETL process to "run every hour" with a check (check_sum) to determine if there is...
June 16, 2010 at 10:25 am
If you are using parameters you can utilise a range of dates:
StrToMember(@ProgramStartDate) : StrToMember(@ProgramEndDate)
If not you can use the same syntax:
[Time].[FINANCIAL].[Date].&[2010-05-01 00:00:00] : [Time].[FINANCIAL].[Date].&[2010-05-07 00:00:00]
In your Date Hierarchy, is there...
June 16, 2010 at 10:07 am
Viewing 15 posts - 151 through 165 (of 183 total)