Viewing 15 posts - 16 through 30 (of 374 total)
Chris Howarth-536003 (5/12/2010)
[url=During startup SQL Server attempts to...
May 12, 2010 at 11:29 am
Now I am really puzzled.
Well, the whole thing has to do with the OS timer. When I bumped into the 16 ms precision of getdate() over a year ago...
May 12, 2010 at 7:52 am
SQLZ (5/12/2010)
The worst part about it is you would have not given the job to someone who correctly responded with 3.3ms for...
May 12, 2010 at 7:25 am
Wow.
I did not expect to get so many posts before I even show up for work.
Looking at all the replies, one potential explanation for some of the 'better'...
May 12, 2010 at 7:19 am
Software is like a Cathedral. You build it… you build it… you build it…
And then you pray…
May 10, 2010 at 9:34 am
Jeff Moden (4/12/2010)
April 12, 2010 at 8:29 am
Try this:
SELECT B.GroupName
FROM test A
INNER JOIN test B ON A.FieldName = B.FieldName
AND A.FieldValue = B.FieldValue
AND A.GroupName <> B.GroupName
WHERE A.GroupName = 'Group1'
AND B.GroupName NOT IN (
SELECT B.GroupName
FROM test A
RIGHT OUTER JOIN...
December 11, 2009 at 2:29 pm
1. To send MSMQ messages (originally it was a SQL2000 extended SP written in C)
2. SQL Server could't do it natively.
3. Yes
4. Accessing resources not available directly to SQL Server....
December 11, 2009 at 1:37 pm
Many years ago I had similar problem with SQL Server 7. After installing SP3 the application using the server basically stopped to work. The response times were so slow the...
December 4, 2009 at 12:14 pm
itskumar2004 (12/2/2009)
December 4, 2009 at 11:56 am
Unfortunately this is the trend - keep packing more stuff into the tools - so you can keep selling them over and over again. If you create something that works...
December 4, 2009 at 8:49 am
To stop the trace use sp_trace_setstatus @traceID, 0
To delete the trace definition use sp_trace_setstatus @traceID, 2
The @traceID is the ID you got when you run the code provided in the...
December 2, 2009 at 11:59 am
G33kKahuna (12/2/2009)
Jacek, Giving you a hard time was not my intention. When you post an article with a title "Using Server Side Traces for Dynamic Performance Evaluation" but offer up...
December 2, 2009 at 9:24 am
TheSQLGuru (12/1/2009)
I have been doing this type of analysis for a decade now, but have never done the execution histogram like you have done with the case...
December 2, 2009 at 7:31 am
Tommy,
Thanks for stepping in in defence of the article. I am very pleased someone found it useful.
Fortunately this is an open forum so everyone can express their opinions. It happens...
December 2, 2009 at 7:23 am
Viewing 15 posts - 16 through 30 (of 374 total)