Viewing 15 posts - 7,801 through 7,815 (of 9,643 total)
Duplicate post. Other one found here: http://www.sqlservercentral.com/Forums/Topic556124-1063-1.aspx
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
August 21, 2008 at 6:30 am
How are you getting the results into the email? Are you attaching query results? Please post your current code. My best guess is that you would have...
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
August 21, 2008 at 6:28 am
Cross post. Please answer here: http://www.sqlservercentral.com/Forums/Topic556171-338-1.aspx
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
August 21, 2008 at 6:27 am
I don't know of any. I'd start by writing the new sp and compare results for Execution plans, statistics io and statistics time. I'm not really a .NET...
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
August 21, 2008 at 6:25 am
What does your execution plan look like? Based on what I can see of the criteria I don't really see a better way. The only thing you might...
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
August 21, 2008 at 6:21 am
As amit has said performance largely depends on design. I don't think, and I have done no testing, that a self-join will perform any better or worse than a...
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
August 21, 2008 at 6:14 am
rbarryyoung (8/21/2008)
I think your response got lost, Jeff.
I think Jeff liked that post he wanted to be able to find it easily in his list of posts.
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
August 21, 2008 at 6:12 am
This is a Running Totals problem. Check out this article, http://www.sqlservercentral.com/articles/Advanced+Querying/61716/.
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
August 21, 2008 at 6:11 am
I like the distributed partitioned views idea as long as there is something valid in the data to partition on.
The simple step is to use an if and query 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
August 21, 2008 at 6:02 am
baumgaertner (8/21/2008)
Sorry, but that doesn't work.A variable is only guilty in a batch.
Right, that's what I get for posting at 3am my time!
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
August 21, 2008 at 5:56 am
Use a variable. Something like:
Declare @success bit
Set @success = 0
If @nsqlver < 9.00304200
begin
print 'Wrong Server Edition'
print ''
print 'Current Serverversion: '
...
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
August 21, 2008 at 1:28 am
Good article Andy. Wish I'd had it a month ago when I was first trying to figure out how to use Execute SQL Task with a result set. ...
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
August 21, 2008 at 12:57 am
pat (8/20/2008)
yeah it is can be one cell but need to know how to fill color for the value of field.Thanks
Huh? So it the rectangle one cell or multiple...
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
August 20, 2008 at 7:25 pm
The screenshot you attached does not really tell us much. Are each of the rectangles a different cell or textbox?
Check out this article, http://www.sqlservercentral.com/articles/Reporting+Services/Santa+gets+an+RDL+present/61782/, I think it may help...
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
August 20, 2008 at 6:36 pm
From BOL:
Diagnosing the Problem
The Database Mail external program logs e-mail activity in the msdb database.
First, use the SQL Server Surface Area Configurationutility to confirm that Database Mail is enabled....
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
August 20, 2008 at 6:25 pm
Viewing 15 posts - 7,801 through 7,815 (of 9,643 total)