<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" 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>
	<lastBuildDate>Tue, 09 Feb 2010 01:30:15 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='blog.sqlauthority.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/08e35387c05b61340e885b1763a69d9f?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.sqlauthority.com/osd.xml" title="Journey to SQL Authority with Pinal Dave" />
		<item>
		<title>SQL SERVER &#8211; Brief Note about StreamInsight &#8211; What is StreamInsight</title>
		<link>http://blog.sqlauthority.com/2010/02/09/sql-server-brief-note-about-streaminsight-what-is-streaminsight/</link>
		<comments>http://blog.sqlauthority.com/2010/02/09/sql-server-brief-note-about-streaminsight-what-is-streaminsight/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 01:30:15 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[DBA]]></category>
		<category><![CDATA[Pinal Dave]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Authority]]></category>
		<category><![CDATA[SQL Documentation]]></category>
		<category><![CDATA[SQL Query]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Tips and Tricks]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[StreamInsight]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7939</guid>
		<description><![CDATA[StreamInsight is a new event processing platform introduced in upcoming version SQL Server 2008 R2. Similar to other components such as SSIS, SSAS or Service Broker, it also needs to be installed along with the SQL Server.
Up to SQL Server 2005, Microsoft’s main focus on SQL Server was to build a platform to efficiently store, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7939&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">StreamInsight is a new event processing platform introduced in upcoming version SQL Server 2008 R2. Similar to other components such as SSIS, SSAS or Service Broker, it also needs to be installed along with the SQL Server.</p>
<p style="text-align:justify;">Up to SQL Server 2005, Microsoft’s main focus on SQL Server was to build a platform to efficiently store, manage, and retrieve data. However, now, Microsoft enhanced SQL Server to accept, monitor, and respond to complex and high number of events in near zero latency. For this, Microsoft introduced StreamInsight using the following approaches:</p>
<ol style="text-align:justify;">
<li>Continuous and incremental processing of unending sequences of events.</li>
<li>Lightweight streaming architecture that supports highly parallel execution of continuous queries over high-speed data.</li>
<li>The use of in-memory caches and incremental result computation provide excellent performance with high data throughout and low latency.</li>
<li>Low latency is achieved because the events are processed without costly data load or storage operations in the critical processing path.</li>
<li>All processing is automatically triggered by incoming events. In particular, applications do not have to incur any overhead for event polling.</li>
<li>Static reference or historical data can be accessed and included in the low-latency analysis.</li>
</ol>
<p style="text-align:justify;">In StreamInsight, the events are processed by a CEP (complex event processing) Server. CEP Server has its own optimizer and standing queries to handle events optimally in real time. In simple terms, we can understand it as given below:</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/streamlight.jpg" alt="" width="500" height="294" /></p>
<p style="text-align:justify;">This architecture is designed to process up to 100,000 or even more events per second.</p>
<p style="text-align:justify;">Following are few areas where this new platform would help in monitoring, mining, and analyzing the data in motion and in providing significantly more informed business decisions in real-time:</p>
<ul style="text-align:justify;">
<li>Manufacturing process monitoring and control</li>
<li>Clickstream analysis</li>
<li>Financial services</li>
<li>Power utilities</li>
<li>Health care</li>
<li>IT monitoring</li>
<li>Logistics</li>
<li>Telecom</li>
</ul>
<p style="text-align:justify;">Another important thing about StreamInsight is that the developers do not have to learn any new language to implement it. Its CEP Server (standing queries) can be created in LINQ (Language Integrated Queries), while the event Source application and Target application can be written in Microsoft .Net language.<em><strong> By using LINQ, developers familiar with SQL will be able to quickly write queries in a declarative fashion.</strong></em> Its deployment is also simple with flexible methods such as integrating in an application as a hosted DLL or running as a stand alone server through a wrapper such as an executable or windows service.</p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Filed under: <a href='http://blog.sqlauthority.com/category/dba/'>DBA</a>, <a href='http://blog.sqlauthority.com/category/tech/pinal-dave/'>Pinal Dave</a>, <a href='http://blog.sqlauthority.com/category/technology/sql/'>SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-authority/'>SQL Authority</a>, <a href='http://blog.sqlauthority.com/category/sql-documentation/'>SQL Documentation</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-query/'>SQL Query</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-server/'>SQL Server</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-tips-and-tricks/'>SQL Tips and Tricks</a>, <a href='http://blog.sqlauthority.com/category/technology/t-sql/'>T SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/'>Technology</a> Tagged: <a href='http://blog.sqlauthority.com/tag/streaminsight/'>StreamInsight</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7939/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7939/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7939/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7939/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7939/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7939/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7939/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7939/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7939/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7939/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7939&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/02/09/sql-server-brief-note-about-streaminsight-what-is-streaminsight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/streamlight.jpg" medium="image" />
	</item>
		<item>
		<title>SQL SERVER &#8211; Find the Size of Database File &#8211; Find the Size of Log File</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/</link>
		<comments>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 01:30:47 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Pinal Dave]]></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 System Table]]></category>
		<category><![CDATA[SQL Tips and Tricks]]></category>
		<category><![CDATA[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[SQL Log File]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954</guid>
		<description><![CDATA[I encountered the situation recently where I needed to find the size of the log file. When I tried to find the script by using Search@SQLAuthority.com I was not able to find the script at all. Here is the script, if you remove the WHERE condition you will find the result for all the databases.
SELECT [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7954&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">I encountered the situation recently where I needed to find the size of the log file. When I tried to find the script by using Search@SQLAuthority.com I was not able to find the script at all. Here is the script, if you remove the WHERE condition you will find the result for all the databases.</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">SELECT </span><span style="color:magenta;">DB_NAME</span><span style="color:gray;">(</span><span style="color:black;">database_id</span><span style="color:gray;">) </span><span style="color:blue;">AS </span><span style="color:black;">DatabaseName</span><span style="color:gray;">,<br />
</span><span style="color:black;">Name </span><span style="color:blue;">AS </span><span style="color:black;">Logical_Name</span><span style="color:gray;">,<br />
</span><span style="color:black;">Physical_Name</span><span style="color:gray;">, (</span><span style="color:black;">size</span><span style="color:gray;">*</span><span style="color:black;">8</span><span style="color:gray;">)/</span><span style="color:black;">1024 SizeMB<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">sys.master_files<br />
</span><span style="color:blue;">WHERE </span><span style="color:magenta;">DB_NAME</span><span style="color:gray;">(</span><span style="color:black;">database_id</span><span style="color:gray;">) </span><span style="color:blue;">= </span><span style="color:red;">'AdventureWorks'<br />
</span><span style="color:black;">GO</span></code></p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Filed under: <a href='http://blog.sqlauthority.com/category/tech/pinal-dave/'>Pinal Dave</a>, <a href='http://blog.sqlauthority.com/category/technology/sql/'>SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-authority/'>SQL Authority</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-query/'>SQL Query</a>, <a href='http://blog.sqlauthority.com/category/tech/sql-scripts/'>SQL Scripts</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-server/'>SQL Server</a>, <a href='http://blog.sqlauthority.com/category/sql-system-table/'>SQL System Table</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-tips-and-tricks/'>SQL Tips and Tricks</a>, <a href='http://blog.sqlauthority.com/category/sqlserver/'>SQLServer</a>, <a href='http://blog.sqlauthority.com/category/technology/t-sql/'>T SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/'>Technology</a> Tagged: <a href='http://blog.sqlauthority.com/tag/sql-log-file/'>SQL Log File</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7954/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7954/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7954/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7954/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7954/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7954/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7954/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7954/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7954/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7954/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7954&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER &#8211; SQL Server 2008 R2 Update for Developers Training Kit</title>
		<link>http://blog.sqlauthority.com/2010/02/07/sql-server-sql-server-2008-r2-update-for-developers-training-kit/</link>
		<comments>http://blog.sqlauthority.com/2010/02/07/sql-server-sql-server-2008-r2-update-for-developers-training-kit/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 01:30:38 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<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 Query]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Tips and Tricks]]></category>
		<category><![CDATA[SQLAuthority News]]></category>
		<category><![CDATA[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7952</guid>
		<description><![CDATA[SQL Server 2008 R2 offers an impressive array of capabilities for developers that build upon key innovations introduced in SQL Server 2008. The SQL Server 2008 R2 Update for Developers Training Kit is ideal for developers who want to understand how to take advantage of the key improvements introduced in SQL Server 2008 and SQL [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7952&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">SQL Server 2008 R2 offers an impressive array of capabilities for developers that build upon key innovations introduced in SQL Server 2008. The <em>SQL Server 2008 R2 Update for Developers Training Kit</em> is ideal for developers who want to understand how to take advantage of the key improvements introduced in SQL Server 2008 and SQL Server 2008 R2 in their applications, as well as for developers who are new to SQL Server. The training kit is brought to you by Microsoft Developer and Platform Evangelism.</p>
<p style="text-align:justify;"><strong><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=fffaad6a-0153-4d41-b289-a3ed1d637c0d" target="_blank">Download SQL Server 2008 R2 Update for Developers Training Kit</a></strong></p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
<p style="text-align:justify;">
Filed under: <a href='http://blog.sqlauthority.com/category/database/'>Database</a>, <a href='http://blog.sqlauthority.com/category/technology/sql/'>SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-authority/'>SQL Authority</a>, <a href='http://blog.sqlauthority.com/category/sql-documentation/'>SQL Documentation</a>, <a href='http://blog.sqlauthority.com/category/sql-download/'>SQL Download</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-query/'>SQL Query</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-server/'>SQL Server</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-tips-and-tricks/'>SQL Tips and Tricks</a>, <a href='http://blog.sqlauthority.com/category/sqlauthority/sqlauthority-news/'>SQLAuthority News</a>, <a href='http://blog.sqlauthority.com/category/sqlserver/'>SQLServer</a>, <a href='http://blog.sqlauthority.com/category/technology/t-sql/'>T SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/'>Technology</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7952/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7952/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7952/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7952/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7952/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7952/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7952/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7952/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7952/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7952/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7952&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/02/07/sql-server-sql-server-2008-r2-update-for-developers-training-kit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLAuthority News &#8211; Presenting Two Sessions at TechED Sri Lanka</title>
		<link>http://blog.sqlauthority.com/2010/02/06/sqlauthority-news-presenting-two-sessions-at-teched-sri-lanka/</link>
		<comments>http://blog.sqlauthority.com/2010/02/06/sqlauthority-news-presenting-two-sessions-at-teched-sri-lanka/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 01:30:34 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[MVP]]></category>
		<category><![CDATA[Pinal Dave]]></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 Author Visit]]></category>
		<category><![CDATA[SQLAuthority News]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[TechEd]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7959</guid>
		<description><![CDATA[I will be presenting following two sessions at TechEd Sri Lanka this week. I am very excited as this is very first time I will be presenting in TechEd event. I have previously presented many sessions but I have never presented at this premier Microsoft Event.
I will be presenting on following two subject.

The history of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7959&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">I will be presenting following two sessions at TechEd Sri Lanka this week. I am very excited as this is very first time I will be presenting in TechEd event. I have previously presented many sessions but I have never presented at this premier Microsoft Event.</p>
<p style="text-align:justify;">I will be presenting on following two subject.</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/techsl.jpg" alt="" width="500" height="205" /></p>
<p style="text-align:justify;"><strong>The history of the Log: Change Data Capture (CDC)</strong><br />
<em><strong>Pinal Dave on 8-Feb-10 at 02.00 &#8211; 03.15</strong></em><br />
Learn to capture the history of data using CDC. An age old method of writing queries and triggers to capture change in database table is replaced with much powerful asynchronous method of change data capture (CDC). All attendees will learn how to configure CDC in less than 60 seconds.</p>
<p style="text-align:justify;"><strong>The Other Side of SQL Server Index : Advanced Solutions to Ancient Problem</strong><br />
<em><strong> Pinal Dave on 9-Feb-10 at 02.15 &#8211; 03.15</strong></em><br />
SQL Server Index is very powerful tool and when in hand of the less skilled expert, the same tool can be very dangerous for performance and can kill server. This session touches the root base of the how incorrect usage of Index can reduce performance and what is the correct way to implement indexing solution. A problem addressed in the session may be age old but the solutions are looked into with the focus of latest versions of SQL Server.</p>
<p style="text-align:justify;">Along with me there will be other two Solid Quality Mentors &#8211; Rushabh Mehta and Joy Ratnayake presenting on various topics. Since announcement of the event, I have already received few emails I promise that one of the evening, I will for sure meet all of you who have requested the meeting.</p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Filed under: <a href='http://blog.sqlauthority.com/category/mvp/'>MVP</a>, <a href='http://blog.sqlauthority.com/category/tech/pinal-dave/'>Pinal Dave</a>, <a href='http://blog.sqlauthority.com/category/technology/sql/'>SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-authority/'>SQL Authority</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-query/'>SQL Query</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-server/'>SQL Server</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-tips-and-tricks/'>SQL Tips and Tricks</a>, <a href='http://blog.sqlauthority.com/category/sqlauthority/sqlauthority-author-visit/'>SQLAuthority Author Visit</a>, <a href='http://blog.sqlauthority.com/category/sqlauthority/sqlauthority-news/'>SQLAuthority News</a>, <a href='http://blog.sqlauthority.com/category/technology/t-sql/'>T SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/'>Technology</a> Tagged: <a href='http://blog.sqlauthority.com/tag/teched/'>TechEd</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7959/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7959&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/02/06/sqlauthority-news-presenting-two-sessions-at-teched-sri-lanka/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/techsl.jpg" medium="image" />
	</item>
		<item>
		<title>SQL SERVER &#8211; Stream Aggregate Showplan Operator &#8211; Reason of Compute Scalar before Stream Aggregate</title>
		<link>http://blog.sqlauthority.com/2010/02/05/sql-server-stream-aggregate-showplan-operator-reason-of-compute-scalar-before-stream-aggregate/</link>
		<comments>http://blog.sqlauthority.com/2010/02/05/sql-server-stream-aggregate-showplan-operator-reason-of-compute-scalar-before-stream-aggregate/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 01:30:37 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Pinal Dave]]></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 Tips and Tricks]]></category>
		<category><![CDATA[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Query Operator]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7922</guid>
		<description><![CDATA[I keep a check on the questions received from my readers; when any question crosses my threshold, I surely try to blog about it online. Stream Aggregate is a quite commonly encountered showplan operator. I have often found it in very simple COUNT(*) operation&#8217;s execution plan. If you like to read an official note on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7922&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">I keep a check on the questions received from my readers; when any question crosses my threshold, I surely try to blog about it online. Stream Aggregate is a quite commonly encountered showplan operator. I have often found it in very simple COUNT(*) operation&#8217;s execution plan. If you like to read an official note on the subject, you can read the same on Book Online over <a href="http://technet.microsoft.com/en-us/library/ms189907.aspx" target="_blank">here</a>. The Stream Aggregate operator groups rows by one or more columns and then calculates one or more aggregate expressions returned by the query.</p>
<p style="text-align:justify;">Running the following query will give you Stream Aggregate Operator in Execution Plan. To turn on Execution Plan, press CTRL + M.</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">USE </span><span style="color:black;">AdventureWorks<br />
GO<br />
</span><span style="color:blue;">SELECT </span><span style="color:magenta;">COUNT</span><span style="color:gray;">(*) </span><span style="color:black;">cRows<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">HumanResources.Shift</span><span style="color:gray;">;<br />
</span><span style="color:black;">GO</span></code></p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/streama.jpg" alt="" width="500" height="195" /></p>
<p style="text-align:justify;">Now if you try to see the Aggregate operation in text instead of graphic, you can find that it clearly suggests that aggregation happens because of the COUNT(*) operation.</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">SET </span><span style="color:black;">SHOWPLAN_ALL </span><span style="color:blue;">ON</span><span style="color:gray;">;<br />
</span><span style="color:black;">GO<br />
</span><span style="color:blue;">SELECT </span><span style="color:magenta;">COUNT</span><span style="color:gray;">(*) </span><span style="color:black;">cRows<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">HumanResources.Shift</span><span style="color:gray;">;<br />
</span><span style="color:black;">GO<br />
</span><span style="color:blue;">SET </span><span style="color:black;">SHOWPLAN_ALL </span><span style="color:blue;">OFF</span><span style="color:gray;">;<br />
</span><span style="color:black;">GO</span></code></p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/streamb.jpg" alt="" width="500" height="275" /></p>
<p style="text-align:justify;">Notably, in the same operation, the Compute Scalar operation is also present, which in fact does the implicit conversion of the COUNT(*) operation. This operation is there because during the stream aggregation operation, the Expression is converted to BIGINT, and it is converted back to INT right after COUNT(*) operation.</p>
<p style="text-align:justify;">Now let us try to prove that Stream Aggregate returns results in the format for BIGINT and not in INT datatype, which is leading to use of additional operation of scalar convert. We will run the above code with COUNT_BIG(*) instead of COUNT(*).</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">SET </span><span style="color:black;">SHOWPLAN_ALL </span><span style="color:blue;">ON</span><span style="color:gray;">;<br />
</span><span style="color:black;">GO<br />
</span><span style="color:blue;">SELECT </span><span style="color:magenta;">COUNT_BIG</span><span style="color:gray;">(*) </span><span style="color:black;">cRows<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">HumanResources.Shift</span><span style="color:gray;">;<br />
</span><span style="color:black;">GO<br />
</span><span style="color:blue;">SET </span><span style="color:black;">SHOWPLAN_ALL </span><span style="color:blue;">OFF</span><span style="color:gray;">;<br />
</span><span style="color:black;">GO</span></code></p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/streamc.jpg" alt="" width="500" height="288" /></p>
<p style="text-align:justify;">You can clearly see from this example that there is no Compute Scalar operation when function COUNT_BIG is used in place of COUNT.</p>
<p style="text-align:justify;">Now, the abovementioned information leads to the following question: does this mean that the performance of COUNT_BIG is better than COUNT operation. Let us compare the performance for the same by running following code.</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">SET </span><span style="color:black;">SHOWPLAN_ALL </span><span style="color:blue;">ON</span><span style="color:gray;">;<br />
</span><span style="color:black;">GO<br />
</span><span style="color:blue;">SELECT </span><span style="color:magenta;">COUNT</span><span style="color:gray;">(*) </span><span style="color:black;">cRows<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">HumanResources.Shift</span><span style="color:gray;">;<br />
</span><span style="color:black;">GO<br />
</span><span style="color:blue;">SELECT </span><span style="color:black;">COUNT_BIG</span><span style="color:gray;">(*) </span><span style="color:black;">cRows<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">HumanResources.Shift</span><span style="color:gray;">;<br />
</span><span style="color:black;">GO<br />
</span><span style="color:blue;">SET </span><span style="color:black;">SHOWPLAN_ALL </span><span style="color:blue;">OFF</span><span style="color:gray;">;<br />
</span><span style="color:black;">GO</span></code></p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/streamd.jpg" alt="" width="500" height="365" /></p>
<p style="text-align:justify;">From the execution plan, the cost of both the operations is exactly same. Now I would like to get your opinion on what you think of this article and your initial reaction to the behavior of SQL Server. Please do leave a comment here.</p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Filed under: <a href='http://blog.sqlauthority.com/category/tech/pinal-dave/'>Pinal Dave</a>, <a href='http://blog.sqlauthority.com/category/technology/sql/'>SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-authority/'>SQL Authority</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-query/'>SQL Query</a>, <a href='http://blog.sqlauthority.com/category/tech/sql-scripts/'>SQL Scripts</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-server/'>SQL Server</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-tips-and-tricks/'>SQL Tips and Tricks</a>, <a href='http://blog.sqlauthority.com/category/sqlserver/'>SQLServer</a>, <a href='http://blog.sqlauthority.com/category/technology/t-sql/'>T SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/'>Technology</a> Tagged: <a href='http://blog.sqlauthority.com/tag/query-operator/'>Query Operator</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7922/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7922/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7922/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7922/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7922/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7922/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7922/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7922/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7922/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7922/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7922&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/02/05/sql-server-stream-aggregate-showplan-operator-reason-of-compute-scalar-before-stream-aggregate/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

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

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

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

		<media:content url="http://www.pinaldave.com/bimg/streamd.jpg" medium="image" />
	</item>
		<item>
		<title>SQL SERVER &#8211; Get the List of Object Dependencies &#8211; sp_depends and information_schema.routines and sys.dm_sql_referencing_entities</title>
		<link>http://blog.sqlauthority.com/2010/02/04/sql-server-get-the-list-of-object-dependencies-sp_depends-and-information_schema-routines-and-sys-dm_sql_referencing_entities/</link>
		<comments>http://blog.sqlauthority.com/2010/02/04/sql-server-get-the-list-of-object-dependencies-sp_depends-and-information_schema-routines-and-sys-dm_sql_referencing_entities/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 01:30:43 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Pinal Dave]]></category>
		<category><![CDATA[Readers Question]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Authority]]></category>
		<category><![CDATA[SQL Query]]></category>
		<category><![CDATA[SQL Scripts]]></category>
		<category><![CDATA[SQL Security]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL System Table]]></category>
		<category><![CDATA[SQL Tips and Tricks]]></category>
		<category><![CDATA[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7890</guid>
		<description><![CDATA[Recently, I read a question on my friend Ritesh Shah&#8217;s SQL site regarding the following: sp_depends does not give appropriate results whereas information_schema.routines does give proper answer.
I have quite often seen that information_schema.routines gives proper dependency relationship where assp_depends returns an incorrect answer. However, as per book online sp_depends will be deprecated, and instead, sys.dm_sql_referencing_entities [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7890&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">Recently, I read a question on my friend <a href="http://www.sqlhub.com/2010/01/spdepends-is-very-useful-stored.html" target="_blank">Ritesh Shah</a>&#8217;s SQL site regarding the following: sp_depends does not give appropriate results whereas information_schema.routines does give proper answer.</p>
<p style="text-align:justify;">I have quite often seen that information_schema.routines gives proper dependency relationship where assp_depends returns an incorrect answer. However, as per book online sp_depends will be deprecated, and instead, sys.dm_sql_referencing_entities and sys.dm_sql_referenced_entities are recommended.</p>
<p style="text-align:justify;">Let us quickly see where sp_depends fail and other solutions work fine.</p>
<p style="text-align:justify;">Let us first create two scenarios.</p>
<p style="text-align:justify;"><strong>Scenario 1: Normal Table Creation Order, where objects are created first and then used afterwords.</strong></p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">USE </span><span style="color:black;">TempDB<br />
GO<br />
</span><span style="color:blue;">CREATE TABLE </span><span style="color:black;">dbo.TestTable<br />
</span><span style="color:gray;">( </span><span style="color:black;">ID </span><span style="color:blue;">INT</span><span style="color:gray;">,<br />
</span><span style="color:black;">Name </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:black;">GO<br />
</span><span style="color:green;">-- dbo.First is not created yet<br />
</span><span style="color:blue;">CREATE PROCEDURE </span><span style="color:black;">dbo.Second<br />
</span><span style="color:blue;">AS<br />
EXEC </span><span style="color:black;">dbo.First<br />
GO<br />
</span><span style="color:blue;">CREATE PROCEDURE </span><span style="color:black;">dbo.First<br />
</span><span style="color:blue;">AS<br />
SELECT </span><span style="color:black;">ID</span><span style="color:gray;">, </span><span style="color:black;">Name<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">TestTable<br />
GO<br />
</span></code></p>
<p style="text-align:justify;"><strong>Scenario 2: Objects are created afterwords and they are referenced first.</strong></p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">USE </span><span style="color:black;">TempDB<br />
GO<br />
</span><span style="color:blue;">CREATE TABLE </span><span style="color:black;">dbo.TestTable<br />
</span><span style="color:gray;">( </span><span style="color:black;">ID </span><span style="color:blue;">INT</span><span style="color:gray;">,<br />
</span><span style="color:black;">Name </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:black;">GO<br />
</span><span style="color:blue;">CREATE PROCEDURE </span><span style="color:black;">dbo.First<br />
</span><span style="color:blue;">AS<br />
SELECT </span><span style="color:black;">ID</span><span style="color:gray;">, </span><span style="color:black;">Name<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">TestTable<br />
GO<br />
</span><span style="color:green;">-- dbo.First is already created<br />
</span><span style="color:blue;">CREATE PROCEDURE </span><span style="color:black;">dbo.Second<br />
</span><span style="color:blue;">AS<br />
EXEC </span><span style="color:black;">dbo.First<br />
GO</span></code></p>
<p style="text-align:justify;">Now let us run following three queries on both the scenarios.</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:green;">-- Method 1: Using sp_depends<br />
</span><span style="color:darkred;">sp_depends </span><span style="color:red;">'dbo.First'<br />
</span><span style="color:black;">GO<br />
</span><span style="color:green;">-- Method 2: Using information_schema.routines<br />
</span><span style="color:blue;">SELECT </span><span style="color:gray;">*<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">information_schema.routines ISR<br />
</span><span style="color:blue;">WHERE CHARINDEX</span><span style="color:gray;">(</span><span style="color:red;">'dbo.First'</span><span style="color:gray;">, </span><span style="color:black;">ISR.ROUTINE_DEFINITION</span><span style="color:gray;">) &gt; </span><span style="color:black;">0<br />
GO<br />
</span><span style="color:green;">-- Method 3: Using DMV sys.dm_sql_referencing_entities<br />
</span><span style="color:blue;">SELECT </span><span style="color:black;">referencing_schema_name</span><span style="color:gray;">, </span><span style="color:black;">referencing_entity_name</span><span style="color:gray;">,<br />
</span><span style="color:black;">referencing_id</span><span style="color:gray;">, </span><span style="color:black;">referencing_class_desc</span><span style="color:gray;">, </span><span style="color:black;">is_caller_dependent<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">sys.dm_sql_referencing_entities </span><span style="color:gray;">(</span><span style="color:red;">'dbo.First'</span><span style="color:gray;">, </span><span style="color:red;">'OBJECT'</span><span style="color:gray;">);<br />
</span><span style="color:black;">GO</span></code></p>
<p style="text-align:justify;"><strong>Result from Scenario 1</strong></p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/sp_depends1.jpg" alt="" width="500" height="410" /></p>
<p style="text-align:justify;"><strong>Result from Scenario 2</strong></p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/sp_depends2.jpg" alt="" width="500" height="393" /></p>
<p style="text-align:justify;">It is clear that sp_depends does not give proper/correct results when the object creation order is different or following deferred name resolution.</p>
<p style="text-align:justify;">I suggest the use of the third method, in which sys.dm_sql_referencing_entities is used.</p>
<p style="text-align:justify;">Use the following script to get correct dependency:</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">SELECT </span><span style="color:black;">referencing_schema_name</span><span style="color:gray;">, </span><span style="color:black;">referencing_entity_name</span><span style="color:gray;">,<br />
</span><span style="color:black;">referencing_id</span><span style="color:gray;">, </span><span style="color:black;">referencing_class_desc</span><span style="color:gray;">, </span><span style="color:black;">is_caller_dependent<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">sys.dm_sql_referencing_entities </span><span style="color:gray;">(</span><span style="color:red;">'YourObject'</span><span style="color:gray;">, </span><span style="color:red;">'OBJECT'</span><span style="color:gray;">);<br />
</span><span style="color:black;">GO</span></code></p>
<p style="text-align:justify;">Let me know the type of scripts you use for finding Object Dependencies. I will post your script with due credit.</p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Filed under: <a href='http://blog.sqlauthority.com/category/tech/pinal-dave/'>Pinal Dave</a>, <a href='http://blog.sqlauthority.com/category/readers-question/'>Readers Question</a>, <a href='http://blog.sqlauthority.com/category/technology/sql/'>SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-authority/'>SQL Authority</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-query/'>SQL Query</a>, <a href='http://blog.sqlauthority.com/category/tech/sql-scripts/'>SQL Scripts</a>, <a href='http://blog.sqlauthority.com/category/sql-security/'>SQL Security</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-server/'>SQL Server</a>, <a href='http://blog.sqlauthority.com/category/sql-system-table/'>SQL System Table</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-tips-and-tricks/'>SQL Tips and Tricks</a>, <a href='http://blog.sqlauthority.com/category/sqlserver/'>SQLServer</a>, <a href='http://blog.sqlauthority.com/category/technology/t-sql/'>T SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/'>Technology</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7890/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7890&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/02/04/sql-server-get-the-list-of-object-dependencies-sp_depends-and-information_schema-routines-and-sys-dm_sql_referencing_entities/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

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

		<media:content url="http://www.pinaldave.com/bimg/sp_depends2.jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News &#8211; MVP Open Day South Asia &#8211; Jan 20, 2010 &#8211; Jan 23, 2010 &#8211; Review Part Fun</title>
		<link>http://blog.sqlauthority.com/2010/02/03/sqlauthority-news-mvp-open-day-south-asia-jan-20-2010-jan-23-2010-review-part-fun/</link>
		<comments>http://blog.sqlauthority.com/2010/02/03/sqlauthority-news-mvp-open-day-south-asia-jan-20-2010-jan-23-2010-review-part-fun/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 01:30:50 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[MVP]]></category>
		<category><![CDATA[Pinal Dave]]></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[SQL User Group]]></category>
		<category><![CDATA[SQLAuthority Author Visit]]></category>
		<category><![CDATA[SQLAuthority News]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7901</guid>
		<description><![CDATA[MVP Open Day South Asia was held in Hyderabad from Jan 20, 2010 to Jan 23, 2010. This event was a fun-filled event as well as an educational one. The event was held at Microsoft IDC at Hyderabad, the largest Microsoft Development location after Redmond. I had great time meeting my friends and some of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7901&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">MVP Open Day South Asia was held in Hyderabad from Jan 20, 2010 to Jan 23, 2010. This event was a fun-filled event as well as an educational one. The event was held at Microsoft IDC at Hyderabad, the largest Microsoft Development location after Redmond. I had great time meeting my friends and some of the renowned experts from all over the South Asia. The whole event started with networking with other MVPs as well as Product Group members.</p>
<p style="text-align:justify;">Besides lots of learning and meeting experts, this event was filled with fun too. The best thing for me was that I went there with my family. I attended the event with my wife – <strong>Nupur </strong>and my four-month-old daughter <strong>Shaivi</strong>. Though I was busy meeting my fellow MVPs and Microsoft Experts, I still had quality time to spend with my family. This event was held at Ista Hotel, Hyderabad. Nupur really liked the Spa there. While we were at sessions, she had a great time herself. She even met a couple of film stars at the hotel.</p>
<p style="text-align:justify;">Shaivi, my little one, had great time as well. It was her first tour out of my state. She had never traveled outside our city since she was born; it was also her first air journey. She was such a nice baby and never cried during her whole journey in flight. She was one of the most popular persons at the event and also the most photographed one. Needless to say, I was the one who took most of her photographs!</p>
<p style="text-align:justify;">There were plenty of fun programs scheduled at the event. Every evening at dinner, we had networking and gathering of the MVPs. I think this was the best time of the day as after whole day of technical sessions and techno-talk, all the MVPs and Experts are in a very light mood to have fun. Not to mention that during the same time, we could share the best with them. There was an excellent theme party arranged on one of the nights. The theme was &#8220;Qawwali.&#8221; During this party, there were loads of singing and dancing – all the MVPs and experts had loads of fun. Allen, my friend from Nepal, helped me join the dancing party.</p>
<p style="text-align:justify;">I must say that every time I meet Windows expert <a href="http://www.msigeek.com/" target="_blank"><strong>Vijay Raj</strong></a>, I just feel that I met my lost brother. He was the first one to remind me this year that I must visit the MVP Open Day event; and he was the first one to call me on the first day of MVP Open Day asking why I have yet not reached to the Hyderabad. Shaivi indeed had great time at the event as well as she got to see many new things and new people. <a href="http://www.abhishekkant.net/" target="_blank"><strong><em>Abhishek Kant</em></strong></a> gave her the first piano lessons of her life! I have wonderful photographs of Abhishek teaching her piano. Jacob is quite known for teaching me SQL, but I had learned few tips on how to handle young kid as well. <strong><em>Sanjay Shetty</em></strong>, one of the Regional Directors of MS India, was one of the guys who should not be missed. We had a great time together talking about the community. He even introduced us to few other community leaders.</p>
<p style="text-align:justify;"><a href="http://www.dotnetcurry.com/" target="_blank"><strong>Suprotim Agrawal</strong></a> and <a href="http://saffronstroke.com/" target="_blank"><strong>Minal Agrawal</strong></a> are the very first MVP couple of India. Suprotim is great a great person; he is not only an expert in Dotnet, but also very fluent with regard to the SQL Server. We talked about community, blogs and even making money! Minal and Nupur got along very well, and as far as I know, they were busy talking about recipes. I had great pleasure to meet one of the very senior DotNet MVPs. <a href="http://himabinduvejella.blogspot.com/" target="_blank"><strong>Hima Bindu Vejella</strong></a>, during the event. Hima is the community leader of the Hyderabad User Group; she impressed my family with her efficiency and very polite nature. She was kind enough to share some tips with us on how one can manage home and work efficiently.</p>
<p style="text-align:justify;">Every night, we had late night sessions, where all the “geeks” talked about technology in an extremely light mood; we, in fact, had one of the best arguments on different search engines. On one night, we had a great time learning different SEO tricks from <a href="http://www.labnol.org/" target="_blank"><strong>Amit Agrawal</strong></a>. Amit is a great guy and a very down-to-earth person. He openly participated and shared all the knowledge with us. He did not hesitate to answer any questions which we asked. He even gave us tips on how we can improve our blogging skills; Amit took personal interest in SQLAutohrity.com too. I must confess that after meeting him, my respect for him has increased.</p>
<p style="text-align:justify;">I cannot end the review of my event if I forget to mention the video of the <strong><em>Vic</em></strong>. Vic, as usual, is very innovative and to the point. <strong><a href="http://www.geetesh.com/" target="_blank">Geetesh Bajaj</a></strong>, who is hails from Hyderabad but the internationally known author of Powerpoint books was as usual very helpful. All the MVPs visited Golkunda Fort and had great fun at the <strong><em>Sound and Light Show</em></strong>. I must mention that I won a portable hard drive using my Karma Points. I enjoyed my interaction with the MVPs of Sri Lanka as well; I even managed to learn a few words from their local language.</p>
<p style="text-align:justify;">I honestly would like to express my huge thanks to all the MVPs whom I met as well as Microsoft for organizing such a great event, where all the leaders of the community came together to meet the simple goal of helping the community.</p>
<p style="text-align:justify;">
<div class="wp-caption alignnone" style="width: 510px"><img title="Pinal @ MVPOpenDay Hyderabad IDC" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_40.jpg" alt="Pinal @ MVPOpenDay Hyderabad IDC" width="500" height="375" /><p class="wp-caption-text">Pinal @ MVPOpenDay Hyderabad IDC</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Pinal, Nupur and Shaivi Dave at Theme Party, Hyderabad" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_33.jpg" alt="Pinal, Nupur and Shaivi Dave at Theme Party, Hyderabad" width="500" height="375" /><p class="wp-caption-text">Pinal, Nupur and Shaivi Dave at Theme Party, Hyderabad</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Shaivi Dave and Abhishek Kant" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_25.jpg" alt="Shaivi Dave and Abhishek Kant" width="500" height="375" /><p class="wp-caption-text">Shaivi Dave and Abhishek Kant</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Shaivi, Nupur, Pinal with Rushabh Mehta" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_22.jpg" alt="Shaivi, Nupur, Pinal with Rushabh Mehta" width="500" height="375" /><p class="wp-caption-text">Shaivi, Nupur, Pinal with Rushabh Mehta</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Shaivi Dave" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_23.jpg" alt="Shaivi Dave" width="500" height="667" /><p class="wp-caption-text">Shaivi Dave</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Shaivi Dave" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_24.jpg" alt="Shaivi Dave" width="500" height="666" /><p class="wp-caption-text">Shaivi Dave</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Theme Party @ MVP Open Day Hyderabad" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_35.jpg" alt="Theme Party @ MVP Open Day Hyderabad" width="500" height="375" /><p class="wp-caption-text">Theme Party @ MVP Open Day Hyderabad</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Theme Party @ MVP Open Day Hyderabad" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_37.jpg" alt="Theme Party @ MVP Open Day Hyderabad" width="500" height="375" /><p class="wp-caption-text">Theme Party @ MVP Open Day Hyderabad</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Suprotim and Minal Agrawal at Minal's birthday" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_39.jpg" alt="Suprotim and Minal Agrawal at Minal's birthday" width="500" height="375" /><p class="wp-caption-text">Suprotim and Minal Agrawal at Minal&#39;s birthday</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Party Time at MVP Open Day Hyderabad" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_38.jpg" alt="Party Time at MVP Open Day Hyderabad" width="500" height="375" /><p class="wp-caption-text">Party Time at MVP Open Day Hyderabad</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Watching Pinal Flying Kytes " src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_42.jpg" alt="Watching Pinal Flying Kytes " width="500" height="375" /><p class="wp-caption-text">Watching Pinal Flying Kites </p></div>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Filed under: <a href='http://blog.sqlauthority.com/category/mvp/'>MVP</a>, <a href='http://blog.sqlauthority.com/category/tech/pinal-dave/'>Pinal Dave</a>, <a href='http://blog.sqlauthority.com/category/technology/sql/'>SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-authority/'>SQL Authority</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-query/'>SQL Query</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-server/'>SQL Server</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-tips-and-tricks/'>SQL Tips and Tricks</a>, <a href='http://blog.sqlauthority.com/category/sql-user-group/'>SQL User Group</a>, <a href='http://blog.sqlauthority.com/category/sqlauthority/sqlauthority-author-visit/'>SQLAuthority Author Visit</a>, <a href='http://blog.sqlauthority.com/category/sqlauthority/sqlauthority-news/'>SQLAuthority News</a>, <a href='http://blog.sqlauthority.com/category/technology/t-sql/'>T SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/'>Technology</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7901/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7901/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7901/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7901/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7901/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7901/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7901/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7901/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7901/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7901/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7901&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/02/03/sqlauthority-news-mvp-open-day-south-asia-jan-20-2010-jan-23-2010-review-part-fun/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_40.jpg" medium="image">
			<media:title type="html">Pinal @ MVPOpenDay Hyderabad IDC</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_33.jpg" medium="image">
			<media:title type="html">Pinal, Nupur and Shaivi Dave at Theme Party, Hyderabad</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_25.jpg" medium="image">
			<media:title type="html">Shaivi Dave and Abhishek Kant</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_22.jpg" medium="image">
			<media:title type="html">Shaivi, Nupur, Pinal with Rushabh Mehta</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_23.jpg" medium="image">
			<media:title type="html">Shaivi Dave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_24.jpg" medium="image">
			<media:title type="html">Shaivi Dave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_35.jpg" medium="image">
			<media:title type="html">Theme Party @ MVP Open Day Hyderabad</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_37.jpg" medium="image">
			<media:title type="html">Theme Party @ MVP Open Day Hyderabad</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_39.jpg" medium="image">
			<media:title type="html">Suprotim and Minal Agrawal at Minal's birthday</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_38.jpg" medium="image">
			<media:title type="html">Party Time at MVP Open Day Hyderabad</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpfun/mvpopenday2010_42.jpg" medium="image">
			<media:title type="html">Watching Pinal Flying Kytes </media:title>
		</media:content>
	</item>
		<item>
		<title>SQLAuthority News &#8211; MVP Open Day South Asia &#8211; Jan 20, 2010 &#8211; Jan 23, 2010 &#8211; Review Part Business</title>
		<link>http://blog.sqlauthority.com/2010/02/02/sqlauthority-news-mvp-open-day-south-asia-jan-20-2010-jan-23-2010-review-part-business/</link>
		<comments>http://blog.sqlauthority.com/2010/02/02/sqlauthority-news-mvp-open-day-south-asia-jan-20-2010-jan-23-2010-review-part-business/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 01:30:40 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[MVP]]></category>
		<category><![CDATA[Pinal Dave]]></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[SQL User Group]]></category>
		<category><![CDATA[SQLAuthority Author Visit]]></category>
		<category><![CDATA[SQLAuthority News]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7896</guid>
		<description><![CDATA[MVP Open Day South Asia was held in Hyderabad from Jan 20, 2010 to Jan 23, 2010. This event was a fun-filled as well as an educational event. This event was held at Microsoft IDC at Hyderabad – the largest Microsoft Development location after Redmond. I had a great time meeting my friends and some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7896&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">MVP Open Day South Asia was held in Hyderabad from Jan 20, 2010 to Jan 23, 2010. This event was a fun-filled as well as an educational event. This event was held at Microsoft IDC at Hyderabad – the largest Microsoft Development location after Redmond. I had a great time meeting my friends and some of the renowned experts from all over the South Asia. The whole event started with networking with other MVPs as well with Product Group members.</p>
<p style="text-align:justify;">The reason many MVPs attended this event is that they were very keen to know the Product Team Members. We use many different Microsoft Products and a chance to meet the maker of the product is considered to be very important for any technology enthusiast. However, as soon as the euphoria of meeting the person is over, the next round starts about the rave and rants for the product. I think this is the best part of the event, which both parties appreciate the most.</p>
<p style="text-align:justify;">We were blessed with an excellent Key Note session every day. The first day we had Technical Opening Session by SriniKoppolu (MD &amp; VP) for MSIDC. He has made MS IDC possible in India – most of the credit goes to him. It was amazing to listen to a person like him; also, I must say that he is the owner of a very polite as well as down to earth personality. We also managed to click a group photograph with him. This session was followed by technical sessions by many different product group managers.</p>
<p style="text-align:justify;">The second day, we had the Key Note by Rajiv Kumar, GM, MBD, MSIDC, and on the third day, the Key Note was delivered by Chandrasekar Gopalan, Director (Dev Support), GTSC. So many events occur at MS IDC; there is so much to learn from the top leadership of the Microsoft. The best part was the round table meeting with SQL Server Product Team at IDC. We were able to meet people who are behind SQL Server product. We were able to ask them our queries as well as learn few internal tricks from them. I really enjoyed the session on SQL Azure and SQL Server R2. Again, we all MVPs were not willing to leave the round table session wanting for more. Finally, Abhishek Kant managed to bring an end to the session when he saw that SQL Server Team was busy for almost 45 min after the completion of the session. Media session was one of the most interesting sessions where we all learned about how we can be part of media community.</p>
<p style="text-align:justify;">This event had perfect ending for all the SQL Enthusiasts as SQL PASS President <a href="http://www.solidq.in/" target="_blank"><strong>Rushabh Mehta</strong></a> himself attended the meeting on last day and addressed MVPs who are excited for SQL Server. He provided his vision for SQL PASS with South Asia as well globally. Rushabh answered so many questions for the community in the last one hour of his session, which mainly comprised of lots of questions and answers. The questions ranged from SQL events organization to SQL Awareness in the community. It was great to listen from PASS President himself about his global vision on SQL Server.</p>
<p style="text-align:justify;">The credit for this successful event goes to SQL Server MVP Lead <a href="http://www.abhishekkant.net/" target="_blank"><strong><em>Abhishek Kant</em></strong></a>. This event was a very smoothly executed event, and there was not even a single boring incident. I must say that I have immensely enjoyed this event. There were lots of fun stuff at the event as well, and I will cover them in next series of this post.</p>
<p style="text-align:justify;">Professionally, I am taking away a treasure of knowledge. Community is very important and it has no boundaries. <strong><em>Allen </em></strong>from Kathmandu, Nepal, is someone whom I respect for his continuous community efforts. I was very fortunate to learn new methods to help the community and learn tricks, where I can help more people with limited resources. I was able to talk with <a href="http://beyondrelational.com/blogs/jacob/" target="_blank"><strong>Jacob Sebastian</strong></a> for more than 6 hours during our journey and was also could enjoy the company of the greatest tech blogger of all the time, Mr. AmitAgrawal and we also discussed about his successful technical blog. <a href="http://www.labnol.org/" target="_blank"><strong>Amit Agrawal</strong></a> is one of the most down-to-earth persons I have ever met in my life. Before I met him, I had already heard that he is very polite and helpful; so I was really eager to meet him. After the meeting, I realized that he is like an old friend to almost everyone he meets. Well, we will talk about him more in another blog post. If I could pick one person who is more excited about Windows Technology than MS itself, then it is <a href="http://www.msigeek.com/" target="_blank"><strong>Vijay Raj</strong></a>; it was great to meet him again. I was also very pleased to meet <a href="http://himabinduvejella.blogspot.com/" target="_blank"><strong>Hima Bindu Vejella</strong></a> from Hyderabad. <a href="http://www.dotnetcurry.com/" target="_blank"><strong>Suprotim Agrawal</strong></a> and <a href="http://saffronstroke.com/" target="_blank"><strong>Minal Agrawal</strong></a> are great usual. Also, I enjoyed meeting many MVPs at this meeting.</p>
<p style="text-align:justify;">In the next series, I will talk more about fun part of this event.</p>
<p style="text-align:justify;">
<div class="wp-caption alignnone" style="width: 510px"><img title="Pinal @ MVPOpenDay Hyderabad IDC" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_27.jpg" alt="Pinal @ MVPOpenDay Hyderabad IDC" width="500" height="375" /><p class="wp-caption-text">Pinal @ MVPOpenDay Hyderabad IDC</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Abhishek Kant, Pinal Dave" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_29.jpg" alt="Abhishek Kant, Pinal Dave" width="500" height="375" /><p class="wp-caption-text">Abhishek Kant, Pinal Dave</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Pinal Dave (SQLAuthority), Amit Agrawal (labnol)" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_28.jpg" alt="Pinal Dave (SQLAuthority), Amit Agrawal (labnol)" width="500" height="375" /><p class="wp-caption-text">Pinal Dave (SQLAuthority), Amit Agrawal (labnol)</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Abhishek Kant @ MVPOpenDay Hyderabad IDC" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_41.jpg" alt="Abhishek Kant @ MVPOpenDay Hyderabad IDC" width="500" height="375" /><p class="wp-caption-text">Abhishek Kant @ MVPOpenDay Hyderabad IDC</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Jacob Sebastian, Pinal Dave " src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_31.jpg" alt="Jacob Sebastian, Pinal Dave " width="500" height="375" /><p class="wp-caption-text">Jacob Sebastian, Pinal Dave </p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Rushabh Mehta @ MVPOpenDay Hyderabad IDC" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_21.jpg" alt="Rushabh Mehta @ MVPOpenDay Hyderabad IDC" width="500" height="375" /><p class="wp-caption-text">Rushabh Mehta @ MVPOpenDay Hyderabad IDC</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Pinal Dave (SQLAuthority), Vijay Raj (MSIGeek)" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_26.jpg" alt="Pinal Dave (SQLAuthority), Vijay Raj (MSIGeek)" width="500" height="666" /><p class="wp-caption-text">Pinal Dave (SQLAuthority), Vijay Raj (MSIGeek)</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Pianl Dave, Allen Bailochan Tuladhar" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_30.jpg" alt="Pianl Dave, Allen Bailochan Tuladhar" width="500" height="375" /><p class="wp-caption-text">Pianl Dave, Allen Bailochan Tuladhar</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Pinal Dave, Sanjay Shetty" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_36.jpg" alt="Pinal Dave, Sanjay Shetty" width="500" height="375" /><p class="wp-caption-text">Pinal Dave, Sanjay Shetty</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img title="Renuka Prasad, Pinal Dave" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_34.jpg" alt="Renuka Prasad, Pinal Dave" width="500" height="375" /><p class="wp-caption-text">Renuka Prasad, Pinal Dave</p></div>
<div class="wp-caption alignnone" style="width: 510px"><img class=" " title="SQLAuthority.com" src="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_32.jpg" alt="SQLAuthority.com" width="500" height="375" /><p class="wp-caption-text">SQLAuthority.com</p></div>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Filed under: <a href='http://blog.sqlauthority.com/category/mvp/'>MVP</a>, <a href='http://blog.sqlauthority.com/category/tech/pinal-dave/'>Pinal Dave</a>, <a href='http://blog.sqlauthority.com/category/technology/sql/'>SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-authority/'>SQL Authority</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-query/'>SQL Query</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-server/'>SQL Server</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-tips-and-tricks/'>SQL Tips and Tricks</a>, <a href='http://blog.sqlauthority.com/category/sql-user-group/'>SQL User Group</a>, <a href='http://blog.sqlauthority.com/category/sqlauthority/sqlauthority-author-visit/'>SQLAuthority Author Visit</a>, <a href='http://blog.sqlauthority.com/category/sqlauthority/sqlauthority-news/'>SQLAuthority News</a>, <a href='http://blog.sqlauthority.com/category/technology/t-sql/'>T SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/'>Technology</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7896/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7896&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/02/02/sqlauthority-news-mvp-open-day-south-asia-jan-20-2010-jan-23-2010-review-part-business/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_27.jpg" medium="image">
			<media:title type="html">Pinal @ MVPOpenDay Hyderabad IDC</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_29.jpg" medium="image">
			<media:title type="html">Abhishek Kant, Pinal Dave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_28.jpg" medium="image">
			<media:title type="html">Pinal Dave (SQLAuthority), Amit Agrawal (labnol)</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_41.jpg" medium="image">
			<media:title type="html">Abhishek Kant @ MVPOpenDay Hyderabad IDC</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_31.jpg" medium="image">
			<media:title type="html">Jacob Sebastian, Pinal Dave </media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_21.jpg" medium="image">
			<media:title type="html">Rushabh Mehta @ MVPOpenDay Hyderabad IDC</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_26.jpg" medium="image">
			<media:title type="html">Pinal Dave (SQLAuthority), Vijay Raj (MSIGeek)</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_30.jpg" medium="image">
			<media:title type="html">Pianl Dave, Allen Bailochan Tuladhar</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_36.jpg" medium="image">
			<media:title type="html">Pinal Dave, Sanjay Shetty</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_34.jpg" medium="image">
			<media:title type="html">Renuka Prasad, Pinal Dave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/mvpopenday2010/mvpbusy/mvpopenday2010_32.jpg" medium="image">
			<media:title type="html">SQLAuthority.com</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER &#8211; Question &#8211; How to Convert Hex to Decimal</title>
		<link>http://blog.sqlauthority.com/2010/02/01/sql-server-question-how-to-convert-hex-to-decimal/</link>
		<comments>http://blog.sqlauthority.com/2010/02/01/sql-server-question-how-to-convert-hex-to-decimal/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 01:30:06 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Pinal Dave]]></category>
		<category><![CDATA[Readers Question]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Authority]]></category>
		<category><![CDATA[SQL Puzzle]]></category>
		<category><![CDATA[SQL Query]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Tips and Tricks]]></category>
		<category><![CDATA[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7785</guid>
		<description><![CDATA[In one of the recent projects, I realize the bottleneck of the query was an inline function which was converting Hex to Decimal. I optimized the inline function and reduced the query running time to one-tenth of the original running time. Later, I was eager to find out the script my blog readers might be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7785&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">In one of the recent projects, I realize the bottleneck of the query was an inline function which was converting Hex to Decimal. I optimized the inline function and reduced the query running time to one-tenth of the original running time. Later, I was eager to find out the script my blog readers might be using for hex to decimal conversion. Please leave your comments here and I will consider all the valid answers and publish with <strong><em>due credit </em></strong>to the author in one of the future posts. If the script you have posted here is not your original script, I suggest that you include the source as well.</p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Filed under: <a href='http://blog.sqlauthority.com/category/tech/pinal-dave/'>Pinal Dave</a>, <a href='http://blog.sqlauthority.com/category/readers-question/'>Readers Question</a>, <a href='http://blog.sqlauthority.com/category/technology/sql/'>SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-authority/'>SQL Authority</a>, <a href='http://blog.sqlauthority.com/category/sql-puzzle/'>SQL Puzzle</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-query/'>SQL Query</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-server/'>SQL Server</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-tips-and-tricks/'>SQL Tips and Tricks</a>, <a href='http://blog.sqlauthority.com/category/sqlserver/'>SQLServer</a>, <a href='http://blog.sqlauthority.com/category/technology/t-sql/'>T SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/'>Technology</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7785/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7785/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7785/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7785/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7785/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7785/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7785/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7785/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7785/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7785/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7785&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/02/01/sql-server-question-how-to-convert-hex-to-decimal/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER &#8211; Location of Resource Database in SQL Server Editions</title>
		<link>http://blog.sqlauthority.com/2010/01/31/sql-server-location-of-resource-database-in-sql-server-editions/</link>
		<comments>http://blog.sqlauthority.com/2010/01/31/sql-server-location-of-resource-database-in-sql-server-editions/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 01:30:56 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Pinal Dave]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Authority]]></category>
		<category><![CDATA[SQL Query]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL System Table]]></category>
		<category><![CDATA[SQL Tips and Tricks]]></category>
		<category><![CDATA[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7881</guid>
		<description><![CDATA[While working on project of database backup and recovery, I found out that my client was not aware of the resource database at all. The Resource database is a read-only database that contains all the system objects that are included with SQL Server.
Location of this database is at different places in the different version of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7881&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">While working on project of database backup and recovery, I found out that my client was not aware of the resource database at all. The Resource database is a read-only database that contains all the system objects that are included with SQL Server.</p>
<p style="text-align:justify;">Location of this database is at different places in the different version of SQL Server.</p>
<p style="text-align:justify;"><strong>In SQL Server 2008:</strong></p>
<p style="text-align:justify;"><em>&lt;drive&gt;</em>:\Program Files\Microsoft SQL Server\MSSQL10.<em>&lt;instance_name&gt;</em>\Binn\.<br />
The <strong>Resource</strong> database cannot be moved.</p>
<p style="text-align:justify;">
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="ResourceDB location in SQL Server 2008" src="http://www.pinaldave.com/bimg/resourcedb.jpg" alt="ResourceDB location in SQL Server 2008" width="501" height="151" /></dt>
<dd class="wp-caption-dd">ResourceDB location in SQL Server 2008</dd>
</dl>
</div>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong>In SQL Server 2005:</strong></p>
<p style="text-align:justify;">Same place where master database is located.<br />
The <strong>Resource</strong> database have to move with master database.</p>
<p style="text-align:justify;">You can run following commands to know resourcedb version and last updated time.</p>
<p><code style="font-size:12px;"><span style="color:blue;">SELECT </span><span style="color:magenta;">SERVERPROPERTY</span><span style="color:gray;">(</span><span style="color:red;">'ResourceVersion'</span><span style="color:gray;">) </span><span style="color:black;">ResourceVersion</span><span style="color:gray;">,<br />
</span><span style="color:magenta;">SERVERPROPERTY</span><span style="color:gray;">(</span><span style="color:red;">'ResourceLastUpdateDateTime'</span><span style="color:gray;">) </span><span style="color:black;">ResourceLastUpdateDateTime<br />
GO</span></code></p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/resourcedbver.jpg" alt="" width="604" height="157" /></p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
<dl>
<dt> </dt>
</dl>
Filed under: <a href='http://blog.sqlauthority.com/category/tech/pinal-dave/'>Pinal Dave</a>, <a href='http://blog.sqlauthority.com/category/technology/sql/'>SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-authority/'>SQL Authority</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-query/'>SQL Query</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-server/'>SQL Server</a>, <a href='http://blog.sqlauthority.com/category/sql-system-table/'>SQL System Table</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-tips-and-tricks/'>SQL Tips and Tricks</a>, <a href='http://blog.sqlauthority.com/category/sqlserver/'>SQLServer</a>, <a href='http://blog.sqlauthority.com/category/technology/t-sql/'>T SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/'>Technology</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7881/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7881&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/01/31/sql-server-location-of-resource-database-in-sql-server-editions/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/resourcedb.jpg" medium="image">
			<media:title type="html">ResourceDB location in SQL Server 2008</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/resourcedbver.jpg" medium="image" />
	</item>
		<item>
		<title>SQL SERVER &#8211; Several Readers Questions and Readers Answers</title>
		<link>http://blog.sqlauthority.com/2010/01/30/sql-server-several-readers-questions-and-readers-answers/</link>
		<comments>http://blog.sqlauthority.com/2010/01/30/sql-server-several-readers-questions-and-readers-answers/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 01:30:50 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Pinal Dave]]></category>
		<category><![CDATA[Readers Contribution]]></category>
		<category><![CDATA[Readers Question]]></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 Tips and Tricks]]></category>
		<category><![CDATA[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7847</guid>
		<description><![CDATA[I often get questions on blog and many times I even get answers from readers as well. This article is collection of few of the questions and answers by readers of this blog.
Q. How the records of a table can be scripted in INSERT INTO statements?
A. In SQL Server 2008 : Right click Database &#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7847&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">I often get questions on blog and many times I even get answers from readers as well. This article is collection of few of the questions and answers by readers of this blog.</p>
<p style="text-align:justify;"><strong>Q. How the records of a table can be scripted in INSERT INTO statements?</strong></p>
<p style="text-align:justify;">A. In SQL Server 2008 : Right click Database &gt; Tasks &gt; Generate Scripts &gt; In the wizard on Choose Script Option page, set Script Data option to True and complete the wizard.For SQL 2005 or earlier versions, use Database Publishing Wizard. For more details about Database Publishing wizard, please visit the blog <a href="http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/" target="_blank">http://blog.sqlauthority.com/2007/11/16/sql-server-2005-generate-script-with-data-from-database-database-publishing-wizard/</a></p>
<p style="text-align:justify;"><strong>Q. How can I track the changes or identify the latest insert-update-delete from a table?</strong></p>
<p style="text-align:justify;">A. In SQL Server 2005 and earlier versions, there is no inbuilt functionality to know which row was recently changed and what were the changes. However, in SQL Server 2008, a new feature known as Change Data Capture (CDC) has been introduced to capture the changed data. To get more details about CDC, please visit <a href="http://blog.sqlauthority.com/2009/08/15/sql-server-introduction-to-change-data-capture-cdc-in-sql-server-2008/">http://blog.sqlauthority.com/2009/08/15/sql-server-introduction-to-change-data-capture-cdc-in-sql-server-2008/</a></p>
<p style="text-align:justify;">In versions prior to 2008, the best method to track changes at the table level is Triggers and at the database level is SQL Profiler. Another workaround is to add one more column in the table like “ModifiedDate” to keep the current date-time of the change. Timestamp, rowversion and checksum columns are for optimistic concurrency. These are not suitable to track changes later.</p>
<p style="text-align:justify;"><strong>Q. I am getting collation conflict error when joining columns of two tables?</strong></p>
<p style="text-align:justify;">A. When we try to compare, join or union two columns of different collations, the following error occurs: <em>“Cannot resolve the collation conflict for equal to operation”.</em></p>
<p style="text-align:justify;">Collation represents the character set of a data and can be specified at server, database and column levels. Collation of server is default for databases and collation of database is default for all columns. The collation is matched in following cases while executing a SELECT statement:</p>
<p style="text-align:justify;">SELECT col1, col2<br />
FROM Table1.col1 = Table2.col4<br />
UNION<br />
SELECT col5, col6<br />
FROM Table3</p>
<p style="text-align:justify;">Here make sure that collation of following columns should match<br />
col1 = col5<br />
col1 = col4<br />
col2 = col6</p>
<p style="text-align:justify;">To resolve this issue, you can either specify collation with column name in t-sql statement or change the collation of column permanently by altering the table, database or even server. For more details on how to specify collation in t-sql statement, please check following article: <a href="http://blog.sqlauthority.com/2007/06/11/sql-server-cannot-resolve-collation-conflict-for-equal-to-operation/">http://blog.sqlauthority.com/2007/06/11/sql-server-cannot-resolve-collation-conflict-for-equal-to-operation/</a></p>
<p style="text-align:justify;">Sometimes, this error occurs while comparing the table with temporary tables. In this case, check the default collation of your working database and tempdb. If they do not match, then apply the above mentioned resolution.</p>
<p style="text-align:justify;"><strong>Q. How can I get data from a database on another server?</strong></p>
<p style="text-align:justify;">A. If you want to import data only through t-sql query, then either use OPENDATASOURCE function. To repeatedly get data from another server, create a linked server and then use OPENQUERY function or use 4 part naming. If you are not adhered with T-SQL, then better use import/export wizard, and you can save it as a SSIS package for future use.</p>
<p style="text-align:justify;"><strong>Q. My multilanguage data is not inserting correctly and returning as ???. How can I store Multilanguage data in a table?</strong></p>
<p style="text-align:justify;">A. There are two things to keep in mind while storing unicode data. First, the column must be of unicode data type (nchar, nvarchar, ntext). Second, the value must be prefixed with N while insertion. For example,</p>
<p style="text-align:justify;">INSERT INTO table (Hindi_col) values (N’hindi data’)</p>
<p style="text-align:justify;">I will post the second series of readers&#8217; question and answers in future posts.</p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Filed under: <a href='http://blog.sqlauthority.com/category/tech/pinal-dave/'>Pinal Dave</a>, <a href='http://blog.sqlauthority.com/category/readers-contribution/'>Readers Contribution</a>, <a href='http://blog.sqlauthority.com/category/readers-question/'>Readers Question</a>, <a href='http://blog.sqlauthority.com/category/technology/sql/'>SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-authority/'>SQL Authority</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-query/'>SQL Query</a>, <a href='http://blog.sqlauthority.com/category/tech/sql-scripts/'>SQL Scripts</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-server/'>SQL Server</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-tips-and-tricks/'>SQL Tips and Tricks</a>, <a href='http://blog.sqlauthority.com/category/sqlserver/'>SQLServer</a>, <a href='http://blog.sqlauthority.com/category/technology/t-sql/'>T SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/'>Technology</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7847/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7847/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7847/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7847/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7847/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7847/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7847/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7847/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7847/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7847/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7847&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/01/30/sql-server-several-readers-questions-and-readers-answers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLAuthority News &#8211; Microsoft in India &#8211; Leadership Profiles</title>
		<link>http://blog.sqlauthority.com/2010/01/29/sqlauthority-news-microsoft-in-india-leadership-profiles/</link>
		<comments>http://blog.sqlauthority.com/2010/01/29/sqlauthority-news-microsoft-in-india-leadership-profiles/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 01:30:30 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Authority]]></category>
		<category><![CDATA[SQL Documentation]]></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[SQLAuthority Website Review]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7876</guid>
		<description><![CDATA[Recently when I have attended SQLAuthority News – MVP Open Day South Asia – Jan 20, 2010 – Jan 23, 2010 I got the chance to attend the keynote by Srini Koppolu Corporate Vice President &#38; Managing Director (Microsoft India Development Center). It was great keynote and very interesting. We all were listening it carefully [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7876&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">Recently when I have attended SQLAuthority News – MVP Open Day South Asia – Jan 20, 2010 – Jan 23, 2010 I got the chance to attend the keynote by Srini Koppolu Corporate Vice President &amp; Managing Director (Microsoft India Development Center). It was great keynote and very interesting. We all were listening it carefully to the master who developed IDC. While listening him I realize that I do not know other pillars of Microsoft India. Just searching a bit online on MS site I came across following site which has list of all the leaders of the Microsoft India.</p>
<p style="text-align:justify;">I am sure just like me there are many others who wonder about the top leadership of Microsoft India.</p>
<p style="text-align:justify;">I have found following link on MS site where they have listed all the top leaders along with their bio.</p>
<p style="text-align:justify;">
<div class="wp-caption alignnone" style="width: 509px"><img title="MS Leadership" src="http://www.pinaldave.com/bimg/MSLeadership.jpg" alt="MS Leadership" width="499" height="663" /><p class="wp-caption-text">MS Leadership</p></div>
<p><a href="http://www.microsoft.com/india/msindia/msindia_executive_leadership.aspx" target="_blank">Microsoft in India » Leadership Profiles</a></p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Filed under: <a href='http://blog.sqlauthority.com/category/technology/sql/'>SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-authority/'>SQL Authority</a>, <a href='http://blog.sqlauthority.com/category/sql-documentation/'>SQL Documentation</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-query/'>SQL Query</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-server/'>SQL Server</a>, <a href='http://blog.sqlauthority.com/category/technology/sql-tips-and-tricks/'>SQL Tips and Tricks</a>, <a href='http://blog.sqlauthority.com/category/sqlauthority/sqlauthority-news/'>SQLAuthority News</a>, <a href='http://blog.sqlauthority.com/category/sqlauthority/sqlauthority-website-review/'>SQLAuthority Website Review</a>, <a href='http://blog.sqlauthority.com/category/technology/t-sql/'>T SQL</a>, <a href='http://blog.sqlauthority.com/category/technology/'>Technology</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7876/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7876/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7876/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7876/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7876/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7876/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7876/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7876/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7876/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7876/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7876&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/01/29/sqlauthority-news-microsoft-in-india-leadership-profiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/MSLeadership.jpg" medium="image">
			<media:title type="html">MS Leadership</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLAuthority News &#8211; Community Tech Days &#8211; Jan 30, 2010 &#8211; Must Attend</title>
		<link>http://blog.sqlauthority.com/2010/01/28/sqlauthority-news-community-tech-days-jan-30-2010-must-attend/</link>
		<comments>http://blog.sqlauthority.com/2010/01/28/sqlauthority-news-community-tech-days-jan-30-2010-must-attend/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 01:30:24 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Pinal Dave]]></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 Author Visit]]></category>
		<category><![CDATA[SQLAuthority News]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[SQL Azure]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7873</guid>
		<description><![CDATA[
Attend deep technology sessions for developers and IT professionals, as some of the best-known names come to your city to share their insights in topics ranging from .Net, Visual studio, Silverlight, to Windows and SQL Server. Build connections with Microsoft experts and community members and gain the inspiration and skills needed to maximize your impact [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7873&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;"><a href="http://www.communitytechdays.com/" target="_blank"><img src="http://www.pinaldave.com/bimg/ctdarrow.jpg" alt="" width="402" height="199" /></a></p>
<p style="text-align:justify;">Attend deep technology sessions for developers and IT professionals, as some of the best-known names come to your city to share their insights in topics ranging from .Net, Visual studio, Silverlight, to Windows and SQL Server. Build connections with Microsoft experts and community members and gain the inspiration and skills needed to maximize your impact on your organization while enhancing your career.</p>
<p style="text-align:justify;">In Ahmedabad this event will happen on January 30, 2010. Just like last event we are expecting this time as well the event will have astonishing success and huge response. We will have five tech sessions back to back with lots of interesting and innovative efficient Microsoft products. The details of the sessions for this event is as following.</p>
<p style="text-align:justify;">I will be talking about SQL Azure.</p>
<p style="text-align:justify;"><em><strong>Microsoft SQL Azure Platform provide all the necessary building database blocks to develop and host rich database applications that can service an Internet-scale user population while storing nearly limitless amounts of data.</strong></em></p>
<p style="text-align:justify;">The venue for this event is Bhaikaka Hall, located at the center of the city. The complete address of the venue is <strong>Bhai Kaka Hall</strong>, Nr British Library, Nr Law Garden, Navrangpura, Ahmedabad &#8211; 380009. Please arrive early to secure your place. Last time we had many users showed up at very last moment and we were not able to accommodate after 300+ count. The onsite registration will start at <strong>9:30 AM</strong> on January 30, 2010.</p>
<p style="text-align:justify;"><strong><a href="http://www.communitytechdays.com/" target="_blank">Register for this event here</a></strong></p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
<p style="text-align:justify;">
Posted in Pinal Dave, SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, SQLAuthority Author Visit, SQLAuthority News, T SQL, Technology Tagged: SQL Azure <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7873/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7873/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7873/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7873/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7873/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7873/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7873/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7873/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7873/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7873/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7873&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/01/28/sqlauthority-news-community-tech-days-jan-30-2010-must-attend/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/ctdarrow.jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News &#8211; SQL Server 2008 R2 &#8211; Release Date in May 2010</title>
		<link>http://blog.sqlauthority.com/2010/01/27/sqlauthority-news-sql-server-2008-r2-release-date-in-may-2010/</link>
		<comments>http://blog.sqlauthority.com/2010/01/27/sqlauthority-news-sql-server-2008-r2-release-date-in-may-2010/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 01:30:51 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<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[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7844</guid>
		<description><![CDATA[Microsoft has announced that SQL Server 2008 R2 will be available by May 2010. Its CTP (Community Technology Preview) version was already available from August 2009. It is still available for download.
This new release offers many benefits over the previous versions. Also, the pricing has not been revealed thus far.
What’s new?

Master Data Services: This  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7844&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">Microsoft has announced that SQL Server 2008 R2 will be available by May 2010. Its CTP (Community Technology Preview) version was already available from August 2009. It is still available for download.</p>
<p style="text-align:justify;">This new release offers many benefits over the previous versions. Also, the pricing has not been revealed thus far.</p>
<p style="text-align:justify;"><strong>What’s new?</strong></p>
<ul style="text-align:justify;">
<li><strong>Master Data Services</strong>: This      technology deals with the secure and direct management of master data,      ensuring its integrity.</li>
<li><strong>StreamInsight Technology</strong>: This      technology deals with complex high-scale event processing.</li>
</ul>
<p style="text-align:justify;"><strong>Benefits</strong></p>
<p style="text-align:justify;">This technology has helped the IT departments of many prominent industries to effectively manage and monitor information centrally. Some of the major highlights of this technology are as follows: the central management of information, including databases; and support for virtualization and Live Migration. It also supports the effective deployment and development of applications.</p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
<div id="_mcePaste" style="overflow:hidden;position:absolute;left:-10000px;top:0;width:1px;height:1px;text-align:justify;"><!--[if gte mso 9]&gt;  800x600  &lt;![endif]--><!--[if gte mso 9]&gt;  Normal 0     false false false  EN-US X-NONE HI             MicrosoftInternetExplorer4              &lt;![endif]--><!--[if gte mso 9]&gt;                                                                                                                                            &lt;![endif]--><!--  /* Font Definitions */  @font-face 	{font-family:Wingdings; 	panose-1:5 0 0 0 0 0 0 0 0 0; 	mso-font-charset:2; 	mso-generic-font-family:auto; 	mso-font-pitch:variable; 	mso-font-signature:0 268435456 0 0 -2147483648 0;} @font-face 	{font-family:"MS Mincho"; 	panose-1:2 2 6 9 4 2 5 8 3 4; 	mso-font-alt:"ＭＳ 明朝"; 	mso-font-charset:128; 	mso-generic-font-family:modern; 	mso-font-pitch:fixed; 	mso-font-signature:-536870145 1791491579 18 0 131231 0;} @font-face 	{font-family:"MS Mincho"; 	panose-1:2 2 6 9 4 2 5 8 3 4; 	mso-font-alt:"ＭＳ 明朝"; 	mso-font-charset:128; 	mso-generic-font-family:modern; 	mso-font-pitch:fixed; 	mso-font-signature:-536870145 1791491579 18 0 131231 0;} @font-face 	{font-family:"\@MS Mincho"; 	panose-1:2 2 6 9 4 2 5 8 3 4; 	mso-font-charset:128; 	mso-generic-font-family:modern; 	mso-font-pitch:fixed; 	mso-font-signature:-536870145 1791491579 18 0 131231 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman","serif"; 	mso-fareast-font-family:"MS Mincho"; 	mso-fareast-language:JA; 	mso-bidi-language:AR-SA;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	font-size:10.0pt; 	mso-ansi-font-size:10.0pt; 	mso-fareast-font-family:"MS Mincho";} @page WordSection1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.WordSection1 	{page:WordSection1;}  /* List Definitions */  @list l0 	{mso-list-id:675572756; 	mso-list-type:hybrid; 	mso-list-template-ids:929853708 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} @list l0:level1 	{mso-level-number-format:bullet; 	mso-level-text:; 	mso-level-tab-stop:.5in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:Symbol;} @list l0:level2 	{mso-level-number-format:bullet; 	mso-level-text:o; 	mso-level-tab-stop:1.0in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:"Courier New";} @list l0:level3 	{mso-level-number-format:bullet; 	mso-level-text:; 	mso-level-tab-stop:1.5in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:Wingdings;} @list l0:level4 	{mso-level-number-format:bullet; 	mso-level-text:; 	mso-level-tab-stop:2.0in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:Symbol;} @list l0:level5 	{mso-level-number-format:bullet; 	mso-level-text:o; 	mso-level-tab-stop:2.5in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:"Courier New";} @list l0:level6 	{mso-level-number-format:bullet; 	mso-level-text:; 	mso-level-tab-stop:3.0in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:Wingdings;} @list l0:level7 	{mso-level-number-format:bullet; 	mso-level-text:; 	mso-level-tab-stop:3.5in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:Symbol;} @list l0:level8 	{mso-level-number-format:bullet; 	mso-level-text:o; 	mso-level-tab-stop:4.0in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:"Courier New";} @list l0:level9 	{mso-level-number-format:bullet; 	mso-level-text:; 	mso-level-tab-stop:4.5in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:Wingdings;} ol 	{margin-bottom:0in;} ul 	{margin-bottom:0in;} --><!--[if gte mso 10]&gt; &lt;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:&quot;Table Normal&quot;; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-parent:&quot;&quot;; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:&quot;Times New Roman&quot;,&quot;serif&quot;;} --> <!--[endif]--></p>
<p class="MsoNormal">Microsoft has announced that SQL Server 2008 R2 will be available by May 2010. Its CTP (Community Technology Preview) version was already available from August 2009. It is still available for download.</p>
<p class="MsoNormal">This new realese offers many benefits over the previous versions. Also, the pricing has not been revealed thus far.</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>What’s new?</strong></p>
<p class="MsoNormal">
<ul style="margin-top:0;" type="disc">
<li class="MsoNormal"><strong>Master Data Services</strong>: This      technology deals with the secure and direct management of master data,      ensuring its integrity.</li>
<li class="MsoNormal"><strong>StreamInsight Technology</strong>: This      technology deals with complex high-scale event processing.</li>
</ul>
<p class="MsoNormal">
<p class="MsoNormal"><strong>Benefits</strong></p>
<p class="MsoNormal">This technology has helped the IT departments of many prominent industries to effectively manage and monitor information centrally. Some of the major highlights of this technology are as follows: the central management of information, including databases; and support for virtualization and Live Migration. It also supports the effective deployment and development of applications.</p>
</div>
Posted in SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, SQLAuthority News, SQLServer, T SQL, Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7844/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7844/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7844/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7844/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7844/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7844/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7844/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7844/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7844/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7844/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7844&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/01/27/sqlauthority-news-sql-server-2008-r2-release-date-in-may-2010/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLAuthority News &#8211; Download White Paper &#8211; Troubleshooting Performance Problems in SQL Server 2008</title>
		<link>http://blog.sqlauthority.com/2010/01/26/sqlauthority-news-download-white-paper-troubleshooting-performance-problems-in-sql-server-2008/</link>
		<comments>http://blog.sqlauthority.com/2010/01/26/sqlauthority-news-download-white-paper-troubleshooting-performance-problems-in-sql-server-2008/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 01:30:11 +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[SQL White Papers]]></category>
		<category><![CDATA[SQLAuthority News]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7804</guid>
		<description><![CDATA[It’s not uncommon to experience the occasional slowdown of a database running the Microsoft SQL Server database software. The reasons can range from a poorly designed database to a system that is improperly configured for the workload. As an administrator, you want to proactively prevent or minimize problems; if they occur, you want to diagnose [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7804&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">It’s not uncommon to experience the occasional slowdown of a database running the Microsoft SQL Server database software. The reasons can range from a poorly designed database to a system that is improperly configured for the workload. As an administrator, you want to proactively prevent or minimize problems; if they occur, you want to diagnose the cause and take corrective actions to fix the problem whenever possible. This white paper provides step-by-step guidelines for diagnosing and troubleshooting common performance problems by using publicly available tools such as:</p>
<ul style="text-align:justify;">
<li>SQL Server Profiler</li>
<li>System Monitor (in the Windows Server 2003 operating system) or Performance Monitor (in the Windows Vista operating system and Windows Server 2008), also known as Perfmon</li>
<li>Dynamic management views (sometimes referred to as DMVs)</li>
<li>SQL Server Extended Events (Extended Events) and the data collector, which are new in SQL Server 2008.</li>
</ul>
<p style="text-align:justify;">Download “<a href="http://download.microsoft.com/download/D/B/D/DBDE7972-1EB9-470A-BA18-58849DB3EB3B/TShootPerfProbs2008.docx">Troubleshooting Performance Problems in SQL Server 2008</a>” from the Microsoft Download Center.</p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Posted in SQL, SQL Authority, SQL Documentation, SQL Download, SQL Query, SQL Server, SQL Tips and Tricks, SQL White Papers, SQLAuthority News, T SQL, Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7804/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7804/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7804/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7804/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7804/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7804/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7804/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7804/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7804/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7804/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7804&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/01/26/sqlauthority-news-download-white-paper-troubleshooting-performance-problems-in-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER &#8211; Find Statistics Update Date &#8211; Update Statistics</title>
		<link>http://blog.sqlauthority.com/2010/01/25/sql-server-find-statistics-update-date-update-statistics/</link>
		<comments>http://blog.sqlauthority.com/2010/01/25/sql-server-find-statistics-update-date-update-statistics/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 01:30:50 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Pinal Dave]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Authority]]></category>
		<category><![CDATA[SQL Index]]></category>
		<category><![CDATA[SQL Optimization]]></category>
		<category><![CDATA[SQL Performance]]></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>
		<category><![CDATA[SQL Statistics]]></category>
		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7791</guid>
		<description><![CDATA[Statistics are one of the most important factors of a database as it contains information about how data is distributed in the database objects (tables, indexes etc). It is quite common to listen people talking about not optimal plan and expired statistics. Quite often I have heard the suggestion to update the statistics if query [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7791&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">Statistics are one of the most important factors of a database as it contains information about how data is distributed in the database objects (tables, indexes etc). It is quite common to listen people talking about not optimal plan and expired statistics. Quite often I have heard the suggestion to update the statistics if query is not optimal. Please note that there are many other factors for query to not perform well; expired statistics are one of them for sure.</p>
<p style="text-align:justify;">If you want to know when your statistics was last updated, you can run the following query.</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">USE </span><span style="color:black;">AdventureWorks<br />
GO<br />
</span><span style="color:blue;">SELECT </span><span style="color:black;">name </span><span style="color:blue;">AS </span><span style="color:black;">index_name</span><span style="color:gray;">,<br />
</span><span style="color:magenta;">STATS_DATE</span><span style="color:gray;">(</span><span style="color:magenta;">OBJECT_ID</span><span style="color:gray;">, </span><span style="color:black;">index_id</span><span style="color:gray;">) </span><span style="color:blue;">AS </span><span style="color:black;">StatsUpdated<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">sys.indexes<br />
</span><span style="color:blue;">WHERE </span><span style="color:magenta;">OBJECT_ID </span><span style="color:blue;">= </span><span style="color:magenta;">OBJECT_ID</span><span style="color:gray;">(</span><span style="color:red;">'HumanResources.Department'</span><span style="color:gray;">)<br />
</span><span style="color:black;">GO</span></code></p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/statsupdate.jpg" alt="" width="497" height="242" /></p>
<p style="text-align:justify;">If due to any reason you think that your statistics outdated and you want to update them, you can run following statement. In following statement, I have specified an additional option of FULLSCAN, which implies that the complete table is scanned to update the statistics.</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">USE </span><span style="color:black;">AdventureWorks</span><span style="color:gray;">;<br />
</span><span style="color:black;">GO<br />
</span><span style="color:blue;">UPDATE STATISTICS </span><span style="color:black;">HumanResources.Department<br />
</span><span style="color:blue;">WITH </span><span style="color:black;">FULLSCAN<br />
GO</span></code></p>
<p style="text-align:justify;">Please note that you should only run update statistics if you think they will benefit your query and when your server is not very busy. If you have auto update &#8220;usually” on, the SQL Server takes care of updating stats when necessary. Here, is a quick example where you can see the updating of older statistics using fullscan.</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/statsupdate1.jpg" alt="" width="500" height="621" /></p>
<p style="text-align:justify;">
<p style="text-align:justify;">Statistics is very deep subject, and a lot of things can be discussed over it. We will discuss about many other in-depth topics in some other article in future.</p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Posted in Pinal Dave, SQL, SQL Authority, SQL Index, SQL Optimization, SQL Performance, SQL Query, SQL Scripts, SQL Server, SQL Tips and Tricks, T SQL, Technology Tagged: SQL Statistics, Statistics <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7791/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7791/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7791/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7791/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7791/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7791/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7791/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7791/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7791/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7791/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7791&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/01/25/sql-server-find-statistics-update-date-update-statistics/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

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

		<media:content url="http://www.pinaldave.com/bimg/statsupdate1.jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News &#8211; Download Sample Databases for Microsoft SQL Server 2008 (December 2009) Samples Refresh 4</title>
		<link>http://blog.sqlauthority.com/2010/01/24/sqlauthority-news-download-sample-databases-for-microsoft-sql-server-2008-december-2009-samples-refresh-4/</link>
		<comments>http://blog.sqlauthority.com/2010/01/24/sqlauthority-news-download-sample-databases-for-microsoft-sql-server-2008-december-2009-samples-refresh-4/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 01:30:28 +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[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[SQL Sample Database]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7812</guid>
		<description><![CDATA[This post is response to the one of the most asked question where to get Samples Database for SQL Server 2008.
Download SQL Server 2008 Samples Database from Codeplex.
Reference: Pinal Dave (http://blog.SQLAuthority.com)
Posted in SQL, SQL Authority, SQL Documentation, SQL Download, SQL Query, SQL Server, SQL Tips and Tricks, SQLAuthority News, SQLServer, T SQL, Technology Tagged: SQL [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7812&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">This post is response to the one of the most asked question where to get Samples Database for SQL Server 2008.</p>
<p style="text-align:justify;"><strong><a href="http://msftdbprodsamples.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=37109" target="_blank">Download SQL Server 2008 Samples Database from Codeplex.</a></strong></p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Posted in SQL, SQL Authority, SQL Documentation, SQL Download, SQL Query, SQL Server, SQL Tips and Tricks, SQLAuthority News, SQLServer, T SQL, Technology Tagged: SQL Sample Database <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7812/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7812/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7812/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7812/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7812/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7812/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7812/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7812/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7812/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7812/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7812&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/01/24/sqlauthority-news-download-sample-databases-for-microsoft-sql-server-2008-december-2009-samples-refresh-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLAuthority News &#8211; Remote BLOB Store Provider Library Implementation Specification</title>
		<link>http://blog.sqlauthority.com/2010/01/23/sqlauthority-news-remote-blob-store-provider-library-implementation-specification/</link>
		<comments>http://blog.sqlauthority.com/2010/01/23/sqlauthority-news-remote-blob-store-provider-library-implementation-specification/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 01:30:22 +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[SQL White Papers]]></category>
		<category><![CDATA[SQLAuthority News]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7806</guid>
		<description><![CDATA[Remote BLOB Store (RBS) is designed to move the storage of large binary data (BLOBs) from database servers to commodity storage solutions.
With RBS, BLOB data is stored in storage solutions such as Content Addressable Stores (CAS), commodity hardware with data integrity and fault-tolerance systems, or mega service storage solutions like MSN Blue. A reference to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7806&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">Remote BLOB Store (RBS) is designed to move the storage of large binary data (BLOBs) from database servers to commodity storage solutions.</p>
<p style="text-align:justify;">With RBS, BLOB data is stored in storage solutions such as Content Addressable Stores (CAS), commodity hardware with data integrity and fault-tolerance systems, or mega service storage solutions like MSN Blue. A reference to the BLOB is stored in the database. An application stores and accesses BLOB data by calling into the RBS client library. RBS manages the life cycle of the BLOB, such as doing garbage collection as and when needed.</p>
<p style="text-align:justify;">RBS is an add-on that can be applied to Microsoft SQL Server 2008 and later. It uses auxiliary tables, stored procedures, and an executable to provide its services. A reference to the BLOB (provided by the BLOB Store) is stored in RBS auxiliary tables and an RBS BLOB ID is generated. Applications store this RBS BLOB ID in a column in application tables. These columns in application tables are called <em>RBS Columns</em> in this specification. The RBS Column is not a new data type; it is just a simple binary(20).</p>
<p style="text-align:justify;">Above words are quoted from original Microsoft White Paper Please read complete white paper for excellent notes on what are exact <strong><a href="http://msdn.microsoft.com/en-us/library/cc905212.aspx" target="_blank">specification for Remote BLOB Store Provider Library</a></strong>.</p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Posted in SQL, SQL Authority, SQL Documentation, SQL Download, SQL Query, SQL Server, SQL Tips and Tricks, SQL White Papers, SQLAuthority News, T SQL, Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7806/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7806&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/01/23/sqlauthority-news-remote-blob-store-provider-library-implementation-specification/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER &#8211; Execution Plan &#8211; Estimated I/O Cost &#8211; Estimated CPU Cost &#8211; No Unit</title>
		<link>http://blog.sqlauthority.com/2010/01/22/sql-server-execution-plan-estimated-io-cost-estimated-cpu-cost-no-unit/</link>
		<comments>http://blog.sqlauthority.com/2010/01/22/sql-server-execution-plan-estimated-io-cost-estimated-cpu-cost-no-unit/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 01:30:01 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Authority]]></category>
		<category><![CDATA[SQL Optimization]]></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[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Execution Plan]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7808</guid>
		<description><![CDATA[During the SQL Server Optimization training, I enjoy teaching Execution Plans. I am always sure that questions related to estimated cost will be raised by attendees. Following are some common questions related to costs:
Q: What is the estimated I/O cost?
Q: What is the estimated CPU cost?
Q: Why there is no unit of measurement for estimated [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7808&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;">During the SQL Server Optimization training, I enjoy teaching Execution Plans. I am always sure that questions related to estimated cost will be raised by attendees. Following are some common questions related to costs:</p>
<p style="text-align:justify;"><strong><em>Q: What is the estimated I/O cost?<br />
Q: What is the estimated CPU cost?<br />
Q: Why there is no unit of measurement for estimated costs?</em></strong></p>
<p style="text-align:justify;">There are several other questions. However, let me try to answer the above questions today.</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/qexe.jpg" alt="" width="340" height="324" /></p>
<p style="text-align:justify;">Estimated I/O Cost and CPU Cost are just cost estimations as the names suggest. SQL Server Query Optimizer uses the cost to make the decision on selecting the most efficient execution plan. When any query is executed, the SQL Server Query Optimizer prepares several alternative execution plans to execute the query. Each alternative plans each operation and assign some type of cost on the basis of the heuristic data. This estimated number just implies the amount of work CPU or I/O has to do to complete the task. Due to this reason, there is no unit assigned for these estimations. These estimates should be used by us in the same way by which the SQL Server uses it – The estimate should be used to compare different queries with each other.</p>
<p style="text-align:justify;">Let me know your thoughts on this. Do post here if you have any other questions. I will post the answers in separate posts.</p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
Posted in SQL, SQL Authority, SQL Optimization, SQL Performance, SQL Query, SQL Server, SQL Tips and Tricks, SQLServer, T SQL, Technology Tagged: Execution Plan <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7808/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7808/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7808/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7808/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7808/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7808/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7808/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7808/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7808/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7808/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7808&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/01/22/sql-server-execution-plan-estimated-io-cost-estimated-cpu-cost-no-unit/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/qexe.jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News &#8211; Community Tech Days &#8211; Jan 30, 2010 &#8211; Event Announcement</title>
		<link>http://blog.sqlauthority.com/2010/01/21/sqlauthority-news-community-tech-days-jan-30-2010-event-announcement/</link>
		<comments>http://blog.sqlauthority.com/2010/01/21/sqlauthority-news-community-tech-days-jan-30-2010-event-announcement/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 01:30:01 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[MVP]]></category>
		<category><![CDATA[Pinal Dave]]></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[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[CTD]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7816</guid>
		<description><![CDATA[
Attend deep technology sessions for developers and IT professionals, as some of the best-known names come to your city to share their insights in topics ranging from .Net, Visual studio, Silverlight, to Windows and SQL Server. Build connections with Microsoft experts and community members and gain the inspiration and skills needed to maximize your impact [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7816&subd=sqlauthority&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p style="text-align:justify;"><a href="http://www.communitytechdays.com/" target="_blank"><img class="alignnone" style="border:5px solid black;margin:5px;" src="http://www.pinaldave.com/bimg/ctdarrow.jpg" alt="" width="402" height="199" /></a></p>
<p style="text-align:justify;">Attend deep technology sessions for developers and IT professionals, as some of the best-known names come to your city to share their insights in topics ranging from .Net, Visual studio, Silverlight, to Windows and SQL Server. Build connections with Microsoft experts and community members and gain the inspiration and skills needed to maximize your impact on your organization while enhancing your career.</p>
<p style="text-align:justify;">In Ahmedabad this event will happen on January 30, 2010. Just like last event we are expecting this time as well the event will have astonishing success and huge response. We will have five tech sessions back to back with lots of interesting and innovative efficient Microsoft products. The details of the sessions for this event is as following.</p>
<p style="text-align:justify;"><strong>Sessions:</strong><br />
10:15am &#8211; 11:15am 	Insight of Windows Azure Platform By Mahesh Dhola<br />
11:30am &#8211; 12:30pm 	SQL Azure : Extending SQL Data Platform to Cloud By Pinal Dave<br />
01:30pm &#8211; 02:30pm 	Microsoft Silverlight 4 – An Overview By Dushyantsinh Jadeja<br />
02:30pm &#8211; 03:30pm 	Fall in love with SQL Server 2008 R2 By Jacob Sebastian<br />
03:45pm &#8211; 04:45pm 	Visual Studio 2010 enhancement for developers By Prabhjot Bakshi</p>
<p style="text-align:justify;">Ahmedabad is very much known for its love for SQL Server technology. We will have two sessions which will be on latest innovations on SQL Server.</p>
<h3 style="text-align:justify;">SQL Azure : Extending SQL Data Platform to Cloud By Pinal Dave</h3>
<p style="text-align:justify;">Microsoft SQL Azure Database is a cloud-based relational database service built on SQL Server technologies. It provides a highly available, scalable, multi-tenant database service hosted by Microsoft in the cloud. SQL Azure Database helps to ease provisioning and deployment of multiple databases.</p>
<h3 style="text-align:justify;">Fall in love with SQL Server 2008 R2 By Jacob Sebastian</h3>
<p style="text-align:justify;">SQL Server 2008 R2 delivers several breakthrough capabilities that will enable your organization to scale database operations with confidence, improve IT and developer efficiency, and enable highly scalable and well-managed Business Intelligence on a self-service basis for your users.</p>
<p style="text-align:justify;"><img class="alignnone" style="border:5px solid black;margin:5px;" src="http://www.pinaldave.com/bimg/bhaikaka.jpg" alt="" width="408" height="309" /></p>
<p style="text-align:justify;">The venue for this event is Bhaikaka Hall, located at the center of the city. The complete address of the venue is <strong>Bhai Kaka Hall</strong>, Nr British Library, Nr Law Garden, Navrangpura, Ahmedabad &#8211; 380009. Please arrive early to secure your place. Last time we had many users showed up at very last moment and we were not able to accommodate after 300+ count. The onsite registration will start at <strong>9:30 AM</strong> on January 30, 2010.</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><a href="http://www.communitytechdays.com/" target="_blank">Register for this event here</a></strong></p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (</strong><a href="http://blog.sqlauthority.com/" target="_blank"><strong>http://blog.SQLAuthority.com</strong></a><strong>)</strong></p>
<p style="text-align:justify;"><strong><img class="alignnone" src="http://www.pinaldave.com/bimg/ctd30012010.jpg" alt="" width="500" height="640" /><br />
</strong></p>
<p style="text-align:justify;">
Posted in MVP, Pinal Dave, SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, SQLAuthority News, SQLServer, T SQL, Technology Tagged: CTD <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7816/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7816/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7816/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7816/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7816/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7816/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7816/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7816/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7816/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7816/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=7816&subd=sqlauthority&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/01/21/sqlauthority-news-community-tech-days-jan-30-2010-event-announcement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48aa5a2264e8a27d802bb22ab6ccf688?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pinaldave</media:title>
		</media:content>

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

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

		<media:content url="http://www.pinaldave.com/bimg/ctd30012010.jpg" medium="image" />
	</item>
	</channel>
</rss>