Viewing 15 posts - 24,586 through 24,600 (of 26,490 total)
I'm not sure if there is much more that could be done to improve your query. As I was trying to reformat it into a more readable form I...
June 23, 2008 at 4:15 pm
And, if memory serves, this same topic has come up in other threads about "bad questions" and the reply I vaguely remember from Steve Jones was that there used to...
June 23, 2008 at 3:48 pm
A) The author has admitted the mistake and that option 2 is the only correct option.
B) I think enough people have hammered this point on this thread, and it would...
June 23, 2008 at 3:07 pm
HyperBac (from HyperBac) is $699 USD per server.
😎
June 20, 2008 at 11:20 am
Your solution works, based on what we have from the OP, but why all the extra work setting up and using temporary tables?
😎
June 18, 2008 at 2:11 am
bhovious (6/17/2008)
June 17, 2008 at 2:10 pm
David Webb (6/17/2008)
June 17, 2008 at 1:56 pm
Just a thought. When I was working with SQL Server 2000 at my last emploer, I had SQL Server 2000 Personal Edition loaded on my desktop system. It...
June 17, 2008 at 1:35 pm
It could also be parameter sniffing. One thing I have done that seemed to help some of my stored procedures is to declare local variables inside the stored procedure...
June 17, 2008 at 1:23 pm
Just to expand on Jeff's post a little. Buying the Developers Edition of SQL Server not only gives you access to all the features of the Enterprise Edition, you...
June 17, 2008 at 11:53 am
Jeff,
You should not get upset anyway. Just do what you have done, mentor those who come ask for help. You have helped me learn better ways to do...
June 16, 2008 at 11:46 pm
Jeff Moden (6/16/2008)
June 16, 2008 at 10:51 pm
Here is another solution:
/*objects and test data*/
create table dbo.table1(name varchar(10), code int, last_code int);
insert into dbo.table1 values ('MC1',100,NULL);
insert into dbo.table1 values ('MC2',200,NULL);
insert into dbo.table1 values ('MC3',250,NULL);
insert into dbo.table1 values ('MC4',300,NULL);
insert...
June 16, 2008 at 9:35 am
put more good people on the project. If you don't have those people, then you've overstated your abilities in the bidding process and need to be punished.
I am a...
June 16, 2008 at 9:19 am
Here's part of the problem with "right". What to me was well written performant code, still could have been written better today because of the things I have learned...
June 14, 2008 at 10:11 pm
Viewing 15 posts - 24,586 through 24,600 (of 26,490 total)