Viewing 15 posts - 376 through 390 (of 479 total)
WILLIAM MITCHELL (4/24/2008)
I agree, the worst questions generate the best discussions.BTW that Express trace flag was originally undocumented, until the msdn article was updated 14 April 2006.
Does anyone have a...
April 25, 2008 at 5:34 am
I agree with the people who say that "by default" only allows answers "yes" or "no", but by giving 2 other options, I think most people would ignore the prefix...
April 24, 2008 at 4:19 am
Rajan John (4/18/2008)
April 18, 2008 at 3:59 am
Kelsey Thornton (4/18/2008)
come on, Derek. 😉Why would you try running a query about system objects in a database other than master?
Habit. 🙂
Novices start by firing up SSMS and running every...
April 18, 2008 at 2:38 am
Mike Dougherty (4/17/2008)
...
I think if we're going to be challenged with writing different SQL, it should be to produce more...
April 18, 2008 at 1:56 am
"select * from sysprocesses" works in 'master'. In any other database I need "select * from sys.sysprocesses". SSMS only highlights it if it's got the sys prefix.
April 18, 2008 at 1:37 am
I also found that you can't just query sysprocesses (unlike sysobjects), you have to specify sys.sysprocesses.
April 17, 2008 at 9:09 am
For info, I analysed some of our data by number of statuses a document went through and then added a '% time' based on the assumption that the time was...
April 17, 2008 at 5:14 am
Matt Miller (4/16/2008)
April 16, 2008 at 11:30 am
There was an error here...
rbarryyoung (4/15/2008)
Join #t B ON ( a.id=b.id and a.date b.st
What should the line have been?
April 16, 2008 at 7:39 am
I ran some tests measuring the elapsed (from datediff(ms,,getdate())) and cpu (from @@cpu_busy*@@timeticks) times on both my laptop and the server where this application resides.
I generated 500,000 series which generated...
April 16, 2008 at 5:09 am
Jeff Moden (4/15/2008)
April 15, 2008 at 10:29 am
I created a couple of test queries using the real data based on Peso's method and using row_number().
After several tests, Peso's method was fractionally faster (41015ms) than the triangular/diagonal join...
April 15, 2008 at 9:40 am
John Portnov (4/15/2008)
April 15, 2008 at 7:26 am
Robert (4/15/2008)
If the...
April 15, 2008 at 5:31 am
Viewing 15 posts - 376 through 390 (of 479 total)