Viewing 15 posts - 76 through 90 (of 1,155 total)
David Dye (1/6/2009)
Great work Adam. Clear, concise, and detailed.Thanks
Thanks David 🙂
January 6, 2009 at 7:50 am
tymberwyld (1/6/2009)
thierry.vandurme (1/6/2009)
January 6, 2009 at 7:35 am
cetin (1/6/2009)
User A retrieves first page (rows 1-25 in name order)
User B deletes one...
January 6, 2009 at 6:06 am
jctrelfa (1/6/2009)
DECLARE @max_id INT
SET @max_id = (SELECT max(contactid) FROM [Adventureworks].[Person].[Contact])
INSERT INTO Contacts
SELECT TOP 1000000 --<<<--THE NUMBER OF...
January 6, 2009 at 5:55 am
So to verify/recap, the default action for SQL Server is to start a new trace file each time it's rebooted and it keeps at max 3 trc files. That...
November 13, 2008 at 1:47 pm
Carla Wilson (11/12/2008)
Adam Haines (11/12/2008)
This type of query can be handled much easier in SQL 2005, but I would still try to avoid a correlated subquery in SQL 2000....
November 12, 2008 at 8:09 am
Good article!
This type of query can be handled much easier in SQL 2005, but I would still try to avoid a correlated subquery in SQL 2000. You can move...
November 12, 2008 at 7:37 am
Sounds like you have a very active server. The default trace will only maintain 5 trace files at a time. I believe your issue is that you can only...
November 11, 2008 at 10:17 pm
YSLGuru (11/11/2008)
Oustanding article; gives what users really want! Interesting question though, any thoughts as to why one may have Default trace data going back only a few days even...
November 11, 2008 at 5:38 pm
Marcia Q (11/11/2008)
Does anyone have any suggestions as to why my default trace doesn't show up? ...
November 11, 2008 at 4:59 pm
Brian Strickland (11/11/2008)
November 11, 2008 at 4:59 pm
Brian Strickland (11/11/2008)
November 11, 2008 at 4:47 pm
Jack,
Thanks for the BOL quote. I find it somewhat amusing that MS states that sys.traces should be used instead of fn_get_trace_info on the sys.traces page; however, on the fn_trace_getinfo...
November 11, 2008 at 7:30 am
Mark Horninger (11/11/2008)
Adam,Well done! Is the default trace enabled by default?
Mark
Yes, you have to tell SQL to explicitly turn off this feature by issuing the sp_configure command.
November 11, 2008 at 6:48 am
Dee (11/11/2008)
I like it, but what's the cost of running this on a production server?
I cant really say what the exact cost is because the cost is dependent on multiple...
November 11, 2008 at 6:44 am
Viewing 15 posts - 76 through 90 (of 1,155 total)