<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Server Side Trace | Varinder Sandhu</title>
	<atom:link href="https://varindersandhu.in/tag/server-side-trace/feed/" rel="self" type="application/rss+xml" />
	<link>https://varindersandhu.in</link>
	<description>Keep it Simple and Smart</description>
	<lastBuildDate>Tue, 14 May 2013 11:12:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>

<image>
	<url>https://varindersandhu.in/wp-content/uploads/2020/05/varindersandhu_favicon.ico</url>
	<title>Server Side Trace | Varinder Sandhu</title>
	<link>https://varindersandhu.in</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">22788835</site>	<item>
		<title>SQL Server &#8211; Stop/Close a Server-Side Trace</title>
		<link>https://varindersandhu.in/2011/11/11/sql-server-stop-close-a-server-side-trace/</link>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Fri, 11 Nov 2011 07:40:22 +0000</pubDate>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-Advanced]]></category>
		<category><![CDATA[SQL-Performance]]></category>
		<category><![CDATA[SQL-Tips and Tricks]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[Server Side Trace]]></category>
		<category><![CDATA[sp_trace_setstatus]]></category>
		<category><![CDATA[SQL Server]]></category>
		<guid isPermaLink="false">http://www.varindersandhu.in/?p=1961</guid>

					<description><![CDATA[<p>This function “sp_trace_setstatus” modifies the current state of the specified trace. Syntax sp_trace_setstatus [ @traceid = ] trace_id , [ @status = ] status Example --See the Ruuning trace SELECT * FROM ::fn_trace_getinfo(NULL) -- Stop thr Running Trace EXEC sp_trace_setstatus @traceid = 1 , @status = 0 -- Delete the</p>
<p>The post <a href="https://varindersandhu.in/2011/11/11/sql-server-stop-close-a-server-side-trace/">SQL Server – Stop/Close a Server-Side Trace</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1961</post-id>	</item>
		<item>
		<title>SQL Server – Find the expensive queries with Server Side Trace</title>
		<link>https://varindersandhu.in/2011/11/10/sql-server-find-the-expensive-queries-with-server-side-trace/</link>
					<comments>https://varindersandhu.in/2011/11/10/sql-server-find-the-expensive-queries-with-server-side-trace/#comments</comments>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Thu, 10 Nov 2011 07:32:44 +0000</pubDate>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-Advanced]]></category>
		<category><![CDATA[SQL-Performance]]></category>
		<category><![CDATA[SQL-Tips and Tricks]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[Expensive Queries]]></category>
		<category><![CDATA[Server Side Trace]]></category>
		<guid isPermaLink="false">http://www.varindersandhu.in/?p=1938</guid>

					<description><![CDATA[<p>With the help of this post sharing with you the procedure to find the expensive queries with Server Side trace. First we see how to create a server side trace script. Run the Profiler Trace as mentioned here Go to the File &#62;&#62; Export &#62;&#62; Script Trace Definition &#62;&#62; For</p>
<p>The post <a href="https://varindersandhu.in/2011/11/10/sql-server-find-the-expensive-queries-with-server-side-trace/">SQL Server – Find the expensive queries with Server Side Trace</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
					<wfw:commentRss>https://varindersandhu.in/2011/11/10/sql-server-find-the-expensive-queries-with-server-side-trace/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1938</post-id>	</item>
		<item>
		<title>SQL Server &#8211; Profiler Trace Vs Server Side Trace</title>
		<link>https://varindersandhu.in/2011/11/07/sql-server-profiler-trace-vs-server-side-trace/</link>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Mon, 07 Nov 2011 05:07:02 +0000</pubDate>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-Advanced]]></category>
		<category><![CDATA[SQL-Performance]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[Profiler Trace]]></category>
		<category><![CDATA[Server Side Trace]]></category>
		<guid isPermaLink="false">http://www.varindersandhu.in/?p=1917</guid>

					<description><![CDATA[<p>Profiler Trace Profiler Trace using the standard default template supplied by SQL Server with SQL Profiler. SQL Profiler running on a client machine and it is connected to the SQL Server instance over the network. Server Side Trace The Script is used to create Server Side Trace. You can generate for</p>
<p>The post <a href="https://varindersandhu.in/2011/11/07/sql-server-profiler-trace-vs-server-side-trace/">SQL Server – Profiler Trace Vs Server Side Trace</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1917</post-id>	</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Page Caching using Disk: Enhanced 
Database Caching 19/123 queries in 0.030 seconds using Disk (Request-wide modification query)

Served from: varindersandhu.in @ 2025-10-30 14:38:33 by W3 Total Cache
-->