Mar 5, 2008 #1 bikerboy718 Programmer Joined Feb 11, 2005 Messages 195 Location US Is there a way for me to tell if a trace is being run on a sql server? With Great Power Comes Great Responsibility!!! Michael
Is there a way for me to tell if a trace is being run on a sql server? With Great Power Comes Great Responsibility!!! Michael
Mar 5, 2008 #2 ptheriault IS-IT--Management Joined Aug 28, 2006 Messages 2,699 Location US If it's sql 2005 by default it is always running a trace. Check the log folder of your install directory. - Paul - If at first you don't succeed, find out if the loser gets anything. Upvote 0 Downvote
If it's sql 2005 by default it is always running a trace. Check the log folder of your install directory. - Paul - If at first you don't succeed, find out if the loser gets anything.
Mar 5, 2008 1 #3 mrdenny Programmer Joined May 27, 2002 Messages 11,595 If SQL 2005 you can view the running traces using the sys.traces DMV. Code: select * from sys.traces Denny MCSA (2003) / MCDBA (SQL 2000) MCTS (SQL 2005 / Microsoft Windows SharePoint Services 3.0: Configuration / Microsoft Office SharePoint Server 2007: Configuration) MCITP Database Administrator (SQL 2005) / Database Developer (SQL 2005) My Blog Upvote 0 Downvote
If SQL 2005 you can view the running traces using the sys.traces DMV. Code: select * from sys.traces Denny MCSA (2003) / MCDBA (SQL 2000) MCTS (SQL 2005 / Microsoft Windows SharePoint Services 3.0: Configuration / Microsoft Office SharePoint Server 2007: Configuration) MCITP Database Administrator (SQL 2005) / Database Developer (SQL 2005) My Blog
Mar 12, 2008 Thread starter #4 bikerboy718 Programmer Joined Feb 11, 2005 Messages 195 Location US Thanks mrdenny. That was exactly what I was looking for. With Great Power Comes Great Responsibility!!! Michael Upvote 0 Downvote
Thanks mrdenny. That was exactly what I was looking for. With Great Power Comes Great Responsibility!!! Michael