﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / SQL Server 2008 / SQL Server 2008 Administration  / view default trace file in SQL profiler / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Tue, 21 May 2013 09:51:01 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: view default trace file in SQL profiler</title><link>http://www.sqlservercentral.com/Forums/Topic1410865-1550-1.aspx</link><description>Thanks all.Yes that's what I found too, I am using 2008, and it prompts if I want to open rollover files. And I see a Find button that is not very helpful to search.I think I will use T_SQL then.Thanks</description><pubDate>Thu, 24 Jan 2013 09:32:25 GMT</pubDate><dc:creator>sqlfriends</dc:creator></item><item><title>RE: view default trace file in SQL profiler</title><link>http://www.sqlservercentral.com/Forums/Topic1410865-1550-1.aspx</link><description>In addition to what Gail said, here is a simple script to Read from the default trace[code="sql"]DECLARE @path NVARCHAR(260);SELECT @path = REVERSE(SUBSTRING(REVERSE([path]),  CHARINDEX('\', REVERSE([path])), 260)) + N'log.trc'  FROM sys.traces WHERE is_default = 1;  SELECT *	FROM ::fn_trace_gettable(@path,DEFAULT)[/code]</description><pubDate>Thu, 24 Jan 2013 00:09:43 GMT</pubDate><dc:creator>SQLRNNR</dc:creator></item><item><title>RE: view default trace file in SQL profiler</title><link>http://www.sqlservercentral.com/Forums/Topic1410865-1550-1.aspx</link><description>Much easier to use fn_trace_gettable and then filter within SQL. The profiler GUI's a pain to filter, sort and search in.</description><pubDate>Wed, 23 Jan 2013 23:36:32 GMT</pubDate><dc:creator>GilaMonster</dc:creator></item><item><title>RE: view default trace file in SQL profiler</title><link>http://www.sqlservercentral.com/Forums/Topic1410865-1550-1.aspx</link><description>In SQL 2005 &amp; 2008, Under SQL Profiler Options there should be a radio button under "File Rollover Options" to say "Prompt before loading rollover files".  And yes, there is also a way to filter and search through the trace file itself - click on the "find" icon, or press [b]Ctrl-F[/b]</description><pubDate>Wed, 23 Jan 2013 19:40:50 GMT</pubDate><dc:creator>MyDoggieJessie</dc:creator></item><item><title>RE: view default trace file in SQL profiler</title><link>http://www.sqlservercentral.com/Forums/Topic1410865-1550-1.aspx</link><description>What version of Profiler are you using? I get a popup asking me if I want to open the next Rollover file.I'm using Profiler from SQL 2008 R2.Leo</description><pubDate>Wed, 23 Jan 2013 19:34:44 GMT</pubDate><dc:creator>Leo.Miller</dc:creator></item><item><title>view default trace file in SQL profiler</title><link>http://www.sqlservercentral.com/Forums/Topic1410865-1550-1.aspx</link><description>If I open the default trace log in sql server profiler to view.It opens all the rollover files in one &amp;#119;indow.Is there a way that I can filter out the records by some criteria?I don't see an option, I can see a find... option, but it is not very helpful.</description><pubDate>Wed, 23 Jan 2013 18:42:47 GMT</pubDate><dc:creator>sqlfriends</dc:creator></item></channel></rss>