<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Journey to SQL Authority with Pinal Dave</title>
	<atom:link href="http://blog.sqlauthority.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com</link>
	<description>Notes of a SQL Server MVP and Database Administrator</description>
	<pubDate>Sat, 22 Nov 2008 01:30:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SQL SERVER - Simple Use of Cursor to Print All Stored Procedures of Database Including Schema</title>
		<link>http://blog.sqlauthority.com/2008/11/22/sql-server-simple-use-of-cursor-to-print-all-stored-procedures-of-database-including-schema/</link>
		<comments>http://blog.sqlauthority.com/2008/11/22/sql-server-simple-use-of-cursor-to-print-all-stored-procedures-of-database-including-schema/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 01:30:07 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[Author Pinal]]></category>

		<category><![CDATA[Database]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Documentation]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Scripts]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Stored Procedure]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1550</guid>
		<description><![CDATA[I love active participation from my readers. Just a day ago I wrote article about SQL SERVER - Simple Use of Cursor to Print All Stored Procedures of Database. I just received comment from Jerry Hung who have improved on previously written article of generating text of Stored Procedure.
DECLARE @procName VARCHAR(100)
DECLARE @getprocName CURSOR
SET @getprocName = CURSOR FOR
SELECT [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I love active participation from my readers. Just a day ago I wrote article about <strong><a href="http://blog.sqlauthority.com/2008/11/20/sql-server-simple-use-of-cursor-to-print-all-stored-procedures-of-database/" target="_blank">SQL SERVER - Simple Use of Cursor to Print All Stored Procedures of Database</a></strong>. I just received comment from <a href="http://sqlauthority.wordpress.com/wp-admin/comment.php?action=editcomment&amp;c=44313" target="_blank">Jerry Hung</a> who have improved on previously written article of generating text of Stored Procedure.</p>
<p><code style="font-size:12px;"><span style="color:blue;">DECLARE </span><span style="color:#434343;">@procName </span><span style="color:blue;">VARCHAR</span><span style="color:gray;">(</span><span style="color:black;">100</span><span style="color:gray;">)<br />
</span><span style="color:blue;">DECLARE </span><span style="color:#434343;">@getprocName </span><span style="color:blue;">CURSOR<br />
SET </span><span style="color:#434343;">@getprocName </span><span style="color:blue;">= CURSOR FOR<br />
SELECT </span><span style="color:black;">Name </span><span style="color:blue;">= </span><span style="color:red;">&#8216;[' </span><span style="color:gray;">+ </span><span style="color:black;">SCHEMA_NAME</span><span style="color:gray;">(</span><span style="color:black;">SCHEMA_ID</span><span style="color:gray;">) + </span><span style="color:red;">'].[' </span><span style="color:gray;">+ </span><span style="color:black;">Name </span><span style="color:gray;">+ </span><span style="color:red;">']&#8216;<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">sys.all_objects </span><span style="color:blue;">WHERE </span><span style="color:black;">TYPE </span><span style="color:blue;">= </span><span style="color:red;">&#8216;P&#8217;<br />
</span><span style="color:gray;">AND </span><span style="color:black;">is_ms_shipped 1</p>
<p></span><span style="color:blue;">OPEN </span><span style="color:#434343;">@getprocName<br />
</span><span style="color:blue;">FETCH </span><span style="color:black;">NEXT<br />
</span><span style="color:blue;">FROM </span><span style="color:#434343;">@getprocName </span><span style="color:blue;">INTO </span><span style="color:#434343;">@procName<br />
</span><span style="color:blue;">WHILE </span><span style="color:#434343;">@@FETCH_STATUS </span><span style="color:blue;">= </span><span style="color:black;">0<br />
</span><span style="color:blue;">BEGIN</p>
<p>PRINT </span><span style="color:red;">&#8217;sp_HelpText &#8217; </span><span style="color:gray;">+ </span><span style="color:#434343;">@procName<br />
</span><span style="color:blue;">EXEC </span><span style="color:darkred;">sp_HelpText </span><span style="color:#434343;">@procName</p>
<p></span><span style="color:blue;">FETCH </span><span style="color:black;">NEXT </span><span style="color:blue;">FROM </span><span style="color:#434343;">@getprocName </span><span style="color:blue;">INTO </span><span style="color:#434343;">@procName<br />
</span><span style="color:blue;">END</p>
<p>CLOSE </span><span style="color:#434343;">@getprocName<br />
</span><span style="color:blue;">DEALLOCATE </span><span style="color:#434343;">@getprocName<br />
</span><span style="color:black;">GO</span></code></p>
<p>Reference : <strong>Pinal Dave (<a href="http://www.SQLAuthority.com" target="_blank">http://www.SQLAuthority.com</a>)</strong></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1550/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1550&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/22/sql-server-simple-use-of-cursor-to-print-all-stored-procedures-of-database-including-schema/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLAuthority News - SQL Server White Paper: SQL Server 2008 Compliance Guide</title>
		<link>http://blog.sqlauthority.com/2008/11/21/sqlauthority-news-sql-server-white-paper-sql-server-2008-compliance-guide/</link>
		<comments>http://blog.sqlauthority.com/2008/11/21/sqlauthority-news-sql-server-white-paper-sql-server-2008-compliance-guide/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 01:30:57 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Documentation]]></category>

		<category><![CDATA[SQL Download]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[SQLAuthority News]]></category>

		<category><![CDATA[Software Development]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1547</guid>
		<description><![CDATA[Organizations across the globe are being inundated with regulatory requirements. They also have a strong need to better manage their IT systems to ensure they are operating efficiently and staying secure. Microsoft is often asked to provide guidance and technology to assist organizations struggling with compliance. The SQL Server 2008 Compliance Guidance white paper was [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span>Organizations across the globe are being inundated with regulatory requirements. They also have a strong need to better manage their IT systems to ensure they are operating efficiently and staying secure. Microsoft is often asked to provide guidance and technology to assist organizations struggling with compliance. The SQL Server 2008 Compliance Guidance white paper was written to help organizations and individuals understand how to use the features of the Microsoft SQL Server 2008 database software to address their compliance needs. This paper serves as an accompaniment to the SQL Server 2008 compliance software development kit (SDK), which provides sample code and guidance for understanding SQL Server 2008 compliance features and using them for developing solutions.</span></p>
<h2 style="text-align:center;"><span><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6e1021dd-65b9-41c2-8385-438028f5acc2&amp;DisplayLang=en" target="_blank"><strong>Download White Paper</strong></a><br />
</span></h2>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1547/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1547/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1547/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1547/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1547/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1547/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1547/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1547/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1547/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1547/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1547&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/21/sqlauthority-news-sql-server-white-paper-sql-server-2008-compliance-guide/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER - Simple Use of Cursor to Print All Stored Procedures of Database</title>
		<link>http://blog.sqlauthority.com/2008/11/20/sql-server-simple-use-of-cursor-to-print-all-stored-procedures-of-database/</link>
		<comments>http://blog.sqlauthority.com/2008/11/20/sql-server-simple-use-of-cursor-to-print-all-stored-procedures-of-database/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 01:30:12 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[Author Pinal]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Cursor]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Scripts]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Stored Procedure]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1544</guid>
		<description><![CDATA[SQLAuthority Blog reader YordanGeorgiev has submitted very interesting SP, which uses cursor to generate text of all the Stored Procedure of current Database. This task can be done many ways, however, this is also interesting method.
USE AdventureWorks
GO
DECLARE @procName VARCHAR(100)
DECLARE @getprocName CURSOR
SET @getprocName = CURSOR FOR
SELECT s.name
FROM sysobjects s
WHERE type = &#8216;P&#8217;
OPEN @getprocName
FETCH NEXT
FROM @getprocName INTO @procName
WHILE @@FETCH_STATUS = [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>SQLAuthority Blog reader <a href="http://blog.sqlauthority.com/2007/01/01/sql-server-simple-example-of-cursor/#comment-44238" target="_blank">YordanGeorgiev </a>has submitted very interesting SP, which uses cursor to generate text of all the Stored Procedure of current Database. This task can be done many ways, however, this is also interesting method.</p>
<p><code style="font-size:12px;"><span style="color:blue;">USE </span><span style="color:black;">AdventureWorks<br />
GO<br />
</span><span style="color:blue;">DECLARE </span><span style="color:#434343;">@procName </span><span style="color:blue;">VARCHAR</span><span style="color:gray;">(</span><span style="color:black;">100</span><span style="color:gray;">)<br />
</span><span style="color:blue;">DECLARE </span><span style="color:#434343;">@getprocName </span><span style="color:blue;">CURSOR<br />
SET </span><span style="color:#434343;">@getprocName </span><span style="color:blue;">= CURSOR FOR<br />
SELECT </span><span style="color:black;">s.name<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">sysobjects s<br />
</span><span style="color:blue;">WHERE </span><span style="color:black;">type </span><span style="color:blue;">= </span><span style="color:red;">&#8216;P&#8217;<br />
</span><span style="color:blue;">OPEN </span><span style="color:#434343;">@getprocName<br />
</span><span style="color:blue;">FETCH </span><span style="color:black;">NEXT<br />
</span><span style="color:blue;">FROM </span><span style="color:#434343;">@getprocName </span><span style="color:blue;">INTO </span><span style="color:#434343;">@procName<br />
</span><span style="color:blue;">WHILE </span><span style="color:#434343;">@@FETCH_STATUS </span><span style="color:blue;">= </span><span style="color:black;">0<br />
</span><span style="color:blue;">BEGIN<br />
EXEC </span><span style="color:darkred;">sp_HelpText </span><span style="color:#434343;">@procName<br />
</span><span style="color:blue;">FETCH </span><span style="color:black;">NEXT<br />
</span><span style="color:blue;">FROM </span><span style="color:#434343;">@getprocName </span><span style="color:blue;">INTO </span><span style="color:#434343;">@procName<br />
</span><span style="color:blue;">END<br />
CLOSE </span><span style="color:#434343;">@getprocName<br />
</span><span style="color:blue;">DEALLOCATE </span><span style="color:#434343;">@getprocName<br />
</span><span style="color:black;">GO </span></code></p>
<p><span style="color:black;">Just give this script a try and it will print text of all the SP in your database. If you are using Grid View for Result Pan I suggest to change it to Text View (CTRL+T) to read the text easily.</span></p>
<p><span style="color:black;">Reference : <strong>Pinal Dave (<a href="http://blog.sqlauthority.com" target="_blank">http://blog.sqlauthority.com</a>)</strong><br />
</span></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1544/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1544/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1544/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1544/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1544/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1544/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1544/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1544/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1544/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1544/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1544&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/20/sql-server-simple-use-of-cursor-to-print-all-stored-procedures-of-database/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLAuthority News - Author Visit - South Asia MVP Open Day 2008 - Goa - Group Photo</title>
		<link>http://blog.sqlauthority.com/2008/11/19/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-group-photo/</link>
		<comments>http://blog.sqlauthority.com/2008/11/19/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-group-photo/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 01:30:43 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[About Me]]></category>

		<category><![CDATA[Author Pinal]]></category>

		<category><![CDATA[DBA]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL MVP]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[SQLAuthority Author Visit]]></category>

		<category><![CDATA[SQLAuthority News]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[MVP]]></category>

		<category><![CDATA[Openday]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1533</guid>
		<description><![CDATA[MVP Open day 2008 is one of the best event happened so far. I have previously written about this event in detail on this blog.
SQLAuthority News - Author Visit - South Asia MVP Open Day 2008 - Goa - Link List
SQLAuthority News - Author Visit - South Asia MVP Open Day 2008 - Goa - [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>MVP Open day 2008 is one of the best event happened so far. I have previously written about this event in detail on this blog.</p>
<p><a href="http://blog.sqlauthority.com/2008/11/15/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-link-list/" target="_blank">SQLAuthority News - Author Visit - South Asia MVP Open Day 2008 - Goa - Link List</a><br />
<a href="http://blog.sqlauthority.com/2008/11/16/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-day-1/" target="_blank">SQLAuthority News - Author Visit - South Asia MVP Open Day 2008 - Goa - Day 1</a><br />
<a href="http://blog.sqlauthority.com/2008/11/17/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-day-2/" target="_blank">SQLAuthority News - Author Visit - South Asia MVP Open Day 2008 - Goa - Day 2</a><br />
<a href="http://blog.sqlauthority.com/2008/11/18/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-day-3/" target="_blank">SQLAuthority News - Author Visit - South Asia MVP Open Day 2008 - Goa - Day 3</a></p>
<p>Please read the event about on above articles. Today I have received group photo of this event. I thank you fellow MVP and Expert Allen Bailochan Tuladhar for sending me group photo. Allen is Country Manager of MICROSOFT MDP Nepal and only MVP from Nepal.</p>
<p><a href="http://www.pinaldave.com/bimg/openday/mvp_1200.jpg" target="_blank"><img alt="" src="http://www.pinaldave.com/bimg/openday/mvp_500.jpg" class="alignnone" width="500" height="375" /></a></p>
<p>Reference : <strong>Pinal Dave (<a href="http://blog.sqlauthority.com" target="_blank">http://blog.sqlauthority.com</a>)</strong></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1533/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1533&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/19/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-group-photo/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/openday/mvp_500.jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News - Author Visit - South Asia MVP Open Day 2008 - Goa - Day 3</title>
		<link>http://blog.sqlauthority.com/2008/11/18/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-day-3/</link>
		<comments>http://blog.sqlauthority.com/2008/11/18/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-day-3/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 01:30:06 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL MVP]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[SQLAuthority Author Visit]]></category>

		<category><![CDATA[SQLAuthority News]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[MVP]]></category>

		<category><![CDATA[Openday]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1526</guid>
		<description><![CDATA[Yesterday was our last day at South Asia MVP Open Day. For three days continuously we are having great time along with fellow MVP. Every MVP was having great time because the way whole event was planned. We had plenty of time for networking as well lots of interesting sessions were going on.
Most of the [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yesterday was our last day at South Asia MVP Open Day. For three days continuously we are having great time along with fellow MVP. Every MVP was having great time because the way whole event was planned. We had plenty of time for networking as well lots of interesting sessions were going on.</p>
<p>Most of the MVPs had slept late the day before because everybody was preparing their presentation for community buzz. The day before we had wonderful Open Space sessions at Midnight. The most avaited sessions was Nitin Paranjape - <em><strong>Do&#8217;s and Dont&#8217;s of being an entrepreneur (Monetizing your expertise)</strong></em>. I have requested PPT to Nitin (as we were coming back in the same flight to Mumbai), as soon as I receive the PPT I will share with everybody on this blog.</p>
<p>I visited for long walk by myself on beach. From last two days I was so busy that I hardly had a single min with myself. My phone was showing full battery after end of the second day as it was absolutely not used. I enjoyed long walk on beach. I had discussion about India and Russian economy with one of the Russian visitor on beach. If I had more time, I might have discussed with him for little longer.</p>
<p>I had to get back to attend excellent session of <strong>Blogging Workshop </strong>by <em><strong>Abhishek Kant</strong></em>. The reason I like this session as it has given all the blogger to share their thoughts with everybody. Whole group listened suggestions carefully and agreed with each other. Abhishek has made some notes about all the suggestions, once I receive the copy of it, I will share with everybody.</p>
<p>Workshop was followed up with community activity, where four team proposed their agenda of promoting MS product. Winner team promoted IE8 and won MP4 players. It was great team building activity and extremely hilarious as well. We all end up discussing and laughing at presentation. Hats off to everybody who took part in this team activity.</p>
<p>Abhishek thanked all the MVPs for their tremendous response to the event. Closing notes were presented by Howard Lo. All MPVs ended event with three cheers to MS team.</p>
<p>Overall, South Asia MVP Open Day 2008 was very successful event. What I have covered in my three days notes is actually very small percentage of what actually was happening at event. There were parallel technical sessions and lots of discussion among technology experts. I will write more about different sessions and other technical discussion in next few days. I am also waiting for few PPTs and demos to share with all of you. There were few sessions which shared information which I can not disclose here as we are under NDA. Only thing I will say that Microsoft is coming out with lots of exciting features and products.</p>
<p>Pinal at Sea Shore<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday3.jpg" alt="" width="500" height="375" /></p>
<p>Abhishek on Blog Workshop<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday3 (2).jpg" alt="" width="500" height="375" /></p>
<p>Allen from Nepal and Pinal<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday3 (3).jpg" alt="" width="500" height="375" /></p>
<p>Pinal discussing Blog Buzz<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday3 (4).jpg" alt="" width="500" height="375" /></p>
<p>MVP Group Photo<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday3 (5).jpg" alt="" width="500" height="375" /></p>
<p>Howard Lo - Closing Notes<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday3 (6).jpg" alt="" width="500" height="375" /></p>
<p>Reference : <strong>Pinal Dave (<a href="http://blog.SQLAuthority.com" target="_blank">http://www.SQLAuthority.com</a>)</strong></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1526/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1526/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1526/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1526/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1526/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1526/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1526/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1526/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1526/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1526/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1526&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/18/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-day-3/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday3.jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday3 (2).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday3 (3).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday3 (4).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday3 (5).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday3 (6).jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News - Author Visit - South Asia MVP Open Day 2008 - Goa - Day 2</title>
		<link>http://blog.sqlauthority.com/2008/11/17/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-day-2/</link>
		<comments>http://blog.sqlauthority.com/2008/11/17/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-day-2/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 01:30:31 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[About Me]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL MVP]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[SQLAuthority Author Visit]]></category>

		<category><![CDATA[SQLAuthority News]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[MVP]]></category>

		<category><![CDATA[Openday]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1515</guid>
		<description><![CDATA[At MVP Open Day we were promised that we will have 8 to 8 action packed day but we all observed much longer hours where we all MVP&#8217;s were busy with activity. I will say instead of 8 AM to 8 PM we actually had fun from 8 AM to 2 AM (next day).
Day 2 [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>At MVP Open Day we were promised that we will have 8 to 8 action packed day but we all observed much longer hours where we all MVP&#8217;s were busy with activity. I will say instead of 8 AM to 8 PM we actually had fun from 8 AM to 2 AM (next day).</p>
<p>Day 2 at MVP Open day was filled with technical sessions followed by River Cruise and Dance party at Casino. On day 2 we had team photo, as I was part of team photo I could not take this photo myself. I will request Abhishek Kant to send me the team photo of all the MVP who came to MVP OpenDay and post on this blog.</p>
<p>We all MVP were thinking that we will not enjoy the River Cruise but when party started on Cruise we all were so much into it that we wanted to take one more round of the cruise. As we had to get back to Casino Dance Party we all decided to come back to our hotel. Out <a href="http://www.kenilworthhotels.com/goa/index_g.htm" target="_blank">Hotel Kenilworth Resorts</a>, Goa is indeed good hotel with all the fun stuff available right of there.</p>
<p>Read more about Day 1 at <a href="http://blog.sqlauthority.com/2008/11/16/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-day-1/" target="_blank">SQLAuthority News - Author Visit - South Asia MVP Open Day 2008 - Goa - Day 1</a>. One thing which was most important was Community Buzz. We all MVP has to promote campaign plan for one MS product. Our strong team was assigned color green and <strong>Windows Server 2008</strong>. My team member really worked hard and prepared the documentation. We have presentation to do tomorrow about the same. I am very excited to do the same. We hope to win but if we do not win, it is still lots of fun.</p>
<p>There were lots of other activity we did but one of the most interesting activity was <strong>NETWORKING with other MVPs</strong>. I want to congratulate Microsoft MVP Leads ( Abhishek Kant and Abhishek Bakshi) for arranging the event such a way that there was plenty of opportunity of the networking with everybody. MVPs mingled and learned about each other. Let us see some of the snaps which I took at event.</p>
<p>Again, I am waiting for group photo to receive from any member who took it.</p>
<p>At hotel large Chess ground<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP OpenDay2.jpg" alt="" width="500" height="375" /></p>
<p>All MVP Same T-Shirt<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday2 (2).jpg" alt="" width="500" height="375" /></p>
<p>Santa Monica of Goat<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday2 (3).jpg" alt="" width="500" height="375" /></p>
<p>R.E.D.<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday2 (4).jpg" alt="" width="500" height="375" /></p>
<p>Casino Night<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday2 (5).jpg" alt="" width="500" height="375" /></p>
<p>Pool - where is the cue?<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday2 (6).jpg" alt="" width="500" height="375" /></p>
<p>MVP background<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday2 (7).jpg" alt="" width="500" height="375" /></p>
<p>All MVPs<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday2 (8).jpg" alt="" width="500" height="375" /></p>
<p>At Cruise Night<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday2 (9).jpg" alt="" width="500" height="375" /></p>
<p>At Cruise Night - happy MVPs<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday2 (10).jpg" alt="" width="500" height="375" /></p>
<p>At R.E.D.<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday2 (11).jpg" alt="" width="500" height="375" /></p>
<p>My Beach Clothes!<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday2 (12).jpg" alt="" width="500" height="375" /></p>
<p>MVP Background<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday2 (13).jpg" alt="" width="375" height="500" /></p>
<p>Reference : <strong>Pinal Dave (<a href="http://blog.sqlauthority.com" target="_blank">http://www.SQLAuthority.com</a>)</strong></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1515/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1515/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1515/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1515/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1515/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1515/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1515/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1515/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1515/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1515/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1515&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/17/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-day-2/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP OpenDay2.jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday2 (2).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday2 (3).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday2 (4).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday2 (5).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday2 (6).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday2 (7).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday2 (8).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday2 (9).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday2 (10).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday2 (11).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday2 (12).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday2 (13).jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News - Author Visit - South Asia MVP Open Day 2008 - Goa - Day 1</title>
		<link>http://blog.sqlauthority.com/2008/11/16/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-day-1/</link>
		<comments>http://blog.sqlauthority.com/2008/11/16/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-day-1/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 01:30:58 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[About Me]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL MVP]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[SQLAuthority Author Visit]]></category>

		<category><![CDATA[SQLAuthority News]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[MVP]]></category>

		<category><![CDATA[Openday]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1510</guid>
		<description><![CDATA[It is great fun! Perfect Event and Great start.
Yesterday I wrote about agenda of South Asia MVP Open Day 2008 which is at Hotel Kenilworth Resorts, Goa. November 15 - Day 1 of Open Day started with plain journey and ended with Goan Team Party at beach with fellow MVP.
I have more than hundreds of [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It is great fun! Perfect Event and Great start.</p>
<p>Yesterday I wrote about agenda of South Asia MVP Open Day 2008 which is at <a href="http://www.kenilworthhotels.com/goa/index_g.htm" target="_blank">Hotel Kenilworth Resorts</a>, Goa. November 15 - Day 1 of Open Day started with plain journey and ended with Goan Team Party at beach with fellow MVP.</p>
<p>I have more than hundreds of the photos of this event. I will share few of the them with you.</p>
<p>First of all let me thank three four people, without their support this event might have not possible.</p>
<p><strong>Haward Lo </strong>- Microsoft, Singapore - Regional Manager, Asia Pacific and Greater China<br />
<strong>Abhishek Kant </strong>- Microsoft, India - MVP Lead<br />
<strong>Abhishek Bakshi </strong>- Microsoft, India - MVP Program Specialist<br />
<strong>Tanuj Vohra </strong>- Microsoft, India - Partner Director, Visual Studio Test Business</p>
<p>I met all of them personally and had wonderful connection with them. I want to personally thank all of them for their extra ordinary support for this excellent event to happen. Haward were in the same plane from Mumbai to Goa and we had some good discussion about open day when we were together going to hotel.</p>
<p>Hotel Kenilworth Resort is amazingly beautiful hotel and it is very hard to describe in words. I will share few of the photos here to give you some idea about the place. Very clear goan beach is just adjoining to this hotel.</p>
<p>After quick introduction to program we had demo of Windows 7 and goan theme party at beach, followed by open space presentation. Open space presentation were presentation by fellow MVP for other MVPs and they started at midnight 12. You can image how action packed days we all MVP had at Open Day 2008.</p>
<p>Following image I found on Mumbai Airport.<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday.jpg" alt="" width="500" height="375" /></p>
<p>MVP Open Day Logo<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday (2).jpg" alt="" width="500" height="375" /></p>
<p>My room at hotel<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday (3).jpg" alt="" width="500" height="375" /></p>
<p>My room at hotel<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday (4).jpg" alt="" width="500" height="375" /></p>
<p>Hotel Kenilworth Resort<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday (5).jpg" alt="" width="500" height="375" /></p>
<p>Pinal at event<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday (6).jpg" alt="" width="500" height="375" /></p>
<p>Hotel Kenilworth Resort</p>
<p><img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday (7).jpg" alt="" width="500" height="375" /></p>
<p>Abhishek Kant Presenting<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday (8).jpg" alt="" width="500" height="375" /></p>
<p>Howard Lo Presenting<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday (9).jpg" alt="" width="500" height="375" /></p>
<p>Pradeep Presenting<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday (10).jpg" alt="" width="500" height="375" /></p>
<p>Tanuj Vohra Presenting<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday (11).jpg" alt="" width="500" height="375" /></p>
<p>Abhishek Bakshi Presenting<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday (12).jpg" alt="" width="500" height="375" /></p>
<p>Goan Night Theme<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday (13).jpg" alt="" width="500" height="375" /></p>
<p>Pinal, Suprotim, Rahul, Abhishek K<br />
<img class="alignnone" src="http://www.pinaldave.com/bimg/openday/MVP Openday (14).jpg" alt="" width="500" height="375" /></p>
<p>Reference : <strong>Pinal Dave (<a href="http://blog.sqlauthority.com" target="_blank">http://www.SQLAuthority.com</a>)</strong></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1510/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1510/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1510/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1510/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1510/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1510/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1510/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1510/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1510/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1510/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1510&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/16/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-day-1/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday.jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday (2).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday (3).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday (4).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday (5).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday (6).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday (7).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday (8).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday (9).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday (10).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday (11).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday (12).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday (13).jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/openday/MVP Openday (14).jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News - Author Visit - South Asia MVP Open Day 2008 - Goa - Link List</title>
		<link>http://blog.sqlauthority.com/2008/11/15/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-link-list/</link>
		<comments>http://blog.sqlauthority.com/2008/11/15/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-link-list/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 01:30:26 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[About Me]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL MVP]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[SQLAuthority Author Visit]]></category>

		<category><![CDATA[SQLAuthority News]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[MVP]]></category>

		<category><![CDATA[Openday]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1506</guid>
		<description><![CDATA[Today is very exciting day as I will start my trip to South Asia MVP Open Day 2008 - Goa. Yesterday I wrote about my visit. I will be attending South Asia MVP Open Day 2008 on November 15 - 17, 2008 at Hotel Kenilworth Resorts, Goa. Those who have asked how can they meet [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Today is very exciting day as I will start my trip to South Asia MVP Open Day 2008 - Goa. Yesterday I wrote about my visit. I will be attending <strong>South Asia MVP Open Day 2008</strong> on <strong>November 15 - 17, 2008</strong> at <a href="http://www.kenilworthhotels.com/goa/index_g.htm" target="_blank">Hotel Kenilworth Resorts</a>, Goa. Those who have asked how can they meet me in Goa is that you will have to send me email and I will respond to them.</p>
<p>At this moment I have reached goa and writing using my new USB Data Card internet.</p>
<p>I will post more photos and event details as I receive them. Following is proposed agenda of this event. I am publishing this agenda with verbal approval of MVP Team Lead <strong>Abhishek</strong>.</p>
<p><strong>Nov 15, Saturday</strong><br />
16:30 - 17:00: Welcome Note, Howard Lo*<br />
17:00 - 18:00: MVP Lead Briefing, Abhishek Kant*<br />
18:00 - 19:00: Windows 7 Demo - PDC Build, Pradeep Parappil<br />
19:00 - 20:00: Team Activity - Community Buzz<br />
20:00 - PARTY with Goan Theme<br />
00:00 - After Hours Open Space</p>
<p><strong>Nov 16, Sunday</strong><br />
9:00 - 9:30: MVPs WorldWide, Nestor Portillo*<br />
9:30 - 11:00: [Main Conference Room] Rosario: What&#8217;s Coming?, Ashwini Gupta &amp; Tanuj Vohra<br />
9:30 - 11:00: [BreakAway Room] IW &amp; Client Community Plans &amp; Participation, Pradeep Parappil<br />
11:00 - 11:15: TEAM PHOTOS<br />
11:15 - 11:30: BREAK<br />
11:30 - 12:30: [Main Conference Room] Microsoft’s Community Plan for the fiscal, Deepak Rajendran*<br />
12:30 - 13:30: [Main Conference Room] DPE Audience Marketing Rhythms, Deepak Rajendran*<br />
12:30 - 13:30: [BreakAway Room] Immersion into Groove Technologies, Ashok Hingorani<br />
13:30 - 14:30: LUNCH<br />
14:30 - 15:30: [Main Conference Room] Feedback from Quarter 1 &amp; 2 &amp; Plan for Quarter 3 &amp; 4– Mitigation plan<br />
14:30 - 15:30: [BreakAway Room] Blogging Brainstorming<br />
15:30 - 16:30: Team Activity - Community Buzz<br />
16:30 - 17:00: BREAK<br />
17:00 - 20:00: River Cruise<br />
20:00 - PARTY - Casino, Kenilworth<br />
00:00 - After Hours Open Space</p>
<p><strong>Nov 17, Monday</strong><br />
9:00 - 10:00: Blogging Workshop<br />
10:00 - 11:00: Team Presentations<br />
11:00 - 11:30: BREAK<br />
11:30 - 13:00: Open Session with MVP Program Team, Abhishek Kant, Abhishek Baxi and Howard Lo<br />
13:00 - 13:30: Closing Note, Howard Lo<br />
13:30: LUNCH</p>
<p>Reference : <strong>Pinal Dave (<a href="http://www.SQLAuthority.com" target="_blank">http://www.SQLAuthority.com</a>)</strong></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1506/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1506/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1506/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1506/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1506/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1506/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1506/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1506/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1506/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1506/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1506&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/15/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa-link-list/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLAuthority News - Author Visit - South Asia MVP Open Day 2008 - Goa</title>
		<link>http://blog.sqlauthority.com/2008/11/14/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa/</link>
		<comments>http://blog.sqlauthority.com/2008/11/14/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 01:30:53 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[About Me]]></category>

		<category><![CDATA[Author Pinal]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL MVP]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[SQLAuthority Author Visit]]></category>

		<category><![CDATA[SQLAuthority News]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[MVP]]></category>

		<category><![CDATA[Openday]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1501</guid>
		<description><![CDATA[I will be attending South Asia MVP Open Day 2008 on November 15 - 17, 2008 at Hotel Kenilworth Resorts, Goa. I am very excited as this will be my first Open Day event after being MVP. Microsoft Most Valuable Professionals (MVPs) are exceptional technical community leaders from around the world who are awarded for [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I will be attending <strong>South Asia MVP Open Day 2008</strong> on <strong>November 15 - 17, 2008</strong> at <a href="http://www.kenilworthhotels.com/goa/index_g.htm" target="_blank">Hotel Kenilworth Resorts</a>, Goa. I am very excited as this will be my first Open Day event after being <strong><a href="http://blog.sqlauthority.com/2008/07/01/sqlauthority-news-microsoft-most-valuable-professional-award-for-sql-server-mvp/" target="_blank">MVP</a></strong>. Microsoft Most Valuable Professionals (MVPs) are exceptional technical community leaders from around the world who are awarded for voluntarily sharing their high quality, real world expertise in offline and online technical communities. Microsoft MVPs are a highly select group of experts that represents the technical community&#8217;s best and brightest, and they share a deep commitment to community and a willingness to help others.</p>
<p>There will be lots of events at South Asia MVP Open Day and lots of opportunity to meet smartest experts of Microsoft Technology. I will be writing article about how event is going everyday from Goa. If you are in Goa and want to meet me and few of the other Industry Leaders please send me email and we can meet at Hotel Kenilworth Resort after the event. Hotel Kenilworth Resort is known for its guest services and wonderful environment. You can look at some of the photos of Hotel <a href="http://www.kenilworthhotels.com/goa/gallery.htm" target="_blank">here</a>.</p>
<p>Reference : <strong>Pinal Dave (<a href="http://www.SQLAuthority.com" target="_blank">http://www.SQLAuthority.com</a>)</strong></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1501/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1501&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/14/sqlauthority-news-author-visit-south-asia-mvp-open-day-2008-goa/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLAuthority News - RML Utilities - Usage and Additional Help</title>
		<link>http://blog.sqlauthority.com/2008/11/13/sqlauthority-news-rml-utilities-usage-and-additional-help/</link>
		<comments>http://blog.sqlauthority.com/2008/11/13/sqlauthority-news-rml-utilities-usage-and-additional-help/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 01:30:44 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Documentation]]></category>

		<category><![CDATA[SQL Download]]></category>

		<category><![CDATA[SQL Performance]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[SQLAuthority News]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1497</guid>
		<description><![CDATA[Yesterday I wrote about SQLAuthority News - Download RML Utilities for SQL Server. I received many emails where different developers requested how to find additional help regarding RML Utilities. Few users reported that they are not able to install RML Utilities because of some reporting service pre-requisite.
If RML Utilities are not being installed due to [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yesterday I wrote about <a href="http://blog.sqlauthority.com/2008/11/12/sqlauthority-news-download-rml-utilities-for-sql-server/" target="_blank">SQLAuthority News - Download RML Utilities for SQL Server</a>. I received many emails where different developers requested how to find additional help regarding RML Utilities. Few users reported that they are not able to install RML Utilities because of some reporting service pre-requisite.</p>
<p>If RML Utilities are not being installed due to pre-requisite, install <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=bb196d5d-76c2-4a0e-9458-267d22b6aac6&amp;DisplayLang=en" target="_blank">Microsoft Report Viewer 2008 SP1 Redistributable</a> and then try to install RML Utilities. If there is need of additional help once RML Utilities are installed click on Start &gt;&gt; All Programs &gt;&gt; RML Utilities for SQL Server &gt;&gt; Help &gt;&gt; RML Help. Once you click on link it will open PDF with instructions about how to use RML.</p>
<p>Reference : <strong>Pinal Dave (<a href="http://www.SQLAuthority.com" target="_blank">http://www.SQLAuthority.com</a>)</strong></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1497/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1497&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/13/sqlauthority-news-rml-utilities-usage-and-additional-help/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLAuthority News - Download RML Utilities for SQL Server</title>
		<link>http://blog.sqlauthority.com/2008/11/12/sqlauthority-news-download-rml-utilities-for-sql-server/</link>
		<comments>http://blog.sqlauthority.com/2008/11/12/sqlauthority-news-download-rml-utilities-for-sql-server/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 01:30:00 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[Best Practices]]></category>

		<category><![CDATA[Database]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Documentation]]></category>

		<category><![CDATA[SQL Download]]></category>

		<category><![CDATA[SQL Performance]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Security]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[SQLAuthority News]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1495</guid>
		<description><![CDATA[The RML utilities allow you to process SQL Server trace files and view reports showing how SQL Server is performing. For example, you can quickly see:
Which application, database or login is using the most resources, and which queries are responsible for that
Whether there were any plan changes for a batch during the time when the [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span>The RML utilities allow you to process SQL Server trace files and view reports showing how SQL Server is performing. For example, you can quickly see:</span></p>
<li>Which application, database or login is using the most resources, and which queries are responsible for that</li>
<li>Whether there were any plan changes for a batch during the time when the trace was captured and how each of those plans performed</li>
<li>What queries are running slower in today&#8217;s data compared to a previous set of data</li>
<p>You can also test how the system will behave with some change (different service pack or hotfix build, changing a stored procedure or function, modifying or adding indexes, and so forth) by using the provided tools to replay the trace files against another instance of SQL Server. If you capture trace during this replay you can use the tools to directly compare to the original baseline capture.</p>
<p>Supports SQL Server versions 2000, 2005 and 2008.</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7edfa95a-a32f-440f-a3a8-5160c8dbe926&amp;DisplayLang=en" target="_blank">Download RML Utilities for SQL Server</a></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1495/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1495/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1495/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1495/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1495/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1495/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1495/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1495/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1495/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1495/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1495&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/12/sqlauthority-news-download-rml-utilities-for-sql-server/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER - Delete Backup History - Cleanup Backup History</title>
		<link>http://blog.sqlauthority.com/2008/11/11/sql-server-delete-backup-history-cleanup-backup-history/</link>
		<comments>http://blog.sqlauthority.com/2008/11/11/sql-server-delete-backup-history-cleanup-backup-history/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 01:30:32 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[Author Pinal]]></category>

		<category><![CDATA[Best Practices]]></category>

		<category><![CDATA[Database]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Backup and Restore]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Scripts]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Stored Procedure]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1491</guid>
		<description><![CDATA[SQL Server stores history of all the taken backup forever. History of all the backup is stored in msdb database. Many times older history is no more required. Following Stored Procedure can be executed with parameter which takes days of history to keep. In following example 30 is passed to keep history of month.
USE msdb
GO
DECLARE [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>SQL Server stores history of all the taken backup forever. History of all the backup is stored in msdb database. Many times older history is no more required. Following Stored Procedure can be executed with parameter which takes days of history to keep. In following example 30 is passed to keep history of month.</p>
<p><code style="font-size:12px;"><span style="color:blue;">USE </span><span style="color:black;">msdb<br />
GO<br />
</span><span style="color:blue;">DECLARE </span><span style="color:#434343;">@DaysToKeepHistory </span><span style="color:black;">DATETIME<br />
</span><span style="color:blue;">SET </span><span style="color:#434343;">@DaysToKeepHistory </span><span style="color:blue;">= </span><span style="color:magenta;">CONVERT</span><span style="color:gray;">(</span><span style="color:blue;">VARCHAR</span><span style="color:gray;">(</span><span style="color:black;">10</span><span style="color:gray;">), </span><span style="color:magenta;">DATEADD</span><span style="color:gray;">(</span><span style="color:black;">dd</span><span style="color:gray;">, -</span><span style="color:black;">30</span><span style="color:gray;">, </span><span style="color:magenta;">GETDATE</span><span style="color:gray;">()), </span><span style="color:black;">101</span><span style="color:gray;">)</span></code></p>
<p><span style="color:blue;">EXEC </span><span style="color:darkred;">sp_delete_backuphistory </span><span style="color:#434343;">@DaysToKeepHistory<br />
</span><span style="color:black;">GO </span></p>
<p>Reference : Pinal Dave (<a href="http://www.SQLAuthority.com" target="_blank">http://www.SQLAuthority.com</a>)</p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1491/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1491/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1491/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1491/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1491/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1491&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/11/sql-server-delete-backup-history-cleanup-backup-history/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER - Check Database Integrity for All Databases of Server</title>
		<link>http://blog.sqlauthority.com/2008/11/10/sql-server-check-database-integrity-for-all-databases-of-server/</link>
		<comments>http://blog.sqlauthority.com/2008/11/10/sql-server-check-database-integrity-for-all-databases-of-server/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 01:30:51 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[Author Pinal]]></category>

		<category><![CDATA[Best Practices]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Scripts]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Server DBCC]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1489</guid>
		<description><![CDATA[Today we will see quick script which will check integrity of all the database of SQL Server.
EXEC sp_msforeachdb &#8216;DBCC CHECKDB(&#8221;?&#8221;)&#8217; 
Above script will return you lots of messages in resultset. If there are any errors in resultset they will be displayed in red text. If everything is black text there is no error. Typical output of [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Today we will see quick script which will check integrity of all the database of SQL Server.</p>
<p><code style="font-size:12px;"><span style="color:blue;">EXEC </span><span style="color:darkred;">sp_msforeachdb </span><span style="color:red;">&#8216;DBCC CHECKDB(&#8221;?&#8221;)&#8217; </span></code></p>
<p>Above script will return you lots of messages in resultset. If there are any errors in resultset they will be displayed in red text. If everything is black text there is no error. Typical output of above script will be like image included in the article.</p>
<p><img class="alignnone" src="http://www.pinaldave.com/bimg/dbcccheckdb.jpg" alt="" width="500" height="321" /></p>
<p>Image displayed above is only partial image.</p>
<p>Reference : <strong>Pinal Dave (<a href="http://www.SQLAuthority.com" target="_blank">http://www.SQLAuthority.com</a>)</strong></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1489/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1489&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/10/sql-server-check-database-integrity-for-all-databases-of-server/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/dbcccheckdb.jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News - SQL Server 2008 Book Online Updated in October 2008</title>
		<link>http://blog.sqlauthority.com/2008/11/09/sqlauthority-news-sql-server-2008-book-online-updated-in-october-2008/</link>
		<comments>http://blog.sqlauthority.com/2008/11/09/sqlauthority-news-sql-server-2008-book-online-updated-in-october-2008/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 01:30:40 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Documentation]]></category>

		<category><![CDATA[SQL Download]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[SQLAuthority News]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1487</guid>
		<description><![CDATA[SQL Server 2008 Books Online is updated on 31 October 2008. I always bookmark latest BOL for my easy reference.
Getting Started: New and Updated Topics (31 October 2008)
Analysis Services - Multidimensional Data: New and Updated Topics (31 October 2008)
Database Engine: New and Updated Topics (31 October 2008)
Integration Services: New and Updated Topics (31 October 2008)
Analysis [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>SQL Server 2008 Books Online is updated on 31 October 2008. I always bookmark latest BOL for my easy reference.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/dd239403.aspx" target="_blank">Getting Started: New and Updated Topics (31 October 2008)</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/dd239404.aspx" target="_blank">Analysis Services - Multidimensional Data: New and Updated Topics (31 October 2008)</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/dd239356.aspx" target="_blank">Database Engine: New and Updated Topics (31 October 2008)</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/dd239357.aspx" target="_blank">Integration Services: New and Updated Topics (31 October 2008)</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/dd239398.aspx" target="_blank">Analysis Services - Data Mining: New and Updated Topics (31 October 2008)</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/dd239358.aspx" target="_blank">Reporting Services: New and Updated Topics (31 October 2008)</a></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1487/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1487/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1487/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1487/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1487/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1487/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1487/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1487/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1487/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1487/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1487&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/09/sqlauthority-news-sql-server-2008-book-online-updated-in-october-2008/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER 2008 - Connect Visual Studio 2005 Patch Download</title>
		<link>http://blog.sqlauthority.com/2008/11/08/sql-server-2008-connect-visual-studio-2005-patch-download/</link>
		<comments>http://blog.sqlauthority.com/2008/11/08/sql-server-2008-connect-visual-studio-2005-patch-download/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 01:30:16 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Add-On]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Download]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[SQLAuthority News]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1483</guid>
		<description><![CDATA[It was not possible to connect SQL Server 2008 to Visual Studio 2005 so far. Microsoft has released Service Pack once it is installed SQL Server 2008 can be connected to Visual Studio 2005.
Download Microsoft Visual Studio 2005 Service Pack 1 Update for Microsoft SQL Server 2008 Support
For connecting SQL Server 2008 to Visual Studio [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It was not possible to connect SQL Server 2008 to Visual Studio 2005 so far. Microsoft has released Service Pack once it is installed SQL Server 2008 can be connected to Visual Studio 2005.</p>
<p><strong><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e1109aef-1aa2-408d-aa0f-9df094f993bf&amp;DisplayLang=en" target="_blank">Download Microsoft Visual Studio 2005 Service Pack 1 Update for Microsoft SQL Server 2008 Support</a></strong></p>
<p>For connecting SQL Server 2008 to Visual Studio 2008.</p>
<p><strong><a href="http://blog.sqlauthority.com/2008/10/05/sql-server-2008-fix-connection-error-with-visual-studio-2008-server-version-is-not-supported-vs-sp1-iso-download/" target="_blank">SQL SERVER - 2008 - Fix Connection Error with Visual Studio 2008 - Server Version is not supported - VS SP1 ISO Download</a></strong></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1483/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1483&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/08/sql-server-2008-connect-visual-studio-2005-patch-download/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER - Refresh Database Using T-SQL</title>
		<link>http://blog.sqlauthority.com/2008/11/07/sql-server-refresh-database-using-t-sql/</link>
		<comments>http://blog.sqlauthority.com/2008/11/07/sql-server-refresh-database-using-t-sql/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 01:30:13 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[Author Pinal]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Performance]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Scripts]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Server DBCC]]></category>

		<category><![CDATA[SQL Stored Procedure]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1480</guid>
		<description><![CDATA[Yesterday I received following questions on blog. Ashish Agarwal asked following question.
Hi Pinal,
Can we refresh a database (like we do by right clicking database node in object explorer and clicking on refresh) thru SQL Query?
If yes, can you please tell me the query?
Thanks,
Ashish Agarwal
Answer to above question is NO. It is not possible to do [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yesterday I received following questions on blog. <a href="http://blog.sqlauthority.com/contact-me-contact-pinaldave/#comment-44079" target="_blank">Ashish Agarwal</a> asked following question.</p>
<p style="padding-left:30px;"><em>Hi Pinal,</em></p>
<p style="padding-left:30px;"><em>Can we refresh a database (like we do by right clicking database node in object explorer and clicking on refresh) thru SQL Query?<br />
If yes, can you please tell me the query?</em></p>
<p style="padding-left:30px;"><em>Thanks,<br />
Ashish Agarwal</em></p>
<p>Answer to above question is <strong>NO</strong>. It is not possible to do the same task using SQL Query.</p>
<p>However, if you have changed some SP or any other object and if they are cached in the database, database can be refreshed using DBCC commands.</p>
<p>Read my previous article about <strong><a href="http://blog.sqlauthority.com/2008/07/22/sql-server-clear-sql-server-memory-caches/" target="_blank">SQL SERVER - Clear SQL Server Memory Caches</a></strong>.</p>
<p>Reference: <strong>Pinal Dave (<a href="http://www.SQLAuthority.com" target="_blank">http://www.SQLAuthority.com</a>)</strong><em><br />
</em></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1480/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1480/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1480/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1480/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1480/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1480/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1480/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1480/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1480/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1480/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1480&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/07/sql-server-refresh-database-using-t-sql/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLAuthority News - 5 Millions Visitors - 2 Anniversary - Authors Note on Economy Slow Down and Job Opportunity - SQL Server</title>
		<link>http://blog.sqlauthority.com/2008/11/06/sqlauthority-news-5-millions-visitors-2-anniversary-authors-note-on-economy-slow-down-and-job-opportunity-sql-server/</link>
		<comments>http://blog.sqlauthority.com/2008/11/06/sqlauthority-news-5-millions-visitors-2-anniversary-authors-note-on-economy-slow-down-and-job-opportunity-sql-server/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 01:30:23 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[About Me]]></category>

		<category><![CDATA[Author Pinal]]></category>

		<category><![CDATA[Best Practices]]></category>

		<category><![CDATA[DBA]]></category>

		<category><![CDATA[Database]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[SQLAuthority News]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1470</guid>
		<description><![CDATA[I just received following screen shot from one of the regular reader of SQLAuthority.com blog. He pointed out important milestone for our blog. We have crossed 5 millions visitors. In less than 2 years SQLAuthority.com blog has been visited by 5 millions visitors. I even missed the anniversary our blog. On November 1st 2008 SQLAuthority.com [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I just received following screen shot from one of the regular reader of SQLAuthority.com blog. He pointed out important milestone for our blog. We have crossed <strong>5 millions visitors</strong>. In less than 2 years SQLAuthority.com blog has been visited by 5 millions visitors. I even missed the anniversary our blog. On November 1st 2008 <a href="http://www.SQLAuthority.com" target="_blank"><strong>SQLAuthority.com</strong></a> has completed <strong>2 years</strong> of its existence and now continuing in 3rd year.</p>
<p><img class="alignnone" src="http://www.pinaldave.com/bimg/5mil.jpg" alt="" width="286" height="429" /></p>
<p>There are many important miles stones I have during this journey the most important one is that I have received Microsoft Award for <strong><a href="http://blog.sqlauthority.com/2008/07/01/sqlauthority-news-microsoft-most-valuable-professional-award-for-sql-server-mvp/" target="_blank">SQL Server Most Valuable Professional</a></strong>. I usually avoid discussing politics or business trends. However, I have received many emails requesting my opinion about current recession and economy slow down as well how it will effect SQL Server technology and Job Opportunities.</p>
<p>On occasion of <strong>two major events</strong> - celebrating beginning of 3rd year of this blog and crossing 5 millions visitors I will share my opinion about economy slow down and SQL Server. If you consider <em>Barack Obama</em> historic victory as US president today, then we have three major events.</p>
<p>Due to current slow down in economy it is for sure that budgets of companies are affected but technological advancement and development is not affected at all. Demand of SQL Server experts are still the same in job market. If due to any reason any developer has lost his/her job they will find their dream job in no time. Until they find their new job they must continue to learn new technologies. Do not sit around thinking that you will learn new technology when you will find new job. In fact, learning new technology will help you find new job. If you have any question or looking for answer, use the customized search engine which finds your SQL Server answers very quickly <strong><a href="http://search.sqlauthority.com" target="_blank">Search SQLAuthority</a></strong>.</p>
<p>I do receive many emails every day when either developer is looking for job or employers are looking for good candidates. I do forward their emails to each other. If you are employer and looking for good developer contact me as I know many good candidates who are looking for suitable job. If you are employee and looking for job change or unemployed do contact me and I can get you connected to right person. If you are <strong>.NET(C#) and SQL Server 2+ years </strong>experience developer in <strong>Ahmedabad, India</strong>, I have opening at my organization. If you are eager to learn, I will hire you myself and you will have opportunity to work with me as well other MVPs. I am fortunate to work along with other SQL Server MVP. Take a look at <strong><a href="http://jobs.sqlauthority.com" target="_blank">SQLAuthority Job Portal</a></strong>.</p>
<p>Again, I have complete faith that jobs which are related to SQL Server and companies which are depending on SQL Server will not have much problem with economic slow down. SQL Server is way more cost effective than its direct competitor and offers way more feature. If you are going to appear for interview I suggest to prepare properly for interview. Read following articles and understand them before interview and I promise there will be no issue at all. I am always available to help and I respond to every question and query I receive in 24 hours. Send me email directly at pinal &#8216;at&#8217; sqlauthority.com or pinaldave &#8216;at&#8217; yahoo.com for any help.</p>
<p><strong><a href="http://www.pinaldave.com/best-sql-server-download.cfm?download=SQL-SERVER-2008-Download-Interview-Questions-and-Answers" target="_blank">SQL Server 2008 Interview Questions and Answers</a></strong></p>
<p><a href="http://www.pinaldave.com/best-sql-server-download.cfm?download=Data-Warehousing-Business-Intelligence-Interview-Questions-and-Answers-Download" target="_blank"> SQL Server Data Warehousing and BI Interview Questions and Answers</a></p>
<p><a href="http://www.pinaldave.com/best-sql-server-download.cfm?download=SQL-SERVER-Database-Coding-Standards-and-Guidelines-Complete-List-Download" target="_blank"> SQL Server Database Guidelines Complete and Coding Standards List</a></p>
<p><a href="http://www.pinaldave.com/best-sql-server-download.cfm?download=SQL-SERVER-Cheat-Sheet" target="_blank">SQL Server Cheat Sheet</a></p>
<p><a href="http://www.pinaldave.com/best-sql-server-download.cfm?download=SQL-SERVER-Download-Frequently-Asked-Generic-Interview-Questions" target="_blank"> SQL Server Frequently Asked Generic Interview Questions</a></p>
<p>Regards,<br />
<strong>Pinal Dave</strong> (<a href="http://www.pinaldave.com" target="_blank">http://www.pinaldave.com</a>)<br />
<strong>Founder</strong> - <a href="http://www.pinaldave.com" target="_blank">http://blog.SQLAuthority.com</a></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1470/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1470/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1470/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1470/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1470/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1470/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1470/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1470/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1470/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1470/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1470&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/06/sqlauthority-news-5-millions-visitors-2-anniversary-authors-note-on-economy-slow-down-and-job-opportunity-sql-server/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/5mil.jpg" medium="image" />
	</item>
		<item>
		<title>SQL SERVER - Clear Drop Down List of Recent Connection From SQL Server Management Studio</title>
		<link>http://blog.sqlauthority.com/2008/11/05/sql-server-clear-drop-down-list-of-recent-connection-from-sql-server-management-studio/</link>
		<comments>http://blog.sqlauthority.com/2008/11/05/sql-server-clear-drop-down-list-of-recent-connection-from-sql-server-management-studio/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 01:30:26 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[Author Pinal]]></category>

		<category><![CDATA[Best Practices]]></category>

		<category><![CDATA[DBA]]></category>

		<category><![CDATA[Database]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Add-On]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Scripts]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1465</guid>
		<description><![CDATA[Quite often it happens that SQL Server Management Studio&#8217;s Dropdown box is cluttered with many different SQL Server&#8217;s name. Sometime it contains the name of the server which does not exist or developer does not have access to it. It is very easy to clean the list and start over.

Delete mru.dat file from following location.
For [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Quite often it happens that SQL Server Management Studio&#8217;s Dropdown box is cluttered with many different SQL Server&#8217;s name. Sometime it contains the name of the server which does not exist or developer does not have access to it. It is very easy to clean the list and start over.</p>
<p><img class="alignnone" src="http://www.pinaldave.com/bimg/servernamelist.jpg" alt="" width="416" height="315" /></p>
<p><em><strong>Delete <span style="color:#000080;">mru.dat</span> file from following location.</strong></em></p>
<p><strong>For SQL Server 2005:</strong><br />
C:\Documents and Settings\&lt;user&gt;\Application Data\Microsoft\Microsoft SQL Server\90\Tools\Shell\mru.dat</p>
<p>If you can not find mru.dat at above location look for mru.dat in following folder.<br />
C:\Documents and Settings\[user]\Application Data\Microsoft\Microsoft SQL Server\90\Tools\ShellSEM\mru.dat</p>
<p><strong>For SQL Server 2008:</strong><br />
C:\Documents and Settings\&lt;user&gt;\Application Data\Microsoft\Microsoft SQL Server\100\Tools\Shell\mru.dat</p>
<p>If you can not find mru.dat at above location look for mru.dat in following folder.<br />
C:\Documents and Settings\[user]\Application Data\Microsoft\Microsoft SQL Server\100\Tools\ShellSEM\mru.dat</p>
<p>If you are using <strong>VISTA OS</strong> instead of XP OS. Replace C:\Documents and Settings\[user]\Application Data\Microsoft\ with<br />
C:\Users\\AppData\Roaming\Microsoft\ and it should work.</p>
<p>Make sure to take note down any IP address of SQL Server you may need in future.</p>
<p>Reference : <strong>Pinal Dave (<a href="http://www.SQLAuthority.com" target="_blank">http://www.SQLAuthority.com</a>)</strong></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1465/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1465/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1465/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1465/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1465/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1465/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1465/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1465/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1465/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1465/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1465&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/05/sql-server-clear-drop-down-list-of-recent-connection-from-sql-server-management-studio/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/servernamelist.jpg" medium="image" />
	</item>
		<item>
		<title>SQL SERVER - Fix : Error: 4064 - Cannot open user default database. Login failed. Login failed for user</title>
		<link>http://blog.sqlauthority.com/2008/11/04/sql-server-fix-error-4064-cannot-open-user-default-database-login-failed-login-failed-for-user/</link>
		<comments>http://blog.sqlauthority.com/2008/11/04/sql-server-fix-error-4064-cannot-open-user-default-database-login-failed-login-failed-for-user/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 01:30:58 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[Author Pinal]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Error Messages]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Scripts]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1461</guid>
		<description><![CDATA[I have received following question nearly 10 times in last week though emails. Many users have received following error while connecting to the database. This error happens when database is dropped for which is default for some of the database user. When user try to login and their default database is dropped following error shows [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have received following question nearly 10 times in last week though emails. Many users have received following error while connecting to the database. This error happens when database is dropped for which is default for some of the database user. When user try to login and their default database is dropped following error shows up.</p>
<p><em><strong>Cannot open user default database. Login failed.<br />
Login failed for user &#8216;UserName&#8217;. (Microsoft SQL Server, Error: 4064)</strong></em></p>
<p><img class="alignnone" src="http://www.pinaldave.com/bimg/error4064.jpg" alt="" width="500" height="138" /></p>
<p>The fix for this problem is very simple.</p>
<p><strong>Fix/Workaround/Solution:</strong></p>
<p>First click on <strong>Option&gt;&gt;</strong> Button of &#8220;Connect to Server&#8221; Prompt.</p>
<p><img class="alignnone" src="http://www.pinaldave.com/bimg/error4064_1.jpg" alt="" width="416" height="315" /></p>
<p>Now change the connect to database to any existing database on your server like master or msdb.</p>
<p><img class="alignnone" src="http://www.pinaldave.com/bimg/error4064_2.jpg" alt="" width="416" height="494" /></p>
<p>Now click on connect and it will successfully log you in. Once you login in the system run following statement for your username and it should fix your problem. <em>Make sure to replace [test] with your username and master with yourdatabase name.</em></p>
<p><code style="font-size:12px;"><span style="color:blue;">ALTER </span><span style="color:black;">LOGIN [test] </span><span style="color:blue;">WITH </span><span style="color:black;">DEFAULT_DATABASE </span><span style="color:blue;">= </span><span style="color:black;">master</span></code><br />
GO</p>
<p><img class="alignnone" src="http://www.pinaldave.com/bimg/error4064_3.jpg" alt="" width="436" height="97" /></p>
<p>Reference : <strong>Pinal Dave (<a href="http://www.SQLAuthority.com" target="_blank">http://www.SQLAuthority.com</a>)</strong></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1461/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1461/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1461/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1461/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1461/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1461/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1461/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1461/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1461/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1461/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1461&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/04/sql-server-fix-error-4064-cannot-open-user-default-database-login-failed-login-failed-for-user/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/error4064.jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/error4064_1.jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/error4064_2.jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/error4064_3.jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News - SQL Server Security Whitepapers</title>
		<link>http://blog.sqlauthority.com/2008/11/03/sqlauthority-news-sql-server-security-whitepapers/</link>
		<comments>http://blog.sqlauthority.com/2008/11/03/sqlauthority-news-sql-server-security-whitepapers/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 01:30:45 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
		
		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Authority]]></category>

		<category><![CDATA[SQL Documentation]]></category>

		<category><![CDATA[SQL Download]]></category>

		<category><![CDATA[SQL Query]]></category>

		<category><![CDATA[SQL Security]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[SQL Tips and Tricks]]></category>

		<category><![CDATA[SQLAuthority News]]></category>

		<category><![CDATA[T SQL]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1459</guid>
		<description><![CDATA[Microsoft has published following three security related white papers. I suggest to all my readers to read them. Read the summary know what is covered in those  white papers.

Engine Separation of Duties for the Application Developer - Separation of duties is an important consideration for databases and database applications. By properly defining schemas and roles, [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Microsoft has published following three security related white papers. I suggest to all my readers to read them. Read the summary know what is covered in those  white papers.</p>
<ul>
<li><strong><a href="http://msdn.microsoft.com/en-us/library/cc974525.aspx" target="_blank">Engine Separation of Duties for the Application Developer</a> </strong>- Separation of duties is an important consideration for databases and database applications. By properly defining schemas and roles, you can create a distinction between users who can manipulate data from those that administer the database. This paper discusses the topics of which application developers should be aware and provides a heuristic example to guide you in achieving separation of duties.</li>
<li><strong><a href="http://msdn.microsoft.com/en-us/library/cc278098.aspx" target="_blank">Database Encryption in SQL Server 2008 Enterprise Edition</a></strong> - With the introduction of transparent data encryption (TDE) in SQL Server 2008, users now have the choice between cell-level encryption as in SQL Server 2005, full database-level encryption by using TDE, or the file-level encryption options provided by Windows. TDE is the optimal choice for bulk encryption to meet regulatory compliance or corporate data security standards. TDE works at the file level, which is similar to two Windows<span class="Trademark"></span> features: the Encrypting File System (EFS) and BitLocker Drive Encryption, the new volume-level encryption introduced in Windows Vista<span class="Trademark"></span>, both of which also encrypt data on the hard drive. TDE does not replace cell-level encryption, EFS, or BitLocker. This white paper compares TDE with these other encryption methods for application developers and database administrators. While this is not a technical, in-depth review of TDE, technical implementations are explored and a familiarity with concepts such as virtual log files and the buffer pool are assumed. The user is assumed to be familiar with cell-level encryption and cryptography in general. Implementing database encryption is covered, but not the rationale for encrypting a database.</li>
<li><strong><a href="http://msdn.microsoft.com/en-us/library/cc837966.aspx" target="_blank">Cryptography in SQL Server</a></strong> - Although cryptography provides SQL Server with powerful tools for encryption and verification, these are often not well understood. This can lead to poor or incomplete implementations. This white paper presents an overview of cryptographic functionality and discusses how this applies to authentication, signed procedures, permissions, and encryption. Because the target audience is the database professional and not necessarily security experts, the focus is on practical ways to use cryptography in SQL Server.</li>
</ul>
<p>Reference : <strong>Pinal Dave (<a href="http://www.SQLAuthority.com" target="_blank">http://www.SQLAuthority.com</a>)</strong></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/1459/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/1459/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/1459/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/1459/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/1459/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/1459/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/1459/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/1459/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/1459/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/1459/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=1459&subd=sqlauthority&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2008/11/03/sqlauthority-news-sql-server-security-whitepapers/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/pinaldave-128.jpg" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
	</channel>
</rss>