Viewing 15 posts - 7,801 through 7,815 (of 9,641 total)
Cross post. Please answer here: http://www.sqlservercentral.com/Forums/Topic556171-338-1.aspx
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...
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...
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...
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.
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/.
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...
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!
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: '
...
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. ...
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...
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...
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....
August 20, 2008 at 6:25 pm
Glad I could help.
Just a little tip, you should share what you are really trying to do, unless doing that would violate some policy at your office. Then just...
August 20, 2008 at 2:53 pm
Carl Federl (8/20/2008)
August 20, 2008 at 2:49 pm
Viewing 15 posts - 7,801 through 7,815 (of 9,641 total)