Viewing 15 posts - 8,731 through 8,745 (of 14,953 total)
Further analysis:
Variable @last_endtime is declared as char(14), then has various things done to it, and is then converted to numeric and has 1 added to it to add a second...
August 14, 2009 at 2:29 pm
Sorry for the long delay in replying here. I lost track of this one somewhere along the way.
The proc references tables and other procs that you haven't provided definitions...
August 14, 2009 at 2:23 pm
You need to change it to a Left Outer Join from an Inner Join, and you need to move the TransactionType into the join criteria instead of the Where clause.
Inner...
August 14, 2009 at 2:03 pm
I assign it based on fragmentation speed. For static lookup tables, I build them at 100 and then put them in read-only files. Everything else, I have a...
August 14, 2009 at 11:02 am
Actually, if the whole grid fills up without a win, it will loop forever. Didn't spot that.
Needs to have the While clause modified to add:
and (select count(*) from #TicTacToe)...
August 14, 2009 at 9:47 am
This is what I can come up with for Tic-Tac-Toe in SQL:
if object_id(N'tempdb..#TicTacToe') is not null
drop table #TicTacToe ;
if object_id(N'tempdb..#Range') is not null
...
August 14, 2009 at 7:39 am
Given competent players, tic-tac-toe should always end in a draw. The game only works until you actually understand the mechanics.
August 13, 2009 at 2:41 pm
jacroberts (8/13/2009)
GilaMonster (8/13/2009)
August 13, 2009 at 1:53 pm
Jeff Moden (8/11/2009)
timothyawiseman (8/11/2009)
Steve Jones - Editor (8/11/2009)
August 13, 2009 at 1:29 pm
gah (8/11/2009)
Out of interest, how many authors republish their initial articles that address (and/or) correct the various areas raised in the subsequent discussion?
I certainly haven't. However, when I link...
August 13, 2009 at 1:21 pm
sivark1 (8/12/2009)
hi pls tell how to c the o/p of the profiler and what all the perameters will observe in the test or production servers
Huh?
pls give me some tips...
August 13, 2009 at 9:19 am
To print an Execution Plan as a PDF, you first need a PDF-printer. http://www.cutepdf.com has a free one that works pretty well.
Then, display the plan in Management Studio. ...
August 10, 2009 at 2:28 pm
Brad M. McGehee (8/10/2009)
Brad: I have to ask, is there a way for you to fix the title of this thread? The article title is correct, the thread title...
August 10, 2009 at 2:22 pm
Viewing 15 posts - 8,731 through 8,745 (of 14,953 total)