<?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>SQL SERVER 2008 | Varinder Sandhu</title>
	<atom:link href="https://varindersandhu.in/tag/sql-server-2008/feed/" rel="self" type="application/rss+xml" />
	<link>https://varindersandhu.in</link>
	<description>Keep it Simple and Smart</description>
	<lastBuildDate>Tue, 14 May 2013 13:12:31 +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>SQL SERVER 2008 | 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 – Location of Installation Log file</title>
		<link>https://varindersandhu.in/2011/08/03/sql-server-location-of-installation-log-file/</link>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Wed, 03 Aug 2011 06:47:06 +0000</pubDate>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-Advanced]]></category>
		<category><![CDATA[SQL-General]]></category>
		<category><![CDATA[SQL-Tips and Tricks]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[Installation Log file]]></category>
		<category><![CDATA[SQL SERVER 2008]]></category>
		<guid isPermaLink="false">http://www.varindersandhu.in/?p=1406</guid>

					<description><![CDATA[<p>A few times we were trying to locate the installation log file folder if we faced any issue or problem while installation of SQL Server. Basically, we want to know reason of issue or problem. So location of Log file folder as below SQL Server 2008 and 2008 R2 %programfiles%\Microsoft</p>
<p>The post <a href="https://varindersandhu.in/2011/08/03/sql-server-location-of-installation-log-file/">SQL Server – Location of Installation Log file</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1406</post-id>	</item>
		<item>
		<title>SQL Server &#8211; Check the compatibility level of a database</title>
		<link>https://varindersandhu.in/2011/07/24/sql-server-check-the-compatibility-level-of-a-database/</link>
					<comments>https://varindersandhu.in/2011/07/24/sql-server-check-the-compatibility-level-of-a-database/#comments</comments>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Sun, 24 Jul 2011 11:27:44 +0000</pubDate>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-Advanced]]></category>
		<category><![CDATA[SQL-Tips and Tricks]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[Database Compatible Level]]></category>
		<category><![CDATA[sp_dbcmptlevel]]></category>
		<category><![CDATA[SQL SERVER 2008]]></category>
		<guid isPermaLink="false">http://www.varindersandhu.in/?p=1378</guid>

					<description><![CDATA[<p>You can check the compatibility of a database simply by running the below sql command. sp_dbcmptlevel &#039;Database_Name&#039; Read more about sp_dbcmptlevel Values of compatibility levels and their corresponding MS SQL Server versions 60 = SQL Server 6.0 65 = SQL Server 6.5 70 = SQL Server 7.0 80 = SQL</p>
<p>The post <a href="https://varindersandhu.in/2011/07/24/sql-server-check-the-compatibility-level-of-a-database/">SQL Server – Check the compatibility level of a database</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
					<wfw:commentRss>https://varindersandhu.in/2011/07/24/sql-server-check-the-compatibility-level-of-a-database/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1378</post-id>	</item>
		<item>
		<title>SQL SERVER 2008 – Enable xp_cmdshell</title>
		<link>https://varindersandhu.in/2011/01/09/sql-server-2008-enable-xp_cmdshell/</link>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Sun, 09 Jan 2011 04:58:13 +0000</pubDate>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-Query]]></category>
		<category><![CDATA[SQL-Scripts]]></category>
		<category><![CDATA[SQL-Tips and Tricks]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[SQL SERVER 2008]]></category>
		<category><![CDATA[xp_cmdshell]]></category>
		<guid isPermaLink="false">http://theitarticles.wordpress.com/?p=396</guid>

					<description><![CDATA[<p>&#8212;  To allow advanced options to be changed EXEC sp_configure ‘show advanced options’, 1 GO —- To update the currently configured value for advanced options. RECONFIGURE GO —- To enable the feature. EXEC sp_configure ‘xp_cmdshell’, 1 GO —- To update the currently configured value for this feature. RECONFIGURE GO Alternative way 1. Click the Start button. 2. Select All Programs. 3. Navigate to the Microsoft SQL Server 2008 folder. 4. Right Click on Server</p>
<p>The post <a href="https://varindersandhu.in/2011/01/09/sql-server-2008-enable-xp_cmdshell/">SQL SERVER 2008 – Enable xp_cmdshell</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">396</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 23/119 queries in 0.019 seconds using Disk

Served from: varindersandhu.in @ 2025-10-30 13:51:24 by W3 Total Cache
-->