Viewing 15 posts - 5,326 through 5,340 (of 9,643 total)
What version of SSRS are you using? I don't have an InitialToggleItem Property on a row in a table using 2005.
I am attaching a report that uses a Parameter...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 20, 2009 at 8:28 am
What is the behavior you are seeing in Report Manager?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 20, 2009 at 7:43 am
While not perfect try using the IsNumeric Function, check out the BOL Entry for it. So your query could be this:
SELECT
CONVERT(decimal(5,2),value)
from
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 20, 2009 at 7:35 am
Bob Hovious (4/20/2009)
Although I have no preference, aren't they using VB with SSIS?
In 2005 yes, but in 2008 you can use C# as well. My current work place is...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 20, 2009 at 7:06 am
I'd never considered copyright issues when googling code, getting scripts from sites like SSC or blogs, or posting code to SSC, on my blog, or to the SQL Server Code...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 18, 2009 at 8:44 pm
Lynn Pettis (4/17/2009)
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 17, 2009 at 5:20 pm
Lynn Pettis (4/17/2009)
But sometimes you just have to get in there and beat some heads with that quarter staff. It ain't just for walking you know.
Which is why I...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 17, 2009 at 5:01 pm
bruce.trimpop (4/17/2009)
GSquared (4/17/2009)
I can't imagine a single other professional field where people would actually defend the practice of "we don't do it right, because we can't be bothered to learn...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 17, 2009 at 4:56 pm
Like we all haven't done the same thing a hundred times. That's what the extra set of eyes is for.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 17, 2009 at 8:35 am
Thanks for the kind works guys.
I don't know that "Brilliant" should be used, but I'll take it. 😀
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 17, 2009 at 8:19 am
You could have the first step in your SSIS package Drop all the FK's and then finish the package with a step that re-applies them.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 17, 2009 at 8:18 am
Well if the code you posted is the exact code you used then your problem is that you are missing the '@' sign before OutPutFileName in the sp_trace_create call here's...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 17, 2009 at 8:16 am
I changed your expression to use Switch which I think is easier to read and it looks okay to me:
=Switch(Parameters!Report_Parameter_AR.Value = "" AND Parameters!Report_Parameter_State.Value = "", False,
Fields!AR.Value = Parameters!Report_Parameter_AR.Value...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 17, 2009 at 8:12 am
I'd just get rid of the filter that filters out Profiler. That is just there so that the Profiler GUI doesn't trace it's own activity. That will eliminate...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 17, 2009 at 8:01 am
You need to use either a table or list control. I am attaching a simple example using a table and the AdventureWorks database.
Basically I created a group on the...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 17, 2009 at 7:51 am
Viewing 15 posts - 5,326 through 5,340 (of 9,643 total)