<?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>SQL Server Journey with SQL Authority &#187; DBA</title>
	<atom:link href="http://blog.sqlauthority.com/category/dba/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Wed, 08 Feb 2012 13:09:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.sqlauthority.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/08e35387c05b61340e885b1763a69d9f?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>SQL Server Journey with SQL Authority &#187; DBA</title>
		<link>http://blog.sqlauthority.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.sqlauthority.com/osd.xml" title="SQL Server Journey with SQL Authority" />
	<atom:link rel='hub' href='http://blog.sqlauthority.com/?pushpress=hub'/>
		<item>
		<title>SQL SERVER &#8211; expressor Studio 3.4 Rules Editor &#8211; ETL Graphical Coding Tool</title>
		<link>http://blog.sqlauthority.com/2011/10/11/sql-server-expressor-studio-3-4-rules-editor-etl-graphical-coding-tool/</link>
		<comments>http://blog.sqlauthority.com/2011/10/11/sql-server-expressor-studio-3-4-rules-editor-etl-graphical-coding-tool/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 01:31:01 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[PostADay]]></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[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=14913</guid>
		<description><![CDATA[New in the expressor Studio 3.4 release is the rules editor.  This graphical coding tool replaces the transform editor of earlier versions.  The rules editor works in concert with the newly introduced attribute propagation functionality to minimize the amount of data mapping and coding you need to provide.  The expressor folks are telling me that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=14913&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">New in the <strong><a href="http://go.expressor-software.com/desktop-edition-etl-tool.html?campaignID=70140000000MapQ" target="_blank">expressor Studio 3.4</a></strong> release is the rules editor.  This graphical coding tool replaces the transform editor of earlier versions.  The rules editor works in concert with the newly introduced attribute propagation functionality to minimize the amount of data mapping and coding you need to provide.  The expressor folks are telling me that in a future release we will be able to save and reuse rules, which will make everyone’s  application development tasks even simpler and less prone to errors.</p>
<p style="text-align:justify;">So what’s attribute propagation?  expressor’s starting point observation is that in any transformation most values are either copied from the input record to the output record without any changes or dropped from the output record.  What attribute propagation does is transparently perform these operations without a requirement for coding.  Consequently, within an operator performing a transformation, your only responsibility is to manipulate the values that do require modification.  And this is where the rules editor becomes involved.</p>
<p style="text-align:justify;">Let’s consider an example.  A company wants to give any employee whose tenure with the company started before January 1, 1995 a 5% salary increase.  The application will read a list of employees from a SQL Server database table, determine if the employee’s hire date was before January 1, 1995, and if appropriate calculate a new salary.</p>
<p style="text-align:justify;">Of course expressor offers many ways to develop this application, but I’ll just highlight one approach as it’s the rules editor that I want to discuss.</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/ruleseditor1.png" alt="" width="383" height="88" /></p>
<p style="text-align:justify;">With <strong><a href="http://go.expressor-software.com/desktop-edition-etl-tool.html?campaignID=70140000000MapQ" target="_blank">expressor</a></strong>, this application can be developed using three operators: a SQL Query operator to select the qualified employees from the SQL Server database table, a Transform operator to carry out the salary calculation, and a Write Table operator to write the modified record back to the database table.  The SQL Query operator executes a SELECT statement that limits the result set to only those employees who qualify for the raise.</p>
<p style="text-align:justify;" align="center">SELECT * FROM employees WHERE HIRE_DATE &lt; CONVERT(VARCHAR(23), &#8217;1995-Jan-01&#8242; , 121)</p>
<p style="text-align:justify;">To continue developing the application, I open the rules editor of the Transform operator.</p>
<p style="text-align:justify;"><a href="http://www.pinaldave.com/bimg/ruleseditor2.png"><img class="alignnone" src="http://www.pinaldave.com/bimg/ruleseditor2.png" alt="" width="500" /></a></p>
<p style="text-align:justify;">In the left-hand panel is a listing of the attributes in each incoming record.  The names of these attributes are identical to the table column names, although expressor allows you to easily rename if desired.</p>
<p style="text-align:justify;">The right-hand panel shows the effect of attribute propagation.  That is, each incoming attribute has been transferred to the outgoing record.  The right-facing arrow before each attribute name indicates that the attribute will be automatically initialized and that no coding is required.</p>
<p style="text-align:justify;">To alter the value assigned to the outgoing record’s SALARY attribute, start by using the mouse to drag a connection between the input and output attributes.  An expression rule is displayed.  The default code simply transfers the incoming value to the output.  Also note that the symbol before the output attribute’s name has changed from the right-facing arrow to a diamond, indicating that this attribute is initialized through code.</p>
<p style="text-align:justify;"><a href="http://www.pinaldave.com/bimg/ruleseditor3.png"><img class="alignnone" src="http://www.pinaldave.com/bimg/ruleseditor3.png" alt="" width="500" height="243" /></a></p>
<p style="text-align:justify;">All I need to do to complete the application is modify the default code, applying the salary increase and, since all salaries are stored as whole dollars, apply a rounding, which I can easily do by clicking the Math button in the Edit tab of the ribbon bar and selecting round from the drop down list of functions.</p>
<p style="text-align:justify;"><a href="http://www.pinaldave.com/bimg/ruleseditor4.png"><img class="alignnone" src="http://www.pinaldave.com/bimg/ruleseditor4.png" alt="" width="500" /></a></p>
<p style="text-align:justify;">But what happens when my processing logic is more complex, for example, I only want to give the raise to employees whose commission percentage is smaller than 0.35%.  Then I replace the expression rule with a function rule, where I have full access to the underlying code and I can use the filter helper function to enrich my logic.</p>
<p style="text-align:justify;"><a href="http://www.pinaldave.com/bimg/ruleseditor5.png"><img class="alignnone" src="http://www.pinaldave.com/bimg/ruleseditor5.png" alt="" width="500" /></a></p>
<p style="text-align:justify;">In this example, I demonstrated the use of an expression rule and a function rule in the Transform operator.  These rule types are also available in the Join operator.  Within the Transform operator you can also work with a lookup expression rule and a lookup function rule.  These are the rules you use to access the lookup table artifact, another new feature of expressor Studio 3.4.  And in the Aggregate operator you can use an aggregate expression rule, which allows you to select an aggregating function from a drop down control, or an aggregate function rule that allows you to completely manage the processing logic.</p>
<p style="text-align:justify;">While the example developed in this article was quite simple, I think you will agree that attribute propagation and the new rules editor provide a high level of support when your applications require coding.  I continue to be intrigued by the many innovations <strong><a href="http://go.expressor-software.com/desktop-edition-etl-tool.html?campaignID=70140000000MapQ" target="_blank">expressor</a></strong> is putting into their desktop ETL tool.  You can download their tool by following this <strong><a href="http://go.expressor-software.com/desktop-edition-etl-tool.html?campaignID=70140000000MapQ">link</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>
<br />Filed under: <a href='http://blog.sqlauthority.com/category/best-practices/'>Best Practices</a>, <a href='http://blog.sqlauthority.com/category/dba/'>DBA</a>, <a href='http://blog.sqlauthority.com/category/technology/postaday/'>PostADay</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/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/14913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/14913/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/14913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/14913/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/14913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/14913/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/14913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/14913/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/14913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/14913/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/14913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/14913/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/14913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/14913/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=14913&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2011/10/11/sql-server-expressor-studio-3-4-rules-editor-etl-graphical-coding-tool/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/ruleseditor1.png" medium="image" />

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

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

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

		<media:content url="http://www.pinaldave.com/bimg/ruleseditor5.png" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News &#8211; Community Tech Days &#8211; TechEd on The Road &#8211; Ahmedabad &#8211; June 11, 2011</title>
		<link>http://blog.sqlauthority.com/2011/06/03/sqlauthority-news-community-tech-days-teched-on-the-road-ahmedabad-june-11-2011/</link>
		<comments>http://blog.sqlauthority.com/2011/06/03/sqlauthority-news-community-tech-days-teched-on-the-road-ahmedabad-june-11-2011/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 01:30:42 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[MVP]]></category>
		<category><![CDATA[Pinal Dave]]></category>
		<category><![CDATA[PostADay]]></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 Wait Stats]]></category>
		<category><![CDATA[SQL Wait Types]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=13089</guid>
		<description><![CDATA[TechEd on Road is back! In Ahmedabad June 11, 2011! Inviting all Professional Developers, Project Managers, Architects, IT Managers, IT Administrators and Implementers of Ahmedabad to be a part of Tech•Ed on the Road, on 11th June, 2011. We have put together the best sessions from Tech•Ed India 2011 for you in your city. Focal [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=13089&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3><strong></strong><strong>TechEd on Road is back! In Ahmedabad June 11, 2011!</strong></h3>
<p style="text-align:justify;"><img class="alignleft" style="margin:5px;" src="http://www.pinaldave.com/bimg/techedonroad1.jpg" alt="" width="241" height="198" /><strong></strong>Inviting all Professional Developers, Project Managers, Architects, IT Managers, IT Administrators and Implementers of Ahmedabad to be a part of <strong>Tech•Ed on the Road</strong>, on 11th June, 2011. We have put together the best sessions from Tech•Ed India 2011 for you in your city. Focal point will be technologies like Database and BI, Windows 7, ASP.NET.</p>
<h2 style="text-align:justify;"><strong><a href="http://www.communitytechdays.com/Registration1.aspx?Status=NotFound&amp;login=Offline" target="_blank">REGISTER HERE!</a></strong></h2>
<p style="text-align:justify;"><strong>Venue:</strong><br />
Venue: Ahmedabad Management Association (AMA)<br />
Dr. Vikram Sarabhai Marg,<br />
University Area,<br />
Ahmedabad, Gujarat 380 015</p>
<p style="text-align:justify;"><strong>Time:</strong> 9:30AM &#8211; 5:30PM</p>
<p style="text-align:justify;">The biggest attraction of the event is session <strong>HTML5 &#8211; Future of the Web</strong> by <strong>Harish Vaidyanathan</strong>. He is Evangelist Lead in Microsoft and hands on developer himself. I strongly urge all of you to attend his session to understand direction of the web and Microsoft&#8217;s take on the subject.</p>
<p style="text-align:justify;">I (<strong>Pinal Dave</strong>) will be presenting on the session of <em><strong>SQL Server Performance Tuning</strong></em> and <strong>Jacob Sebastian</strong> will be presenting on <em><strong>T-SQL Worst Practices</strong></em>. Do not miss this opportunity. Those who have attended in the past know that from last two years the venue is jam packed in first few minutes. Do come in early to get better seat and reserve your spot.</p>
<p style="text-align:justify;">We will have QUIZ during the event and we will have various gifts &#8211; Watches, USB Drives, T-Shirts and many more interesting gifts.</p>
<p style="text-align:justify;">Refer the <strong><a href="http://communitytechdays.com/agenda.aspx#ahmedabad" target="_blank">agenda today</a></strong> and <strong><a href="http://www.communitytechdays.com/Registration1.aspx" target="_blank">register </a></strong>right away. There will be no video recording so come and visit the event in person.</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>
<br />Filed under: <a href='http://blog.sqlauthority.com/category/about-me/'>About Me</a>, <a href='http://blog.sqlauthority.com/category/best-practices/'>Best Practices</a>, <a href='http://blog.sqlauthority.com/category/database/'>Database</a>, <a href='http://blog.sqlauthority.com/category/dba/'>DBA</a>, <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/postaday/'>PostADay</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-wait-stats/'>SQL Wait Stats</a>, <a href='http://blog.sqlauthority.com/category/sql-wait-types/'>SQL Wait Types</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/13089/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/13089/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/13089/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/13089/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/13089/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/13089/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/13089/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/13089/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/13089/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/13089/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/13089/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/13089/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/13089/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/13089/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=13089&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2011/06/03/sqlauthority-news-community-tech-days-teched-on-the-road-ahmedabad-june-11-2011/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/techedonroad1.jpg" medium="image" />
	</item>
		<item>
		<title>SQL SERVER &#8211; DBA or DBD? &#8211; Database Administrator or Database Developer</title>
		<link>http://blog.sqlauthority.com/2010/11/29/sql-server-dba-or-dbd-database-administrator-or-database-developer/</link>
		<comments>http://blog.sqlauthority.com/2010/11/29/sql-server-dba-or-dbd-database-administrator-or-database-developer/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 01:30:26 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></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[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=11007</guid>
		<description><![CDATA[Earlier this month, I had poll on this blog where I asked question &#8211; Are you a Database Administrator or Database Developer? The word DBA (Database Administrator) is very common but DBD (Database Developer) is not common at all. This made me think &#8211; what is the ratio of the same. Here the result of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=11007&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Earlier this month, I had poll on this blog where I asked question &#8211; Are you a Database Administrator or Database Developer? The word DBA (Database Administrator) is very common but DBD (Database Developer) is not common at all. This made me think &#8211; what is the ratio of the same.</p>
<p style="text-align:justify;">Here the result of the poll:</p>
<p style="text-align:justify;">Database Administrator 36.6%  (254 votes)<br />
Database Developer 63.4%  (440 votes)<br />
Total Votes: 694</p>
<p style="text-align:justify;">This is open poll, if you want you can still participate here.</p>
<h3 style="text-align:justify;"><a href="http://blog.sqlauthority.com/2010/11/02/sql-server-are-you-a-database-administrator-or-a-database-developer/"><strong>Vote your Voice &#8211; DBD or DBA?</strong></a></h3>
<p style="text-align:justify;">I think it is the time when DBD word for Database Developer gets place in our dictionary.</p>
<p style="text-align:justify;">Reference:<strong> Pinal Dave (<a href="http://blog.sqlauthority.com/" target="_blank">http://blog.SQLAuthority.com</a>)</strong></p>
<br />Filed under: <a href='http://blog.sqlauthority.com/category/database/'>Database</a>, <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/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/11007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/11007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/11007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/11007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/11007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/11007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/11007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/11007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/11007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/11007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/11007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/11007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/11007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/11007/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=11007&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/11/29/sql-server-dba-or-dbd-database-administrator-or-database-developer/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>SQL SERVER – SHRINKDATABASE For Every Database in the SQL Server</title>
		<link>http://blog.sqlauthority.com/2010/08/12/sql-server-shrinkdatabase-for-every-database-in-the-sql-server/</link>
		<comments>http://blog.sqlauthority.com/2010/08/12/sql-server-shrinkdatabase-for-every-database-in-the-sql-server/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 01:30:51 +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 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>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9737</guid>
		<description><![CDATA[I was recently called to attend the Query Tuning Project. I had a very interesting experience in this event. I would like to share to you what actually happened. Note: If you are just going to say that shrinking database is bad, I agree with you and that is the main point of this blog [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=9737&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">I was recently called to attend the <strong>Query Tuning Project</strong>. I had a very interesting experience in this event. I would like to share to you what actually happened.</p>
<p style="text-align:justify;"><strong>Note:</strong> If you are just going to say that shrinking database is <span style="color:#ff0000;">bad</span>, I agree with you and that is the main point of this blog post. Please read the whole blog post first.</p>
<p style="text-align:justify;">The problem definition of the consultation was to improve the performance of the database server. I usually fly to the client’s location a day before, so the next day I am all fresh upon reaching the client’s office after a relaxing night&#8217;s sleep. Due to a fair availability of the flight, I reached the location earlier that day, at around 2 PM. I headed to the client’s location to familiarize myself with the place. I met the resident DBA and we talked for a few minutes. We looked at the index fragmentation during our conversation. It was the heaviest fragmentation that I have ever seen in my life. I asked the DBA if he could rebuild or reorganize indexes. He replied that he has never done it in the past one year. One year is really a long time; I could not believe that they have no maintenance task scheduled. I even wondered how they managed without index maintenance for the entire year. Anyway, I quickly handed my index script over him.</p>
<p style="text-align:justify;">We waited until the end of their business hours, at about 5PM. After this, there are hardly any activities in the database. We executed the task on their production server after checking a few settings. The script ran for about 1.5 hours until it is finished. Afterwards, I checked the fragmentation of the indexes; it was very descent. In fact, some of the large tables were showing the fragmentation near to zero. I was pleased with this while the DBA confirmed that few reports even ran faster than before. Satisfied with the work done on Day 0, I left the location and went to the hotel where I stayed.</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/shrinkfun.jpg" alt="" width="499" height="317" /></p>
<p style="text-align:justify;">When I arrived to the location the next day, I had a meeting with the company director. He mentioned that he was updated by Dr. DBA regarding my de-fragmentation of indexes, and he wanted to see the status of the indexes. I ran my script once again to check the fragmentation of index. To my surprise, it was just like yesterday. I got confused and speechless. I checked the server instances and a few other things, but still nothing. The Sr. DBA also had no explanation at all. He started to mumble something I did not understand. Well, to make the long story short, I had a long face and did not feel comfortable. I was pretty sure that I had run the script of de-fragmentation and it worked fine.</p>
<p style="text-align:justify;">Before I continued, I tried to check all the existing stored procedures and jobs. Finally, just like magic, I found the following code.</p>
<p style="text-align:justify;"><strong>Before running the following code. Read the whole blog post.</strong></p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">EXEC </span><span style="color:darkred;">sp_MSForEachDB </span><span style="color:red;">'DBCC SHRINKDATABASE (''?'' , 0)'<br />
</span></code></p>
<p style="text-align:justify;">This code shrinks the whole database on a single SQL Server Instance. I instantly figured out where this code was used, and then I removed it. After I got rid of the code, I rebuilt and reorganized indexes. For the next 5 days, I faced no problem at all. Well, this is another reason not to shrink the database. Shrinking the database causes heavy fragmentation of the tables and reduces the performance. After shrinking, it seems that rebuilding indexes is necessary. But again, there should not be any real need to shrink the database. Do <span style="color:#ff0000;">NOT </span>shrink your database.</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>Image source unknown<strong>.<br />
</strong></p>
<br />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-performance/'>SQL Performance</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/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/9737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/9737/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/9737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/9737/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/9737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/9737/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/9737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/9737/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/9737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/9737/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/9737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/9737/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/9737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/9737/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=9737&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/08/12/sql-server-shrinkdatabase-for-every-database-in-the-sql-server/feed/</wfw:commentRss>
		<slash:comments>26</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/shrinkfun.jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News &#8211; Author&#8217;s Birthday &#8211; 5 SQL Server Best Practices</title>
		<link>http://blog.sqlauthority.com/2010/07/30/sqlauthority-news-authors-birthday-5-sql-server-best-practices/</link>
		<comments>http://blog.sqlauthority.com/2010/07/30/sqlauthority-news-authors-birthday-5-sql-server-best-practices/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 01:30:58 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></category>
		<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[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9658</guid>
		<description><![CDATA[Today is my birthday. For those who are curious, I have now completed 31 years in my life. I have learned lots of new things during the course of the past few years. Every year I feel that I am getting better as a human being. Since today is my birthday, I have decided NOT [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=9658&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Today is my birthday. For those who are curious, I have now completed 31 years in my life. I have learned lots of new things during the course of the past few years. Every year I feel that I am getting better as a human being. Since today is my birthday, I have decided NOT to work and NOT to blog. I will do something really fun!</p>
<p style="text-align:justify;">I am going to clean up my personal servers as well and finish a few tests, as well as complete my benchmark projects. My personal data is also stored in one gigantic database. Because it is my personal server, no one pays me and thus I hardly maintain it.</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/happybirthday.jpg" alt="" width="400" height="305" /></p>
<p style="text-align:justify;">Today I am going to do the following maintenance tasks on it:</p>
<ol style="text-align:justify;">
<li><strong>Backup Master.</strong> I am going to have a backup of the database using script; however, the      backup script has not been updated for a long time now. Last time, I      noticed that I was not getting the master database’s backup. And no matter      what one suggests, I still think it is very important to have a backup of      the master database. I am going to alter the script to have a correct      backup of the master database.</li>
<li><strong>Online Indexing.</strong> I have upgraded my server from SQL Server 2005 Standard to SQL Server 2008      Enterprise. On the other hand, I never changed the index rebuilding      script. One of the tables is very huge and when indexes are rebuilt in it,      it often gets broken. I plan to change the index rebuild script to include      the option of (ONLINE = ON). This will be good to avoid the time outs.</li>
<li><strong>Restarting the Server.</strong> I have the server connected to      UPS and even though we have lots of very short power outages, my server is      not affected, fortunately. I almost forgot when I really restarted it. Although,      it is not necessary to restart server at all, this procedure is intended for      my windows box, which has many updates installed but I have not rebooted      it in order for these updates to take effect. This may not be the best technique,      but it works enough for me because my data is not that critical. If you      are maintaining a high-availability solution, I suggest that you have fail      over solution implemented before restarting the server.</li>
<li><strong>Wait Stats.</strong> I recently learned about Wait stats. I am eager to know what Wait Statistics      really are, and what they can do for my server. Due to the fact that I      have not upgraded the hardware for many years now (although I have      upgraded the OS, SQL Server version and huge data growth), I could find      out which of my hardware needs an upgrade.</li>
<li><strong>Fresh Air.</strong> I will make sure that after all of the above tasks are completed I am      going to go out with my family and breathe some fresh air.</li>
</ol>
<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>
<br />Filed under: <a href='http://blog.sqlauthority.com/category/about-me/'>About Me</a>, <a href='http://blog.sqlauthority.com/category/best-practices/'>Best Practices</a>, <a href='http://blog.sqlauthority.com/category/database/'>Database</a>, <a href='http://blog.sqlauthority.com/category/dba/'>DBA</a>, <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-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/9658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/9658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/9658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/9658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/9658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/9658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/9658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/9658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/9658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/9658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/9658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/9658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/9658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/9658/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=9658&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/07/30/sqlauthority-news-authors-birthday-5-sql-server-best-practices/feed/</wfw:commentRss>
		<slash:comments>55</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/happybirthday.jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News &#8211; 2 Sessions at TechInsight 2010 &#8211; June 29 &#8211; July 1, 2010</title>
		<link>http://blog.sqlauthority.com/2010/07/28/sqlauthority-news-2-sessions-at-techinsight-2010-june-29-july-1-2010/</link>
		<comments>http://blog.sqlauthority.com/2010/07/28/sqlauthority-news-2-sessions-at-techinsight-2010-june-29-july-1-2010/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 01:30:04 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[DBA]]></category>
		<category><![CDATA[MVP]]></category>
		<category><![CDATA[Pinal Dave]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Authority]]></category>
		<category><![CDATA[SQL Joins]]></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[Spatial Database]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9653</guid>
		<description><![CDATA[Earlier this month, I got the opportunity to visit Malaysia for community sessions on June 29 &#8211; July 1, 2010 at Kuala Lumpur, Malaysia, which I would consider as valuable experience. I presented two different sessions at the event. The event was extremely popular in local community, and I had great time meeting people in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=9653&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Earlier this month, I got the opportunity to visit <strong>Malaysia </strong>for community sessions on <strong>June 29 &#8211; July 1, 2010</strong> at <strong>Kuala Lumpur</strong>, <strong>Malaysia, </strong>which I would consider as valuable experience. I presented two different sessions at the event. The event was extremely popular in local community, and I had great time meeting people in Malaysia. I must say that the best thing about Kuala Lumpur is the people and their response.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Malaysia Twin Towers" src="http://www.pinaldave.com/bimg/Malaysia/KL_Malaysia (2).jpg" alt="Malaysia Twin Towers" width="500" height="666" /></dt>
<dd class="wp-caption-dd">Malaysia Twin Towers</dd>
</dl>
</div>
<p style="text-align:justify;">Techinsights is a major technology conference to network with like-minded peers and also up-skill your knowledge on latest technologies. An event that offers opportunity to dabble in hardcore technologies with in-depth and hands-on demonstration by Microsoft MVPs and industry experts local and abroad. This three-day event will challenge what you think you already know. You&#8217;ll return to the office with cutting-edge insights and expertise that will make life easier for you (and everyone else) at work. This round, we have a special highlight on new technologies such as SharePoint 2010, Visual Studio 2010, SQL Server 2008 R2, Silverlight 4, Windows 7, Windows Server 2008 R2 and many more. TechInsight is an event created by techies for techies. There is no marketing involved. It is indeed an experience to rediscover the uber-geek within you. Sign up today to secure your seat.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Techinsight - 2 Sessions" src="http://www.pinaldave.com/bimg/Malaysia/KL_Malaysia (3).jpg" alt="Techinsight - 2 Sessions" width="500" height="666" /></dt>
<dd class="wp-caption-dd">Techinsight &#8211; 2 Sessions</dd>
</dl>
</div>
<p style="text-align:justify;">I presented two sessions there. <strong>Both of my sessions were in the TOP 5 sessions of Development track. Additionally, my session on Join got the highest ranking ever in Dev Track</strong>.</p>
<p style="text-align:justify;"><strong>1) My Join, Your Join and Our Joins – The Story of Joins</strong></p>
<p style="text-align:justify;">Joins are very mysterious; there are many myths and confusions. This session will address all of them and also tell the story of how they act when it is about performance. Does the order of table in Join matter? Does the right or left join any different to each other? Does the Join increase IO? When is an outer join not an outer join and inner join? All these questions are answered and many more stories of Joins are included. Learn the simple tricks to get the maximum out of this tool.</p>
<p style="text-align:justify;"><em>Session Evaluations</em></p>
<p style="text-align:justify;">Overall session rating							<strong>7.5</strong><br />
How valuable was the content presented							7.467741935<br />
How effectively did the presenter communicate the content							7.596774194</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/Malaysia/KL_Malaysia (4).jpg" alt="" width="500" height="375" /></p>
<p style="text-align:justify;"><strong>2) Spatial Database – The Indexing Story</strong></p>
<p style="text-align:justify;">The world was believed to be flat but no more. Now SQL Server supports the spatial datatypes and many more functions. This session addresses the most vital part of Spatial datatypes and talks about how to improve the performance for the application, which is already blazing fast. We will look at how indexes are behaving with different spatial datatypes and how they can help to improve the performance and also learn the pitfalls to avoid them affecting performance.</p>
<p style="text-align:justify;"><em>Session Evaluations</em></p>
<p style="text-align:justify;">Overall session rating							<strong>7.237288136</strong><br />
How valuable was the content presented							7.322033898<br />
How effectively did the presenter communicate the content							7.457627119</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/Malaysia/KL_Malaysia (5).jpg" alt="" width="500" height="375" /></p>
<p style="text-align:justify;">I must express my special thanks to all the organizers of the event &#8211; <strong>Ervin, Walter, Raymond, and Patrick</strong> (in no particular order). They did an excellent job, and all the attendees of the event had great time as well. The food was awesome, and the response was excellent. After one month, when I am writing this review, I am still thinking of the wonderful experience I had from this event. This makes me want to not miss this event any year.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img class="  " title="Techinsight - Event Organizers" src="http://www.pinaldave.com/bimg/Malaysia/KL_Malaysia.jpg" alt="Techinsight - Event Organizers" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Techinsight &#8211; Event Organizers</dd>
</dl>
</div>
<p style="text-align:justify;">This one event is truly TechEd quality event in Malaysia. Kudos to the organizers and Microsoft.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Techinsight - Kuala Lumpur, Malaysia" src="http://www.pinaldave.com/bimg/Malaysia/KL_Malaysia (6).jpg" alt="Techinsight - Kuala Lumpur, Malaysia" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Techinsight &#8211; Kuala Lumpur, Malaysia</dd>
</dl>
</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>
<br />Filed under: <a href='http://blog.sqlauthority.com/category/dba/'>DBA</a>, <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/sql-joins/'>SQL Joins</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/spatial-database/'>Spatial Database</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/9653/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/9653/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/9653/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/9653/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/9653/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/9653/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/9653/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/9653/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/9653/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/9653/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/9653/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/9653/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/9653/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/9653/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=9653&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/07/28/sqlauthority-news-2-sessions-at-techinsight-2010-june-29-july-1-2010/feed/</wfw:commentRss>
		<slash:comments>3</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/Malaysia/KL_Malaysia(2).jpg" medium="image">
			<media:title type="html">Malaysia Twin Towers</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/Malaysia/KL_Malaysia(3).jpg" medium="image">
			<media:title type="html">Techinsight - 2 Sessions</media:title>
		</media:content>

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

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

		<media:content url="http://www.pinaldave.com/bimg/Malaysia/KL_Malaysia.jpg" medium="image">
			<media:title type="html">Techinsight - Event Organizers</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/Malaysia/KL_Malaysia(6).jpg" medium="image">
			<media:title type="html">Techinsight - Kuala Lumpur, Malaysia</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER &#8211; Enumerations in Relational Database &#8211; Best Practice</title>
		<link>http://blog.sqlauthority.com/2010/03/22/sql-server-enumerations-in-relational-database-best-practice/</link>
		<comments>http://blog.sqlauthority.com/2010/03/22/sql-server-enumerations-in-relational-database-best-practice/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 01:30:49 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Readers Contribution]]></category>
		<category><![CDATA[Software Development]]></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>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=8291</guid>
		<description><![CDATA[This article has been submitted by Marko Parkkola, Data systems designer at Saarionen Oy, Finland. Marko is excellent developer and always thinking at next level. You can read his earlier comment which created very interesting discussion here: SQL SERVER- IF EXISTS(Select null from table) vs IF EXISTS(Select 1 from table). I must express my special [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=8291&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">
<div class="wp-caption alignleft" style="width: 94px"><img title="Marko Parkkola" src="http://www.pinaldave.com/bimg/marko.jpg" alt="Marko Parkkola" width="84" height="85" /><p class="wp-caption-text">Marko Parkkola</p></div>
<p>This article has been submitted by <strong><a href="http://fi.linkedin.com/in/markoparkkola" target="_blank">Marko Parkkola</a></strong>, Data systems designer at Saarionen Oy, Finland. Marko is excellent developer and always thinking at next level. You can read his earlier comment which created very interesting discussion here: <strong><a href="http://blog.sqlauthority.com/2010/02/21/sql-server-if-existsselect-null-from-table-vs-if-existsselect-1-from-table/" target="_blank">SQL SERVER- IF EXISTS(Select null from table) vs IF EXISTS(Select 1 from table)</a></strong>. I must express my special thanks to Marko for sending this best practice for Enumerations in Relational Database. He has really wrote excellent piece here and welcome comments here.</p>
<h1 style="text-align:justify;">Enumerations in Relational Database</h1>
<p style="text-align:justify;">This is a subject which is very basic thing in relational databases but often not very well understood and sometimes badly implemented. There are of course many ways to do this but I concentrate only two cases, one which is “the right way” and one which is definitely wrong way.</p>
<h3 style="text-align:justify;">The concept</h3>
<p style="text-align:justify;">Let’s say we have table Person in our database. Person has properties/fields like Firstname, Lastname, Birthday and so on. Then there’s a field that tells person’s marital status and let’s name it the same way; MaritalStatus.</p>
<p style="text-align:justify;">Now MaritalStatus is an enumeration. In C# I would definitely make it an enumeration with values likes Single, InRelationship, Married, Divorced. Now here comes the problem, SQL doesn’t have enumerations.</p>
<h3 style="text-align:justify;">The wrong way</h3>
<p style="text-align:justify;">This is, in my opinion, absolutely the wrong way to do this. It has one upside though; you’ll see the enumeration’s description instantly when you do simple SELECT query and you don’t have to deal with mysterious values. There’s plenty of downsides too and one would be database fragmentation.</p>
<p style="text-align:justify;">Consider this (I’ve left all indexes and constraints out of the query on purpose).</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">CREATE TABLE </span><span style="color:black;">[dbo].[Person]<br />
</span><span style="color:gray;">(<br />
</span><span style="color:black;">[Firstname] </span><span style="color:blue;">NVARCHAR</span><span style="color:gray;">(</span><span style="color:black;">100</span><span style="color:gray;">),<br />
</span><span style="color:black;">[Lastname] </span><span style="color:blue;">NVARCHAR</span><span style="color:gray;">(</span><span style="color:black;">100</span><span style="color:gray;">),<br />
</span><span style="color:black;">[Birthday] datetime</span><span style="color:gray;">,<br />
</span><span style="color:black;">[MaritalStatus] </span><span style="color:blue;">NVARCHAR</span><span style="color:gray;">(</span><span style="color:black;">10</span><span style="color:gray;">)<br />
)</span></code></p>
<p style="text-align:justify;">You have nvarchar(20) field in the table that tells the marital status. Obvious problem with this is that what if you create a new value which doesn’t fit into 20 characters? You’ll have to come and alter the table. There are other problems also but I’ll leave those for the reader to think about.</p>
<h3 style="text-align:justify;">The correct way</h3>
<p style="text-align:justify;">Here’s how I’ve done this in many projects. This model still has one problem but it can be alleviated in the application layer or with CHECK constraints if you like.</p>
<p style="text-align:justify;">First I will create a namespace table which tells the name of the enumeration. I will add one row to it too. I’ll write all the indexes and constraints here too.</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">CREATE TABLE </span><span style="color:black;">[CodeNamespace]<br />
</span><span style="color:gray;">(<br />
</span><span style="color:black;">[Id] </span><span style="color:blue;">INT </span><span style="color:#434343;">IDENTITY</span><span style="color:gray;">(</span><span style="color:black;">1</span><span style="color:gray;">, </span><span style="color:black;">1</span><span style="color:gray;">),<br />
</span><span style="color:black;">[Name] </span><span style="color:blue;">NVARCHAR</span><span style="color:gray;">(</span><span style="color:black;">100</span><span style="color:gray;">) NOT NULL,<br />
</span><span style="color:blue;">CONSTRAINT </span><span style="color:black;">[PK_CodeNamespace] </span><span style="color:blue;">PRIMARY KEY </span><span style="color:gray;">(</span><span style="color:black;">[Id]</span><span style="color:gray;">),<br />
</span><span style="color:blue;">CONSTRAINT </span><span style="color:black;">[IXQ_CodeNamespace_Name] </span><span style="color:blue;">UNIQUE NONCLUSTERED </span><span style="color:gray;">(</span><span style="color:black;">[Name]</span><span style="color:gray;">)<br />
)<br />
</span><span style="color:black;">GO</span></code></p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">INSERT INTO </span><span style="color:black;">[CodeNamespace] </span><span style="color:blue;">SELECT </span><span style="color:red;">'MaritalStatus'<br />
</span><span style="color:black;">GO</span></code></p>
<p style="text-align:justify;">Then I create a table that holds the actual values and which reference to namespace table in order to group the values under different namespaces. I’ll add couple of rows here too.</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">CREATE TABLE </span><span style="color:black;">[CodeValue]<br />
</span><span style="color:gray;">(<br />
</span><span style="color:black;">[CodeNamespaceId] </span><span style="color:blue;">INT </span><span style="color:gray;">NOT NULL,<br />
</span><span style="color:black;">[Value] </span><span style="color:blue;">INT </span><span style="color:gray;">NOT NULL,<br />
</span><span style="color:black;">[Description] </span><span style="color:blue;">NVARCHAR</span><span style="color:gray;">(</span><span style="color:black;">100</span><span style="color:gray;">) NOT NULL,<br />
</span><span style="color:black;">[OrderBy] </span><span style="color:blue;">INT</span><span style="color:gray;">,<br />
</span><span style="color:blue;">CONSTRAINT </span><span style="color:black;">[PK_CodeValue] </span><span style="color:blue;">PRIMARY KEY CLUSTERED </span><span style="color:gray;">(</span><span style="color:black;">[CodeNamespaceId]</span><span style="color:gray;">, </span><span style="color:black;">[Value]</span><span style="color:gray;">),<br />
</span><span style="color:blue;">CONSTRAINT </span><span style="color:black;">[FK_CodeValue_CodeNamespace] </span><span style="color:blue;">FOREIGN KEY </span><span style="color:gray;">(</span><span style="color:black;">[CodeNamespaceId]</span><span style="color:gray;">) </span><span style="color:blue;">REFERENCES </span><span style="color:black;">[CodeNamespace] </span><span style="color:gray;">(</span><span style="color:black;">[Id]</span><span style="color:gray;">)<br />
)<br />
</span><span style="color:black;">GO<br />
</span><span style="color:green;">-- 1 is the 'MaritalStatus' namespace<br />
</span><span style="color:blue;">INSERT INTO </span><span style="color:black;">[CodeValue] </span><span style="color:blue;">SELECT </span><span style="color:black;">1</span><span style="color:gray;">, </span><span style="color:black;">1</span><span style="color:gray;">, </span><span style="color:red;">'Single'</span><span style="color:gray;">, </span><span style="color:black;">1<br />
</span><span style="color:blue;">INSERT INTO </span><span style="color:black;">[CodeValue] </span><span style="color:blue;">SELECT </span><span style="color:black;">1</span><span style="color:gray;">, </span><span style="color:black;">2</span><span style="color:gray;">, </span><span style="color:red;">'In relationship'</span><span style="color:gray;">, </span><span style="color:black;">2<br />
</span><span style="color:blue;">INSERT INTO </span><span style="color:black;">[CodeValue] </span><span style="color:blue;">SELECT </span><span style="color:black;">1</span><span style="color:gray;">, </span><span style="color:black;">3</span><span style="color:gray;">, </span><span style="color:red;">'Married'</span><span style="color:gray;">, </span><span style="color:black;">3<br />
</span><span style="color:blue;">INSERT INTO </span><span style="color:black;">[CodeValue] </span><span style="color:blue;">SELECT </span><span style="color:black;">1</span><span style="color:gray;">, </span><span style="color:black;">4</span><span style="color:gray;">, </span><span style="color:red;">'Divorced'</span><span style="color:gray;">, </span><span style="color:black;">4<br />
GO</span></code></p>
<p style="text-align:justify;">Now there’s four columns in CodeValue table. CodeNamespaceId tells under which namespace values belongs to. Value tells the enumeration value which is used in Person table (I’ll show how this is done below). Description tells what the value means. You can use this, for example, column in UI’s combo box. OrderBy tells if the values needs to be ordered in some way when displayed in the UI.</p>
<p style="text-align:justify;">And here’s the Person table again now with correct columns. I’ll add one row here to show how enumerations are to be used.</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">CREATE TABLE </span><span style="color:black;">[dbo].[Person]<br />
</span><span style="color:gray;">(<br />
</span><span style="color:black;">[Firstname] </span><span style="color:blue;">NVARCHAR</span><span style="color:gray;">(</span><span style="color:black;">100</span><span style="color:gray;">),<br />
</span><span style="color:black;">[Lastname] </span><span style="color:blue;">NVARCHAR</span><span style="color:gray;">(</span><span style="color:black;">100</span><span style="color:gray;">),<br />
</span><span style="color:black;">[Birthday] datetime</span><span style="color:gray;">,<br />
</span><span style="color:black;">[MaritalStatus] </span><span style="color:blue;">INT<br />
</span><span style="color:gray;">)<br />
</span><span style="color:black;">GO<br />
</span><span style="color:blue;">INSERT INTO </span><span style="color:black;">[Person] </span><span style="color:blue;">SELECT </span><span style="color:red;">'Marko'</span><span style="color:gray;">, </span><span style="color:red;">'Parkkola'</span><span style="color:gray;">, </span><span style="color:red;">'1977-03-04'</span><span style="color:gray;">, </span><span style="color:black;">3<br />
GO</span></code></p>
<p style="text-align:justify;">Now I said earlier that there is one problem with this. MaritalStatus column doesn’t have any database enforced relationship to the CodeValue table so you can enter any value you like into this field. I’ve solved this problem in the application layer by selecting all the values from the CodeValue table and put them into a combobox / dropdownlist (with Value field as value and Description as text) so the end user can’t enter any illegal values; and of course I’ll check the entered value in data access layer also.</p>
<p style="text-align:justify;">I said in the “The wrong way” section that there is one benefit to it. In fact, you can have the same benefit here by using a simple view, which I schema bound so you can even index it if you like.</p>
<p style="text-align:justify;"><code style="font-size:12px;"><span style="color:blue;">CREATE VIEW </span><span style="color:black;">[dbo].[Person_v]<br />
</span><span style="color:blue;">WITH </span><span style="color:black;">SCHEMABINDING<br />
</span><span style="color:blue;">AS<br />
SELECT </span><span style="color:black;">p.[Firstname]</span><span style="color:gray;">, </span><span style="color:black;">p.[Lastname]</span><span style="color:gray;">, </span><span style="color:black;">p.[BirthDay]</span><span style="color:gray;">, </span><span style="color:black;">c.[Description] MaritalStatus<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">[dbo].[Person] p<br />
</span><span style="color:blue;">JOIN </span><span style="color:black;">[dbo].[CodeValue] c </span><span style="color:blue;">ON </span><span style="color:black;">p.[MaritalStatus] </span><span style="color:blue;">= </span><span style="color:black;">c.[Value]<br />
</span><span style="color:blue;">JOIN </span><span style="color:black;">[dbo].[CodeNamespace] n </span><span style="color:blue;">ON </span><span style="color:black;">n.[Id] </span><span style="color:blue;">= </span><span style="color:black;">c.[CodeNamespaceId] </span><span style="color:gray;">AND </span><span style="color:black;">n.[Name] </span><span style="color:blue;">= </span><span style="color:red;">'MaritalStatus'<br />
</span><span style="color:black;">GO<br />
</span><span style="color:green;">-- Select from View<br />
</span><span style="color:blue;">SELECT </span><span style="color:gray;">*<br />
</span><span style="color:blue;">FROM </span><span style="color:black;">[dbo].[Person_v]<br />
GO</span></code></p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/enum1.jpg" alt="" width="367" height="47" /></p>
<p style="text-align:justify;">This is excellent write up by<strong><a href="http://fi.linkedin.com/in/markoparkkola" target="_blank">Marko  Parkkola</a></strong>. Do you have this kind of design setup at your organization? Let us know your opinion.</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>
<br />Filed under: <a href='http://blog.sqlauthority.com/category/best-practices/'>Best Practices</a>, <a href='http://blog.sqlauthority.com/category/database/'>Database</a>, <a href='http://blog.sqlauthority.com/category/dba/'>DBA</a>, <a href='http://blog.sqlauthority.com/category/readers-contribution/'>Readers Contribution</a>, <a href='http://blog.sqlauthority.com/category/software-development/'>Software Development</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>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/8291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/8291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/8291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/8291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/8291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/8291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/8291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/8291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/8291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/8291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/8291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/8291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/8291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/8291/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=8291&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2010/03/22/sql-server-enumerations-in-relational-database-best-practice/feed/</wfw:commentRss>
		<slash:comments>23</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/marko.jpg" medium="image">
			<media:title type="html">Marko Parkkola</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/enum1.jpg" medium="image" />
	</item>
		<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 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=7939&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<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>
<br />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/gofacebook/sqlauthority.wordpress.com/7939/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/7939/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/7939/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/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&amp;blog=668536&amp;post=7939&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="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>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/streamlight.jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News &#8211; 1200th Post &#8211; An Important Milestone</title>
		<link>http://blog.sqlauthority.com/2009/12/31/sqlauthority-news-1200th-post-an-important-milestone/</link>
		<comments>http://blog.sqlauthority.com/2009/12/31/sqlauthority-news-1200th-post-an-important-milestone/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 01:30:03 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></category>
		<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[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7652</guid>
		<description><![CDATA[Today is the last day of 2009 and this is my 1200th post! This year had been a wonderful year for me. I was actively involved with the community, and there were a lot of occasions where I could work along with IT professionals to resolve their issues in projects. Today, as this is my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=7652&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Today is the last day of  2009 and this is my 1200th post! This year had been a wonderful year for me. I was actively involved with the community, and there were a lot of occasions where I could work along with IT professionals to resolve their issues in projects.</p>
<p style="text-align:justify;">Today, as this is my 1200th post and last day of 2009, we will go over few but very important milestones of this year (of course, in my life).</p>
<p style="text-align:justify;">Instead of longer list, I have decided to list only the most important events. <strong>Event listed event are in order of its occurrence and not necessarily ordered as their importance.</strong></p>
<h2 style="text-align:justify;">Top 7 Community and Personal Events</h2>
<p style="text-align:justify;">1) <a href="http://blog.sqlauthority.com/2009/02/24/sqlauthority-news-author-visit-mvp-global-summit-2009-seattle-and-redmond/" target="_blank">SQLAuthority News – Author Visit – Complete Wrapup of Microsoft MVP Summit 2009 Trip</a><br />
2) <a href="http://blog.sqlauthority.com/2009/06/02/sqlauthority-news-summary-of-teched-india-2009-a-grand-event/" target="_blank">SQLAuthority News – Summary of TechEd India 2009 – A Grand Event</a><br />
3) <a href="http://blog.sqlauthority.com/2009/05/23/sqlauthority-news-sql-server-energy-event-with-rushabh-mehta-may-20-2009/" target="_blank">SQLAuthority News – SQL Server Energy Event with Rushabh Mehta – May 20, 2009</a><br />
4) <a href="http://blog.sqlauthority.com/2009/08/25/sqlauthority-news-business-intelligence-training-roadshow-august-september-2009/" target="_blank">SQLAuthority News – Business Intelligence Training Roadshow August September 2009</a><br />
5)  <a href="http://blog.sqlauthority.com/2009/10/05/sqlauthority-news-community-techdays-in-ahmedabad-a-successful-event/">SQLAuthority News – Community TechDays in Ahmedabad – A Successful Event </a><br />
6) <a href="http://blog.sqlauthority.com/2009/11/16/sqlauthority-news-notes-of-excellent-experience-at-sql-pass-2009-summit-seattle/">SQLAuthority News – Notes of Excellent Experience at SQL PASS 2009 Summit, Seattle</a><br />
7) <a href="http://blog.sqlauthority.com/2009/12/05/sqlauthority-news-notes-from-techdays-2009-at-infosys-bangalore/">SQLAuthority News – Notes from TechDays 2009 at Infosys, Bangalore</a></p>
<h2 style="text-align:justify;">Top 5 Personal Events</h2>
<p style="text-align:justify;">1) <a href="http://blog.sqlauthority.com/2009/06/16/sqlauthority-news-1000th-article-milestone-8-millions-views-solid-quality-mentors/" target="_blank">SQLAuthority News – 1000th Article Milestone – 8 Millions Views – Solid Quality Mentors</a><br />
2) <a href="http://blog.sqlauthority.com/2009/07/02/sqlauthority-news-mvp-award-renewed/">SQLAuthority News – MVP Award Renewed</a><br />
3) <a href="http://blog.sqlauthority.com/2009/09/01/sqlauthority-news-baby-sqlauthority-is-here/" target="_blank">SQLAuthority News – Baby SQLAuthority is here!</a><br />
4)  <a href="http://blog.sqlauthority.com/2009/11/01/sql-authority-news-advanced-t-sql-with-itzik-ben-gan-solid-quality-mentors/">SQL Authority News – Advanced T-SQL with Itzik Ben-Gan – Solid Quality Mentors</a><br />
5) <a href="http://blog.sqlauthority.com/2009/12/14/sqlauthority-news-an-year-of-personal-events-a-life-outside-sql/">SQLAuthority News – An Year of Personal Events – A Life Outside SQL</a></p>
<h2 style="text-align:justify;">Top 7 Blog Articles by Readers&#8217; Choice (In order of Popularity)</h2>
<p style="text-align:justify;">1) <a href="http://blog.sqlauthority.com/2008/09/20/sql-server-2008-interview-questions-and-answers-complete-list-download/" target="_blank">SQL SERVER – 2008 – Interview Questions and Answers Complete List Download</a><br />
2) <a href="http://blog.sqlauthority.com/2007/08/15/sql-server-insert-data-from-one-table-to-another-table-insert-into-select-select-into-table/" target="_blank">SQL SERVER – Insert Data From One Table to Another Table – INSERT INTO SELECT – SELECT INTO TABLE</a><br />
3) <a href="http://blog.sqlauthority.com/2007/06/08/sql-server-insert-multiple-records-using-one-insert-statement-use-of-union-all/" target="_blank">SQL SERVER – Insert Multiple Records Using One Insert Statement – Use of UNION ALL</a><br />
4) <a href="http://blog.sqlauthority.com/2007/08/21/sql-server-2005-create-script-to-copy-database-schema-and-all-the-objects-stored-procedure-functions-triggers-tables-views-constraints-and-all-other-database-objects/" target="_blank">SQL SERVER – 2005 – Create Script to Copy Database Schema and All The Objects – Stored Procedure, Functions, Triggers, Tables, Views, Constraints and All Other Database Objects</a><br />
5) <a href="http://blog.sqlauthority.com/2008/02/06/sql-server-import-csv-file-into-sql-server-using-bulk-insert-load-comma-delimited-file-into-sql-server/" target="_blank">SQL SERVER – Import CSV File Into SQL Server Using Bulk Insert – Load Comma Delimited File Into SQL Server<br />
</a>6) <a href="http://blog.sqlauthority.com/2007/06/21/sql-server-retrieve-current-date-time-in-sql-server-current_timestamp-getdate-fn-now/" target="_blank">SQL SERVER – Retrieve Current Date Time in SQL Server CURRENT_TIMESTAMP, GETDATE(), {fn NOW()}</a><br />
7) <a href="http://blog.sqlauthority.com/2007/04/24/sql-server-trim-function-udf-trim/" target="_blank">SQL SERVER – TRIM() Function – UDF TRIM()</a></p>
<p style="text-align:justify;">Year 2009 was great year and I wish all of you that next year of 2010 brings more prosperity and happiness in all of yours life.</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;">
<br />Posted in About Me, Database, DBA, MVP, Pinal Dave, SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, SQLAuthority News, T SQL, Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7652/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7652/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7652/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7652/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/7652/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/7652/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/7652/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/7652/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7652/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7652/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7652/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7652/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7652/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7652/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=7652&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/12/31/sqlauthority-news-1200th-post-an-important-milestone/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>
	</item>
		<item>
		<title>SQLAuthority News &#8211; Meeting SQL Expert Imran at Hyderabad</title>
		<link>http://blog.sqlauthority.com/2009/12/22/sqlauthority-news-meeting-sql-expert-imran-at-hyderabad/</link>
		<comments>http://blog.sqlauthority.com/2009/12/22/sqlauthority-news-meeting-sql-expert-imran-at-hyderabad/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 01:30:15 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></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[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7594</guid>
		<description><![CDATA[I was very fortunate to meet the SQL Server Expert and one of the top participants of this blog Imran Mohammed. Imran has been very active on this blog and have previously contributed with few articles as well. I have been communicating with Imran for a long time; he is always very active and quick [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=7594&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">I was very fortunate to meet the SQL Server Expert and one of the top participants of this blog <strong>Imran Mohammed</strong>. Imran has been very active on this blog and have previously contributed with few articles as well. I have been communicating with Imran for a long time; he is always very active and quick to reply. Many times, he has solved various difficult problems of readers which. He always goes an extra mile to resolve such problems – once I happened to see him spend more than 10 hours to solve a problem posed by a reader.</p>
<p style="text-align:justify;">When I met Imran, I was totally surprised!! Seriously, I was expecting a very old person with a huge experience in SQL. He is one of the very young SQL enthusiasts with extremely smart brains. We had wonderful dinner together, wherein we discussed SQL. While talking to Imran, I realized that he is a very matured person with a great attitude towards life, particularly towards technology. He is a patient listener who imbibes information with a very open mind. Our discussion covered different technologies. Please note that even though he is very young due his in-depth knowledge on SQL was at par with that of someone who was in this industry for  very long time. I asked him to share some tips from his real-life experience.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Pinal and Imran" src="http://www.pinaldave.com/bimg/Imran.jpg" alt="" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Pinal and Imran</dd>
</dl>
</div>
<p style="text-align:justify;">Here are few tips I have gathered from him while we discussed SQL. Some are generic to life, and few are very specific to SQL as well.</p>
<ul style="text-align:justify;">
<li>I      do not take a chance, I always take backup.</li>
<li>If      I am answering a question to anybody, my first goal is to solve the      problem and second is to find it right and optimal solution for the first      goal.</li>
<li>If I come across any problem with answer – first I solve it,      then only I look at the given answer Advance feature of T-SQL regarding      ranking, query guide, and filtered indexing are really helpful to improve      the performance.</li>
<li>Before      leaving a comment at a blog post, I always read original post and all the      comments left before.</li>
<li>I      do not remember syntax, but I do not forget them if I use them once.</li>
<li>I      work sometimes more than 16 hours as I enjoy working with SQL.</li>
</ul>
<p style="text-align:justify;">I must say that I always have a great time meeting experts like Imran Mohammed; all my best wishes for his success!</p>
<p style="text-align:justify;">Reference: <strong>Pinal Dave (<a href="http://blog.sqlauthority.com/" target="_blank">http://blog.SQLAuthority.com</a>)</strong></p>
<br />Posted in About Me, Database, DBA, Pinal Dave, SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, SQLAuthority News, T SQL, Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/7594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/7594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/7594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/7594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7594/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=7594&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/12/22/sqlauthority-news-meeting-sql-expert-imran-at-hyderabad/feed/</wfw:commentRss>
		<slash:comments>14</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/Imran.jpg" medium="image">
			<media:title type="html">Pinal and Imran</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER &#8211; Differences in Vulnerability between Oracle and SQL Server</title>
		<link>http://blog.sqlauthority.com/2009/12/18/sql-server-differences-in-vulnerability-between-oracle-and-sql-server/</link>
		<comments>http://blog.sqlauthority.com/2009/12/18/sql-server-differences-in-vulnerability-between-oracle-and-sql-server/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 01:30:54 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Database]]></category>
		<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 Download]]></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[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7661</guid>
		<description><![CDATA[In the IT world, but not among experienced DBAs, there has been a long-standing myth that the Oracle database platform is more stable and more secure than SQL Server from Microsoft. This is due to a variety of reasons; but in my opinion, the main ones are listed below: A. Microsoft development platforms are generally [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=7661&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">In the IT world, but not among experienced DBAs, there has been a long-standing myth that the Oracle database platform is more stable and more secure than SQL Server from Microsoft. This is due to a variety of reasons; but in my opinion, the main ones are listed below:<strong> </strong></p>
<h3 style="text-align:justify;"><strong>A. </strong><strong>Microsoft development platforms are generally more error-prone and full of bugs.</strong></h3>
<p style="text-align:justify;">This (unfairly) projects the weaknesses of earlier versions of Windows onto its other products such as SQL Server, which is a very stable and secure platform in its own right.<strong> </strong></p>
<h3 style="text-align:justify;"><strong>B. </strong><strong>Oracle has been around for longer than SQL Server and must therefore be more stable and secure.</strong></h3>
<p style="text-align:justify;">Well, this does not count for anything. Being around longer does not mean that you are necessarily wiser. Need more proof? – look at General Motors.</p>
<p style="text-align:justify;">Let us look at the comparisons between Oracle’s DB platform and SQL Server:<strong> </strong></p>
<h3 style="text-align:justify;"><strong>Number of reported      vulnerabilities for per product</strong></h3>
<p style="text-align:justify;">In my opinion, this is the most basic test for stability and security – the number of errors and bugs reported for a product is roughly proportional to its security and stability. Note that this number is usually compiled by independent information-security companies; so, there is no question of “hiding the numbers.”</p>
<p style="text-align:justify;">In this regard, Oracle fares poorly as compared with SQL Server. Oracle Corporation releases an amazingly large number of patches and Critical Patch Updates (CPUs) for its DB platform. To be fair, following are some of the arguments that support Oracle DB (together with answers for those same arguments):</p>
<h3 style="text-align:justify;"><strong>Oracle runs on several platforms, while SQL Server only runs on Windows</strong></h3>
<p style="text-align:justify;"><strong>Answer:</strong> No, the patches and bugs reported are almost all cross-platforms, which implies that they are OS-independent.</p>
<h3 style="text-align:justify;"><strong>Oracle DB also includes several other components, so we are not comparing like with like</strong></h3>
<p style="text-align:justify;"><strong>Answer:</strong> Here, I considered only the database server components. This implies that any problem arising from components such as the Intelligent Agent or the Oracle Application Server has <strong>not</strong> been included.</p>
<p style="text-align:justify;">Let us compare the Nov 2009 vulnerability reports of the both Oracle11g [1] and SQL Server 2008 [2].</p>
<table style="text-align:justify;" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="121" valign="top"><strong>Product</strong></td>
<td width="142" valign="top"><strong>Advisories</strong></td>
<td width="113" valign="top"><strong>Vulnerabilities</strong></td>
</tr>
<tr>
<td width="121" valign="top">SQL Server 2008</td>
<td width="142" valign="top">0</td>
<td width="113" valign="top">0</td>
</tr>
<tr>
<td width="121" valign="top">Oracle11g</td>
<td width="142" valign="top">7</td>
<td width="113" valign="top">239</td>
</tr>
</tbody>
</table>
<p style="text-align:justify;">This is not only for the latest DB platforms: Oracle 11g and SQL Server 2008. No, if we take a historical perspective, Microsoft patched 59 vulnerabilities in its SQL Server 7 – 2000 and 2005 databases in the past 6 years, while for the same period Oracle issued 233 patches for software flaws in its Oracle 8, 9 and 10g databases. Moreover, in 2006, Microsoft SQL Server 2000 with Service Pack 4 was ranked as the most secure database in the market together with the PostgreSQL open source project. Oracle10g was placed at the very bottom of the same list.</p>
<p style="text-align:justify;"><strong> </strong></p>
<p style="text-align:justify;"><strong>DBAs are wary and      tired of patching the Oracle DB</strong></p>
<p style="text-align:justify;">A survey conducted in January 2008 [3] showed that two-thirds of Oracle DBA’s do not apply security patches. The underlying cause of this is that Oracle Corporation releases a huge number of patches and fixes for various bugs, which itself leads to this secondary problem. There is a lot of fatigue and effort involved in tracking, testing and installing several patch releases every year. In 2009 alone, Oracle released 33 patches for its DB.</p>
<p style="text-align:justify;">However, I am not at all suggesting that Oracle DBAs are lazy or do not take database security seriously. The main reason why many DBAs are very wary of patching Oracle databases is the complexity involved. First, note that patch testing, and also CPU testing is a long and intensive process. Because of the large numbers of bug fixes and CPUs released by Oracle, many application vendors whose products run on an Oracle DB simply do not have the time to test a patch, or as soon as they do so, another one is released. This, in turn, implies that if their clients risk installing unapproved patches, then the vendor can rightfully refuse to support them in case that patch then causes an error in the application.</p>
<p style="text-align:justify;">Slavik Markovich, the Chief Technology Officer of database vendor Sentrigo Inc, said at a conference:  <em>&#8220;To apply the CPU, you need to change the binaries of the database. You change the database behavior in some ways that may affect application performance. So applying security patches to a database typically involves testing them against the applications that feed off the database. This is a very long and very hard process to do, especially if you are in enterprises with a large number of databases and applications. Applying these patches means months of labor and sometimes significant downtime, both of which most companies can&#8217;t afford.”</em></p>
<h3 style="text-align:justify;"><strong>Microsoft has a      working system of patch testing and rollout, whereas Oracle does not have      such a system</strong></h3>
<p style="text-align:justify;">Trustworthy Computing is a Microsoft tool that proactively identifies and allows you to install missing patches. When Microsoft launched this initiative, many people did not take it seriously. But now it has proven to be a lifesaver for many busy DBAs and system administrators who simply do not have the time to worry about installing patches. Oracle does NOT have an equivalent tool.</p>
<p style="text-align:justify;">Also, Oracle also does not make life easier for companies who want to keep their databases secure, making it complex to download and install patches. With SQL Server, you can schedule automatic installation of updates and patches. Moreover, if it causes an undesired effect on your application, you can simply uninstall it, leaving the database at it was prior to the update. This is somewhat similar to the System Restore feature of Windows. With Oracle DB, both the installation and removal of patches are complex events that are not easy to do and undo, except for a seasoned DBA.</p>
<p style="text-align:justify;">However, the single most crucial factor in Microsoft’s DB-security-management success is its Security Development Lifecycle (SDL). The use of SDL [4] implies that knowledge obtained after resolving the problems is never lost; instead it is ploughed back into the cycle. Therefore, instead of repeating the same mistakes every time, you can at least ensure that the new code is more secure than the old code, even though it is not completely secure. For instance, the mistakes that were committed and resolved while developing SQL Server 2005 were not repeated during the development of SQL Server 2008. However, there is one issue that bothers developers and DBAs who use Oracle DB: they come across the same mistakes in every version used by them. Eventually, when one problem is resolved, many a time the results are not problem-free and in turn, a new error or problem is created – overall, there is no consistent and reliable problem-solving technique for correcting bugs and fixes. In fact, database consultant Karel Miko estimates that Oracle Corp. is about 5 years behind Microsoft in patch management.</p>
<p style="text-align:justify;"><strong> </strong></p>
<h3 style="text-align:justify;"><strong>Summary</strong></h3>
<p style="text-align:justify;">I hope this article helps to debunk the myth that SQL Server is a less stable and less reliable platform than Oracle DB. As many researchers and security consultancy firms worldwide have pointed out, SQL Server is consistently more secure and much less prone to errors and bugs than Oracle DB.</p>
<h3 style="text-align:justify;"><strong>Sources:</strong></h3>
<p style="text-align:justify;">[1] <a href="http://secunia.com/advisories/product/18050/?task=statistics_2009">http://secunia.com/advisories/product/18050/?task=statistics_2009</a></p>
<p style="text-align:justify;">[2] <a href="http://secunia.com/advisories/product/21744/?task=statistics_2009">http://secunia.com/advisories/product/21744/?task=statistics_2009</a></p>
<p style="text-align:justify;">[3]<a href="http://www.computerworld.com/s/article/9057226/Update_Two_thirds_of_Oracle_DBAs_don_t_apply_security_patches">http://www.computerworld.com/s/article/9057226/Update_Two_thirds_of_Oracle_DBAs_don_t_apply_security_patches</a></p>
<p style="text-align:justify;">[4] <a href="http://www.infoworld.com/d/security-central/database-expert-oracle-trails-microsoft-patch-management-166">http://www.infoworld.com/d/security-central/database-expert-oracle-trails-microsoft-patch-management-166</a></p>
<p style="text-align:justify;">Reference : <strong>Pinal Dave (<a href="http://blog.sqlauthority.com/" target="_blank">http://blog.SQLAuthority.com</a>)</strong></p>
<br />Posted in Business Intelligence, Database, DBA, Pinal Dave, SQL, SQL Authority, SQL Documentation, SQL Download, SQL Query, SQL Server, SQL Tips and Tricks, T SQL, Technology Tagged: MySQL, Oracle <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/7661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/7661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/7661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/7661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7661/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=7661&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/12/18/sql-server-differences-in-vulnerability-between-oracle-and-sql-server/feed/</wfw:commentRss>
		<slash:comments>12</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; SQL Server 2008 for Oracle DBA</title>
		<link>http://blog.sqlauthority.com/2009/11/21/sqlauthority-news-sql-server-2008-for-oracle-dba/</link>
		<comments>http://blog.sqlauthority.com/2009/11/21/sqlauthority-news-sql-server-2008-for-oracle-dba/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 01:30:19 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></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[T SQL]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7187</guid>
		<description><![CDATA[This 15 modules, level 300 course provides students with the knowledge and skills to capitalize on their skills and experience as an Oracle DBA to manage a Microsoft SQL Server 2008 system. This workshop provides a quick start for the Oracle DBA to map, compare, and contrast the realm of Oracle database management to SQL [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=7187&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">This 15 modules, level 300 course provides students with the knowledge and skills to capitalize on their skills and experience as an Oracle DBA to manage a Microsoft SQL Server 2008 system. This workshop provides a quick start for the Oracle DBA to map, compare, and contrast the realm of Oracle database management to SQL Server database management.</p>
<p style="text-align:justify;"><a id="ctl00_mainContentContainer_ctl02" href="http://technet.microsoft.com/en-us/sqlserver/dd535524.aspx">Module 1: Database and Instance</a><br />
<a id="ctl00_mainContentContainer_ctl03" href="http://technet.microsoft.com/en-us/sqlserver/dd537577.aspx">Module 2: Database Architecture</a><br />
<a id="ctl00_mainContentContainer_ctl04" href="http://technet.microsoft.com/en-us/sqlserver/dd542622.aspx">Module 3: Instance Architecture</a><br />
<a id="ctl00_mainContentContainer_ctl05" href="http://technet.microsoft.com/en-us/sqlserver/dd542624.aspx">Module 4: Data Objects</a><br />
<a id="ctl00_mainContentContainer_ctl06" href="http://technet.microsoft.com/en-us/sqlserver/dd542626.aspx">Module 5: Data Access</a><br />
<a id="ctl00_mainContentContainer_ctl07" href="http://technet.microsoft.com/en-us/sqlserver/dd542627.aspx">Module 6: Data Protection</a><br />
<a id="ctl00_mainContentContainer_ctl08" href="http://technet.microsoft.com/en-us/sqlserver/dd547093.aspx">Module 7: Basic Administration</a><br />
<a id="ctl00_mainContentContainer_ctl09" href="http://technet.microsoft.com/en-us/sqlserver/dd547406.aspx">Module 8: Server Management</a><br />
<a id="ctl00_mainContentContainer_ctl10" href="http://technet.microsoft.com/en-us/sqlserver/dd547109.aspx">Module 9: Managing Schema Objects</a><br />
<a id="ctl00_mainContentContainer_ctl11" href="http://technet.microsoft.com/en-us/sqlserver/dd547407.aspx">Module 10: Database Security</a><br />
<a id="ctl00_mainContentContainer_ctl12" href="http://technet.microsoft.com/en-us/sqlserver/dd547418.aspx">Module 11: Data Transport</a><br />
<a id="ctl00_mainContentContainer_ctl13" href="http://technet.microsoft.com/en-us/sqlserver/dd547419.aspx">Module 12: Backup and Recovery</a><br />
<a id="ctl00_mainContentContainer_ctl14" href="http://technet.microsoft.com/en-us/sqlserver/dd547420.aspx">Module 13: Performance Tuning</a><br />
<a id="ctl00_mainContentContainer_ctl15" href="http://technet.microsoft.com/en-us/sqlserver/dd547424.aspx">Module 14: Scalability and High Availability</a><br />
<a id="ctl00_mainContentContainer_ctl16" href="http://technet.microsoft.com/en-us/sqlserver/dd547425.aspx">Module 15: Monitoring</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>
<br />Posted in Database, DBA, Pinal Dave, SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, SQLAuthority News, T SQL, Technology Tagged: Learning, MySQL, Oracle <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/7187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/7187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/7187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/7187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/7187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7187/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=7187&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/11/21/sqlauthority-news-sql-server-2008-for-oracle-dba/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>SQLAuthority News &#8211; Notes of Excellent Experience at SQL PASS 2009 Summit, Seattle</title>
		<link>http://blog.sqlauthority.com/2009/11/16/sqlauthority-news-notes-of-excellent-experience-at-sql-pass-2009-summit-seattle/</link>
		<comments>http://blog.sqlauthority.com/2009/11/16/sqlauthority-news-notes-of-excellent-experience-at-sql-pass-2009-summit-seattle/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 01:30:59 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[MVP]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[Pinal Dave]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Authority]]></category>
		<category><![CDATA[SQL PASS]]></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=7360</guid>
		<description><![CDATA[Update: Do not forget to checkout last three photos and follow me on twitter (of course!) I have previously documented my four-day experience of SQL PASS 2009 Summit at Seattle. There were many reasons for SQL enthusiasts to attend the SQL PASS event; I am listing my own reasons here in order of importance to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=7360&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;"><span style="color:#ff0000;"><span style="text-decoration:underline;"><strong>Update:</strong></span></span> Do not forget to checkout <em><strong>last three photos</strong></em> and follow me on <a href="http://twitter.com/pinaldave" target="_blank">twitter </a>(of course!)</p>
<p style="text-align:justify;">I have previously documented my four-day experience of SQL PASS 2009 Summit at Seattle. There were many reasons for SQL enthusiasts to attend the SQL PASS event; I am listing my own reasons here in order of importance to me.</p>
<ul style="text-align:justify;">
<li>Networking      with SQL fellows and experts</li>
<li>Putting      face to the name or avatar</li>
<li>Learning      and improving my SQL skills</li>
<li>Understanding      the structure of the largest SQL Server Professional Association</li>
<li>Attending      my favorite training sessions</li>
</ul>
<p style="text-align:justify;">During these four days, there was so much happening that it is difficult to document everything. I had tried to cover this event briefly on a daily basis in the following blog posts:</p>
<p style="text-align:justify;"><a href="http://blog.sqlauthority.com/2009/11/03/sqlauthority-news-sql-pass-summit-seattle-2009-day-1/" target="_blank">SQLAuthority News – SQL PASS Summit, Seattle 2009 – Day 1</a><br />
<a href="http://blog.sqlauthority.com/2009/11/04/sqlauthority-news-sql-pass-summit-seattle-2009-day-2/" target="_blank">SQLAuthority News – SQL PASS Summit, Seattle 2009 – Day 2</a><br />
<a href="http://blog.sqlauthority.com/2009/11/05/sqlauthority-news-sql-pass-summit-seattle-2009-day-3/" target="_blank">SQLAuthority News – SQL PASS Summit, Seattle 2009 – Day 3</a><br />
<a href="http://blog.sqlauthority.com/2009/11/06/sqlauthority-news-sql-pass-summit-seattle-2009-day-4/" target="_blank">SQLAuthority News – SQL PASS Summit, Seattle 2009 – Day 4</a></p>
<p style="text-align:justify;">I will list a few of the additional details that I have not included in the earlier post. Keynotes were the best part of the event, and I have covered major points of the keynote in above mentioned posts. I had met many SQL Legends during this event and included information regarding them. However, there were few things I still missed and I am listing them here. Seattle is great city, and I am visiting it the second time. This time I got an opportunity to take the Underground city tour and I had really enjoyed.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Washington Convention Center" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS514.jpg" alt="Washington Convention Center" width="500" height="666" /></dt>
<dd class="wp-caption-dd">Washington Convention Center</dd>
</dl>
</div>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Undergroud Tour 1" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS502.jpg" alt="Undergroud Tour 1" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Undergroud Tour 1</dd>
</dl>
</div>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Undergroup Tour 2" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS503.jpg" alt="Undergroup Tour 2" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Undergroup Tour 2</dd>
</dl>
</div>
<p style="text-align:justify;">It was great to meet SQL Server MVP Glenn Berry at the MVP Summit. He is a very kind and friendly person. You will always find him hanging around with people from different organizations and countries. If you try to eavesdrop his conversation, you will hear terms like &#8216;dmv&#8217;, &#8216;performance&#8217;, and &#8216;optimized query&#8217; very often. He is very much known for his excellent optimization script known as &#8220;<a href="http://glennberrysqlperformance.spaces.live.com/blog/cns%2145041418ECCAA960%212015.entry" target="_blank"><strong><em>SQL Server 2008 Diagnostic Information Queries</em></strong></a>&#8220;. If you have never taken a look at that, I urge you to go there and check this out. I believe that even if he blogs once a year only with this script, his fans will not complain. I have previously published his <a href="http://blog.sqlauthority.com/2009/08/09/sqlauthority-news-interview-with-sql-server-mvp-glenn-berry/" target="_blank"><strong>interview on my blog</strong></a>. Please note that he is the only person ever featured in an interview on this blog.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Glenn Berry and Pinal Dave" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS505.jpg" alt="Glenn Berry and Pinal Dave" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Glenn Berry and Pinal Dave</dd>
</dl>
</div>
<p style="text-align:justify;"><strong><em>It depends!</em></strong> This is one most loved (or hated) phrase in the world of programmers or DBA. It is quite common to start answering question using this phrase. Mostly, this phrase initiates humor but rarely, people take this as offence. Again the intent of speaker is not always conveyed properly, <strong><em>it depends</em></strong> on how the phrase is used (I could not resist to use this phrase as well :P). I had very interesting discussion with <a href="http://sqlfool.com/" target="_blank">Michelle Ufford</a> and <a href="http://stratesql.com/" target="_blank">Jason Strate</a> when we were waiting for coffee at one afternoon. We discussed both the sides of this phrase. Michelle suggested many good points when and why this phrase is valid. Jason also suggested that this phrase is commonly used a) when the presenter does not have sufficient information to answer or b) when the presenter does not know the answer. We discussed that it would be really interesting to start the conversation answering the most possible answer and then talking about special cases (for which <strong><em>it depends</em></strong> is quite commonly used.) Let us see one example.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Michelle Ufford, Jason Strate, Pinal Dave" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS508.jpg" alt="Michelle Ufford, Jason Strate, Pinal Dave" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Michelle Ufford, Jason Strate, Pinal Dave</dd>
</dl>
</div>
<p style="text-align:justify;">Q: Does index improve performance?<br />
A1: It depends on query and data you have.<br />
A2: Usually YES; however, there are cases when it reduces performance, for which the query and data needs to be examined carefully.</p>
<p style="text-align:justify;">There are times when <strong><em>it depends</em></strong> totally make sense. I use it several times; I love the blog of Andy Warren which talks is branded as it depends. This discussion between three of us was just a friendly discussion, and if you think we are talking about you, it is wrong!</p>
<p style="text-align:justify;">During this event, I had great conversation with SQL Legend <a href="http://blogs.msdn.com/buckwoody/" target="_blank">Buck Woody</a>. This man is full of energy and may be the most loved person in this summit. His session was the funniest session I have ever attended. At the end of his session, I had more than 2 pages of my notebook filled with notes. If I have wrote down how many times, I have laughed loudly, I would have no time to do anything else. Buck had a good hour of discussion with me. We discussed many different topics, ranging from Community to Microsoft and Collage Students to SQL. I am very thankful to Buck for spending his valuable time with me – I am honored.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Buck Woody and Pinal Dave" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS504.jpg" alt="Buck Woody and Pinal Dave" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Buck Woody and Pinal Dave</dd>
</dl>
</div>
<p style="text-align:justify;"><strong>Joe Celko</strong> – this name is very popular in SQL world, and I admit that I was always afraid of him. Every time I see his photo, I just felt nervous. I never thought that I should meet him. Honestly, for the same reason, I did not attend his session. <em><strong>I was absolutely wrong. </strong></em>I met him right after his session was over. He is one of the most friendly people I have met in my life. He is very soft spoken. He gauges the level and understanding of other person and speaks at the same level. He made me laugh and taught many good techniques for how to become good speaker and presenter. When I said I was sorry that I was scared of him, he laughed and said that he knows this. Boy, what a mistake I did!! I should have attended his session. Well, at least I am accepting my mistake here. He is indeed a very friendly soul. He promised me that one time he will come to India.</p>
<p style="text-align:justify;"><strong>Brian Moran</strong> is the newly elected board member; I would like to call him as &#8216;<strong><em>the Man with 1000 successful ideas</em></strong>&#8216;. You have to come across him to know what I am talking about. I had the great opportunity to meet him and discuss few things, besides SQL. Brian had many excellent ideas about how to build the community, how to help SQL PASS and few excellent ideas about how to take PASS to the next level. I am glad that he is one of the board members for PASS. PASS is all about passion, and Brian clearly demonstrates the same.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img class="  " title="Pinal Dave, Joe Celko, Brian Moran" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS515.jpg" alt="Pinal Dave, Joe Celko, Brian Moran" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Pinal Dave, Joe Celko, Brian Moran</dd>
</dl>
</div>
<p style="text-align:justify;">I met all of them and had a great conversation with them. It was great to meet <strong>Ed Hackney</strong>; he is a wonderful person and very easily approachable. He talked about SQL community in India and how any community cannot be restrained within geographical boundaries.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Ed Hackney and Pinal Dave" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS509.jpg" alt="Ed Hackney and Pinal Dave" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Ed Hackney and Pinal Dave</dd>
</dl>
</div>
<p style="text-align:justify;">I was waiting to meet <a href="http://thomaslarock.com/" target="_blank">Thomas LaRock</a>. He is an excellent SQL Master, and he talked in detail about outsourcing SQL technology and SQL community. I really enjoyed meeting him and spending some time with him during the summit. I plan to learn more from him when I meet him next time.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Thomas LaRock and Pinal Dave" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS513.jpg" alt="Thomas LaRock and Pinal Dave" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Thomas LaRock and Pinal Dave</dd>
</dl>
</div>
<p style="text-align:justify;"><a href="http://arcanecode.com/" target="_blank">Robert Cain</a>, he is one of the very few SQL masters, who have expertise in .net and Business Intelligence at the same time. I have previously wrote about him in <a href="http://blog.sqlauthority.com/2009/07/12/sqlauthority-news-big-thinkers-robert-cain/" target="_blank"><strong>Big Thinkers – Robert Cain</strong></a>. He has given approval that I can write about his BI presentation on this blog. I will write about it soon.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img class=" " title="Chris Massey, Robert Cain, Pinal Dave" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS517.jpg" alt="Chris Massy, Robert Cain, Pinal Dave" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Chris Massey, Robert Cain, Pinal Dave</dd>
</dl>
</div>
<p style="text-align:justify;">I have previously written a lot about Greg Low on this blog. However, I just can not resist to put this excellent photo once again here. He has great respect for the international community; and he had spent some quality time with me discussing how to enhance and grow the global community. Greg gave his insight and few plan cache tips as well. You can read my review of his book &#8216;<a href="http://blog.sqlauthority.com/2009/07/03/sqlauthority-news-book-review-the-rational-guide-to-building-technical-user-communities-rational-guides/" target="_blank">Book Review – The Rational Guide to Building Technical User Communities (Rational Guides)</a>&#8216;. You can also read our discussion on plan cache &#8216;<a href="http://blog.sqlauthority.com/2009/09/14/sql-server-plan-caching-and-schema-change-an-interesting-observation/" target="_blank">SQL SERVER – Plan Caching and Schema Change – An Interesting Observation</a>&#8216;.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Greg Low and Pinal Dave" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS510.jpg" alt="Greg Low and Pinal Dave" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Greg Low and Pinal Dave</dd>
</dl>
</div>
<p style="text-align:justify;">Following image is for sure very interesting! Can you recognize the person? Well, just <a href="http://itknowledgeexchange.techtarget.com/sql-server/sharp-sqlpass-hair-color-voting-ends-tonight-cast-your-vote-before-its-too-late/" target="_blank">go here</a> and read about <a href="http://itknowledgeexchange.techtarget.com/sql-server/" target="_blank">Mr. Denny</a>. And I do have permission from him to publish this photo!</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Mr. Danny" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS511.jpg" alt="Mr. Danny" width="500" height="666" /></dt>
<dd class="wp-caption-dd">Mr. Danny</dd>
</dl>
</div>
<p style="text-align:justify;">PASS 2010 dates are announced; this event will take place between 8 and 12 November 2010.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="PASS 2010" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS507.jpg" alt="PASS 2010" width="500" height="375" /></dt>
<dd class="wp-caption-dd">PASS 2010</dd>
</dl>
</div>
<p style="text-align:justify;">Following image is my favorite as it brings the future and past of PASS together. Kevin Kline, a hero of PASS summit, (as he dedicated 10 years of his life to serve PASS board) is in same frame with Rushabh Mehta, who is President Elect for 2010.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img class=" " title="Past President Kevin Kline and Future President Rushabh Mehta" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS506.jpg" alt="Past President Kevin Kline and Future President Rushabh Mehta" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Past President Kevin Kline and Future President Rushabh Mehta</dd>
</dl>
</div>
<p style="text-align:justify;">Now I am coming to the most interesting part of my experience. I want to introduce to all of you the youngest SQL PASS fan and follower. Her name is <a href="http://blog.sqlauthority.com/2009/09/08/sqlauthority-news-shaivi-dave-baby-sqlauthority/" target="_blank"><strong>Shaivi Dave</strong></a>, and she is big fan of SQL PASS! Shaivi suggests that save your money and register right away for PASS. There is no other conference which is as valuable as SQL PASS.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Nupur Dave and Shaivi Dave" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS501.jpg" alt="Nupur Dave and Shaivi Dave" width="500" height="666" /></dt>
<dd class="wp-caption-dd">Nupur Dave and Shaivi Dave</dd>
</dl>
</div>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Pinal Dave and Shaivi Dave" src="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS500.jpg" alt="Pinal Dave and Shaivi Dave" width="500" height="666" /></dt>
<dd class="wp-caption-dd">Pinal Dave and Shaivi Dave</dd>
</dl>
</div>
<p style="text-align:justify;">She had conveyed her wish to SQL PASS President Elect Rushabh Mehta when she was just 19 days old. May be one of following years, we will see her at summit.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><img title="Rushabh Mehta, Shaivi Dave, Pinal Dave" src="http://www.pinaldave.com/bimg/SQLPASS2009/Rushabh_Shaivi_Pinal.jpg" alt="Rushabh Mehta, Shaivi Dave, Pinal Dave" width="500" height="375" /></dt>
<dd class="wp-caption-dd">Rushabh Mehta, Shaivi Dave, Pinal Dave</dd>
</dl>
</div>
<p style="text-align:justify;">This is note is addendum to my four original posts. I strongly suggest you all to read my earlier posts for details on keynote and other SQL legends.</p>
<p style="text-align:justify;"><a href="http://blog.sqlauthority.com/2009/11/03/sqlauthority-news-sql-pass-summit-seattle-2009-day-1/" target="_blank">SQLAuthority News – SQL PASS Summit, Seattle 2009 – Day 1</a><br />
<a href="http://blog.sqlauthority.com/2009/11/04/sqlauthority-news-sql-pass-summit-seattle-2009-day-2/" target="_blank">SQLAuthority News – SQL PASS Summit, Seattle 2009 – Day 2</a><br />
<a href="http://blog.sqlauthority.com/2009/11/05/sqlauthority-news-sql-pass-summit-seattle-2009-day-3/" target="_blank">SQLAuthority News – SQL PASS Summit, Seattle 2009 – Day 3</a><br />
<a href="http://blog.sqlauthority.com/2009/11/06/sqlauthority-news-sql-pass-summit-seattle-2009-day-4/" target="_blank">SQLAuthority News – SQL PASS Summit, Seattle 2009 – Day 4</a></p>
<p style="text-align:justify;">If you have visited this event and have something more to add to what I have written, please feel free to add it here as a comment. I am looking forward for you all to add more details and information here. <strong><a href="http://twitter.com/pinaldave" target="_blank">Follow me on twitter</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>
<div id="_mcePaste" style="overflow:hidden;position:absolute;left:-10000px;top:0;width:1px;height:1px;text-align:justify;"><span id="ctl00_MainContentPlaceholder_ctl01_ctl00_lblEntry"> </span></p>
<h4 id="subjcns!45041418ECCAA960!2015" class="beTitle">SQL Server 2008 Diagnostic Information Queries</h4>
</div>
<br />Posted in Database, DBA, MVP, PASS, Pinal Dave, SQL, SQL Authority, SQL PASS, 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/7360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/7360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/7360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/7360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/7360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/7360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/7360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/7360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/7360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/7360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/7360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/7360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/7360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/7360/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=7360&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/11/16/sqlauthority-news-notes-of-excellent-experience-at-sql-pass-2009-summit-seattle/feed/</wfw:commentRss>
		<slash:comments>13</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/SQLPASS2009/SQLPASS514.jpg" medium="image">
			<media:title type="html">Washington Convention Center</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS502.jpg" medium="image">
			<media:title type="html">Undergroud Tour 1</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS503.jpg" medium="image">
			<media:title type="html">Undergroup Tour 2</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS505.jpg" medium="image">
			<media:title type="html">Glenn Berry and Pinal Dave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS508.jpg" medium="image">
			<media:title type="html">Michelle Ufford, Jason Strate, Pinal Dave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS504.jpg" medium="image">
			<media:title type="html">Buck Woody and Pinal Dave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS515.jpg" medium="image">
			<media:title type="html">Pinal Dave, Joe Celko, Brian Moran</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS509.jpg" medium="image">
			<media:title type="html">Ed Hackney and Pinal Dave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS513.jpg" medium="image">
			<media:title type="html">Thomas LaRock and Pinal Dave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS517.jpg" medium="image">
			<media:title type="html">Chris Massey, Robert Cain, Pinal Dave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS510.jpg" medium="image">
			<media:title type="html">Greg Low and Pinal Dave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS511.jpg" medium="image">
			<media:title type="html">Mr. Danny</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS507.jpg" medium="image">
			<media:title type="html">PASS 2010</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS506.jpg" medium="image">
			<media:title type="html">Past President Kevin Kline and Future President Rushabh Mehta</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS501.jpg" medium="image">
			<media:title type="html">Nupur Dave and Shaivi Dave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/SQLPASS500.jpg" medium="image">
			<media:title type="html">Pinal Dave and Shaivi Dave</media:title>
		</media:content>

		<media:content url="http://www.pinaldave.com/bimg/SQLPASS2009/Rushabh_Shaivi_Pinal.jpg" medium="image">
			<media:title type="html">Rushabh Mehta, Shaivi Dave, Pinal Dave</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER &#8211; Discussion &#8211; Effect of Missing Identity on System &#8211; Real World Scenario</title>
		<link>http://blog.sqlauthority.com/2009/08/11/sql-server-discussion-effect-of-missing-identity-on-system-real-world-scenario/</link>
		<comments>http://blog.sqlauthority.com/2009/08/11/sql-server-discussion-effect-of-missing-identity-on-system-real-world-scenario/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 01:30:13 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></category>
		<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 Constraint and Keys]]></category>
		<category><![CDATA[SQL Index]]></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=6524</guid>
		<description><![CDATA[About a week ago, SQL Server Expert, Imran Mohammed, provided a script, which will list all the missing identity values of a table in a database. In this post, I asked my readers if any could write a similar or better script. The results were interesting. While no one provided a new script, my question [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=6524&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">About a week ago, SQL Server Expert, <strong>Imran Mohammed,</strong> provided a script, which will list all the missing identity values of a table in a database. In this <a href="http://blog.sqlauthority.com/2009/07/27/sql-server-list-all-missing-identity-values-of-table-in-database/">post</a>, I asked my readers if any could write a similar or better script. The results were interesting. While no one provided a new script, my question sparked a very active <a href="http://blog.sqlauthority.com/2009/07/27/sql-server-list-all-missing-identity-values-of-table-in-database/">discussion</a> that is still ongoing.</p>
<p style="text-align:justify;">When providing the script, Imran asked me if I knew of any specific circumstances in which this kind of query could be useful, as he could not think of an instance where it would be necessary to find a missing identity. I was unable to think of a single reason for listing missing identities in a table. I posted Imran&#8217;s script on the assumption that someone would come up with an improved script, but as mentioned earlier, nobody did. Instead, we have been able to follow a very interesting discussion on subject of the need, if any, for listing Missing Identity values.</p>
<p style="text-align:justify;">So, the question is this: &#8220;<strong><em>Do you know a real-world scenario where a Missing Identity value in any table can create problems?</em></strong>&#8220;</p>
<p style="text-align:justify;">I have already received some extremely interesting comments from many experts, and all have posed the above question in one form or another. At this moment, I am still trying to think of an example from my own experience, but have yet to find one. Imran has since come up with one good example. Here is what he and other experts have suggested so far.</p>
<p style="text-align:justify;"><a href="http://blog.sqlauthority.com/2009/07/27/sql-server-list-all-missing-identity-values-of-table-in-database/#comment-54117" target="_blank"><strong>Jacob Sebastian</strong></a> &#8211; IDENTITY values are not expected to be sequential and there are all chances of having missing identity values, the most common cause is transaction rollbacks.</p>
<p style="text-align:justify;"><a href="http://blog.sqlauthority.com/2009/07/27/sql-server-list-all-missing-identity-values-of-table-in-database/#comment-54139" target="_blank"><strong>Simon Worth</strong></a> &#8211; The identity column is basically just a random number – even though they come sequentially. A developer making an assumption that the next record inserted will have an identity that is 1 more than the last inserted record. And if this is the case – then there are flaws in the logic of the developer.</p>
<p style="text-align:justify;"><a href="http://blog.sqlauthority.com/2009/07/27/sql-server-list-all-missing-identity-values-of-table-in-database/#comment-54158" target="_blank"><strong>Jacob Sebastian</strong></a> &#8211; What if the value in my table is 1, 2, 3, 5, 6 etc where “4″ is missing from the sequence. So what is the importance of knowing whether a table has missing identity values or not?</p>
<p style="text-align:justify;"><a href="http://blog.sqlauthority.com/2009/07/27/sql-server-list-all-missing-identity-values-of-table-in-database/#comment-54184" target="_blank"><strong>Imran Mohammed</strong></a> &#8211; If you use Identity property as your most unique column and Transaction Identifier, then definitely you would want to know why few transaction did not completely, Is there any specific fashion these transaction fails (Can be found out looking at missing values of identity)&#8230; Could be helpful to debug.</p>
<p style="text-align:justify;">Now it is your turn. Let us have your thoughts.</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>
<br />Posted in Database, DBA, Pinal Dave, Readers Contribution, Readers Question, SQL, SQL Authority, SQL Constraint and Keys, SQL Index, SQL Puzzle, SQL Query, SQL Server, SQL Tips and Tricks, SQLServer, T SQL, Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/6524/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/6524/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/6524/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/6524/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/6524/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/6524/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/6524/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/6524/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/6524/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/6524/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/6524/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/6524/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/6524/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/6524/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=6524&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/08/11/sql-server-discussion-effect-of-missing-identity-on-system-real-world-scenario/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>
	</item>
		<item>
		<title>SQLAuthority News &#8211; Author&#8217;s Birthday &#8211; Top 7 Commenters &#8211; Volunteers</title>
		<link>http://blog.sqlauthority.com/2009/07/30/sqlauthority-news-authors-birthday-top-7-commenters-volunteers/</link>
		<comments>http://blog.sqlauthority.com/2009/07/30/sqlauthority-news-authors-birthday-top-7-commenters-volunteers/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 01:30:18 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Pinal Dave]]></category>
		<category><![CDATA[Readers Contribution]]></category>
		<category><![CDATA[Readers Question]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Authority]]></category>
		<category><![CDATA[SQL Query]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Tips and Tricks]]></category>
		<category><![CDATA[SQLAuthority News]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6060</guid>
		<description><![CDATA[Today is July 30 and I am very happy; it’s my Birthday, celebration time!!! The most common question I receive on my every birthday is -what are my plans for birthday. Let me share my plans here today. Additionally, if you are interested to know when SQL Server was born read my post SQLAuthority News [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=6060&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Today is <strong>July 30</strong> and I am very happy; it’s <strong>my Birthday</strong>, celebration time!!! The most common question I receive on my every birthday is -what are my plans for birthday. Let me share my plans here today. Additionally, if you are interested to know when SQL Server was born read my post <strong><a href="http://blog.sqlauthority.com/2008/07/30/sqlauthority-news-author-birthday-sql-server-birthday/" target="_blank">SQLAuthority News – Author BirthDay – SQL Server Birthday</a></strong>.</p>
<p style="text-align:justify;">My first plan is that I am going to take a break from blogging on anything technical today and spend more time with my family.</p>
<p style="text-align:justify;">Let me tell you about my second plan. I am very much pleased and encouraged with active participation from many of you on this blog. I have received so far more than 10s of thousands of comments on my blog. These comments are open for you all to read and you can use them in any fashion that can help you out. Without good participation there is no life in any community, whether it is offline or online.</p>
<p style="text-align:justify;">For the same reason, I have introduced Top 7 Commenters section in the side bar of SQLAuthority.com. There are many active users who have been participating for a long time. One of them I just recognized is Imran Mohammed. This SQL Expert has been extremely helpful to the community and has been providing comprehensive answers to hundreds of questions. Hats Off to you Imran! I totally appreciate your knowledge and dedication to SQL community. Without passion and love toward helping community, this is absolutely not possible.</p>
<p>You can subscribe to <a href="http://feedproxy.google.com/SQLAuthority" target="_blank">SQLAuthority.com feed</a>, which will display all the new posts of my blog as they are published.</p>
<p>You can subscribe to<a href="http://blog.sqlauthority.com/comments/feed/" target="_blank"> SQLAuthority.com comments</a>, which will show all the new comments posted on the blog as they are published.</p>
<p style="text-align:justify;">If you prefer to receive <a href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=872428" target="_blank">SQLAuthority.com articles in email</a>, you will get all the fresh posts in email.</p>
<p style="text-align:justify;">There is no automated feature for top commenters where I host, so I will have to calculate this manually. I will keep it updated on weekly basis. Every week we will see new names there. First column is number of post, and second column is number name with link to experts website or blog or email.</p>
<p style="text-align:justify;">Every day I receive a couple of emails about starting a forum on SQLAuthority.com. I do plan to start the forum in future. Currently, there are plenty of very good forums on the web. SQLAuthority.com is a blog and below every blog post there is a discussion related to the subject discussed in the blog post.</p>
<p style="text-align:justify;">SQLAuthority.com is all about community and people who are passionate about SQL. Everyone is welcome to participate here. There are many ways to participate.</p>
<p style="text-align:justify;">
<ul style="text-align:justify;">
<li>Discussing blog post</li>
<li>Helping user who have posted their issues on blog</li>
<li>Asking questions</li>
<li>Writing Guest Post</li>
<li>Submitting useful SQL Scripts</li>
<li>Reviewing any Microsoft-related products</li>
<li>Reviewing Books</li>
</ul>
<p style="text-align:justify;">Let me know if you have any other useful and interesting suggestions on how I can involve YOU more in my efforts to take SQL community to the next level.</p>
<p style="text-align:justify;">If you are interested in participating in volunteer program do send me email at pinal &#8216;at&#8217; SQLAuthority.com and we can discuss something out.</p>
<p style="text-align:justify;">Reference : <strong>Pinal Dave (<a href="http://blog.sqlauthority.com/" target="_blank">http://blog.sqlauthority.com</a>)</strong></p>
<br />Posted in About Me, Database, DBA, Pinal Dave, Readers Contribution, Readers Question, Software Development, SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, SQLAuthority News, T SQL, Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/6060/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/6060/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/6060/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/6060/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/6060/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/6060/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/6060/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/6060/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/6060/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/6060/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/6060/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/6060/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/6060/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/6060/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=6060&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/07/30/sqlauthority-news-authors-birthday-top-7-commenters-volunteers/feed/</wfw:commentRss>
		<slash:comments>36</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; 2008 &#8211; Copy Database With Data &#8211; Generate T-SQL For Inserting Data From One Table to Another Table</title>
		<link>http://blog.sqlauthority.com/2009/07/29/sql-server-2008-copy-database-with-data-generate-t-sql-for-inserting-data-from-one-table-to-another-table/</link>
		<comments>http://blog.sqlauthority.com/2009/07/29/sql-server-2008-copy-database-with-data-generate-t-sql-for-inserting-data-from-one-table-to-another-table/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 01:30:03 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></category>
		<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 Server]]></category>
		<category><![CDATA[SQL Tips and Tricks]]></category>
		<category><![CDATA[SQL Utility]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6043</guid>
		<description><![CDATA[Just about a year ago, I had written on the subject of how to insert data from one table to another table without generating any script or using wizard in my article SQL SERVER – Insert Data From One Table to Another Table – INSERT INTO SELECT – SELECT INTO TABLE. Today, we will go [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=6043&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Just about a year ago, I had written on the subject of how to insert data from one table to another table without generating any script or using wizard in my article <a href="http://blog.sqlauthority.com/2007/08/15/sql-server-insert-data-from-one-table-to-another-table-insert-into-select-select-into-table/" target="_blank">SQL SERVER – Insert Data From One Table to Another Table – INSERT INTO SELECT – SELECT INTO TABLE</a>. Today, we will go over a similar question regarding how to generate script for data from database as well as table. SQL Server 2008 has simplified everything.</p>
<p style="text-align:justify;">Let us take a look at an example where we will generate script database. In our example, we will just take one table for convenience.</p>
<p style="text-align:justify;">Right Click on Database &gt;&gt; Tasks &gt;&gt; Generate Scripts &gt;&gt;</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/data1.jpg" alt="" width="500" height="428" /></p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/data2.jpg" alt="" width="501" height="451" /></p>
<p style="text-align:justify;">This will pop up Generate SQL Server Scripts Wizards &gt;&gt; Click on Next &gt;&gt; Select Database &gt;&gt; This will bring up a screen that will suggest to Choose Script Option.</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/data3.jpg" alt="" width="501" height="451" /></p>
<p style="text-align:justify;">On Choose Script Option Screen of Script Wizard under section Table/View Options Look at Script Data row and Turn the Option to True.</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/data4.jpg" alt="" width="503" height="795" /></p>
<p style="text-align:justify;">The Next Screen will ask about object types. Select all the objects that are required in the generated script. Depending on the previous screen it will show few more screen requesting details about the objects required in script generation.</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/data5.jpg" alt="" width="501" height="514" /></p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/data6.jpg" alt="" width="501" height="514" /></p>
<p style="text-align:justify;">On the very last screen it will request output options. Select the desired output options of Script to file, Script to Clipboard or Script New Query Window.3</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/data7.jpg" alt="" width="501" height="514" /></p>
<p style="text-align:justify;">Clicking on Finish button will generate a review screen containing the required objects along with script generating data.</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/data8.jpg" alt="" width="501" height="549" /></p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/data9.jpg" alt="" width="501" height="549" /></p>
<p style="text-align:justify;">Clicking on Finish button one more time will generate the requested output.</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/data10.jpg" alt="" width="500" height="423" /></p>
<p style="text-align:justify;">Similarly, if you want to generate data for only one table, you can right click on the table and follow almost a similar wizard. I am sure this neat feature will help everybody who has been requesting for it for a long time.</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>
<br />Posted in Best Practices, Database, DBA, Pinal Dave, Readers Question, SQL, SQL Authority, SQL Query, SQL Scripts, SQL Server, SQL Tips and Tricks, SQL Utility, T SQL, Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/6043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/6043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/6043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/6043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/6043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/6043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/6043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/6043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/6043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/6043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/6043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/6043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/6043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/6043/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=6043&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/07/29/sql-server-2008-copy-database-with-data-generate-t-sql-for-inserting-data-from-one-table-to-another-table/feed/</wfw:commentRss>
		<slash:comments>100</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/data1.jpg" medium="image" />

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

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

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

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

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

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

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

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

		<media:content url="http://www.pinaldave.com/bimg/data10.jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News &#8211; Rambling of Author and Technology Musing &#8211; Bing, Google, Windows 7, Books, Blogs, Twitter and Life</title>
		<link>http://blog.sqlauthority.com/2009/06/05/sqlauthority-news-rambling-of-author-and-technology-musing-bing-google-windows-7-books-blogs-twitter-and-life/</link>
		<comments>http://blog.sqlauthority.com/2009/06/05/sqlauthority-news-rambling-of-author-and-technology-musing-bing-google-windows-7-books-blogs-twitter-and-life/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 01:30:17 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[DBA]]></category>
		<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[T SQL]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5358</guid>
		<description><![CDATA[I have been planning to write a general post on the latest technology for a long time but SQL keeps me so busy that I hardly get time. I know being busy is no excuse as everybody is busy with something. A manager is equally busy managing people as much as a peon busy doing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=5358&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">I have been planning to write a general post on the latest technology for a long time but SQL keeps me so busy that I hardly get time. I know being busy is no excuse as everybody is busy with something. A manager is equally busy managing people as much as a peon busy doing errands. Now, coming back to my topic, I have lots of news to share with you all.</p>
<p style="text-align:justify;">Anyway, number one news is that <strong><a href="http://www.bing.com/" target="_blank">Bing</a></strong> has been finally released a couple of days back. I am very much excited as something is finally challenging <strong><a href="http://www.google.com/" target="_blank">Google</a></strong> &#8211; The Search Engine King. Google has been my preferred search engine for many years and my home page too. However, I am quite impressed with Bing which has a clearer and more organized interface. The navigation on the left side does make sense. My opinion is that there is no other option for Google but to improve to retain its popularity. In the search engine race Google has always been a clear winner for many years now, and people have always appreciated its simplicity and most importantly, its accurate results. But now, for the very first time I think Bing is going to challenge Google on two fronts &#8211; accuracy of search and simplicity of interface. Only time will decide who will rule, but I would like to give Bing a fair chance to improve itself.</p>
<p style="text-align:justify;">Another major improvement I have done is that I have finally upgraded 3 of my 4 computers to <strong><a href="http://www.microsoft.com/windows/windows-7/" target="_blank">Windows 7</a></strong>. I have never hated Vista for its shortcomings. I have seen people and media pointing negative things about it. In fact I think it has now become a trend to just bad mouth Vista. I thoroughly believe that Vista was a significant improvement over XP. There was a time when XP was everywhere and every software was designed in keeping with its compatibility with it. Then, Vista emerged in the market. XP required less hardware while Vista necessitated upgradation of hardware of most of the computer systems. This was not appreciated by many users as they had to spend money on hardware apart from spending on Vista. Additionally, it took a good amount of time for companies to come out with drivers of Vista. Today, Win 7 is out and getting loudly applauded by the same people who criticized it. Win 7 is definitely better and I love it! It has everything what Vista had and even more. If people hated Vista for some of its drawbacks, in that case Win 7 will not disappoint them and it will exceed their expectations with its additional features. Slowly and steadily, Win 7 is coming out as a winner. It took sometime for Vista to get accepted, which was entirely hardware companies fault as they did not release its driver. But today almost all the companies have Vista compatible drivers which work fine with Win 7, thereby making Win 7 more acceptable.</p>
<p style="text-align:justify;">There is one more reason why Win 7 has become my favorite OS. My wife &#8211; <strong>Nupur Dave </strong>has an old laptop, which is single core (when we purchased it there was no concept of double core) and had XP so far. Since the past one month, my wife kept on complaining that her laptop takes forever to start. As her laptop is 6 years old with 1.6 GHz, Single Core and 1 GB RAM, we decided to purchase a new one. However, I decided to give it a shot and see if I can install Win 7 on this old machine. To my surprise, it took only 25 mins to install the whole operating system and it works better than XP. Now this is something really good about it and it saved my bucks!</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/windows7.jpg" alt="" width="500" height="375" /></p>
<p>What else is keeping me busy? There are so many things to say. I am reading a plethora of books and blogs. I have a collection of over 500 books in my home library and have almost the same number of feeds in my RSS reader. I recently finished a book <strong><a href="http://blog.sqlauthority.com/2009/04/20/sqlauthority-book-review-pro-t-sql-2008-programmer%E2%80%99s-guide-by-michael-coles/" target="_blank">Pro T-SQL 2008 Programmer’s Guide</a></strong>. It is written by one of the most popular book authors <strong>Michael Coles</strong>. You can read <a href="http://www.dotnetvj.com/2009/05/60-seconds-with-michael-coles.html" target="_blank">his interview here</a>. His interview was taken by a dear friend of mine who is a .NET expert <a href="http://www.dotnetvj.com/" target="_blank">Vijaya Kadiyala</a>. He is not only writing about .NET but also writing on SQL. Besides, whenever I have free time I try to solve <a href="http://beyondrelational.com/blogs/tc/" target="_blank">T-SQL Challenges</a> written by my fellow MVP <strong><a href="http://beyondrelational.com/" target="_blank">Jacob Sebastian</a></strong>.</p>
<p style="text-align:justify;">Well, my friend <strong><a href="http://www.abhishekkant.net/" target="_blank">Abhishek Kant</a></strong> suggested me to start using <strong><a href="http://twitter.com/pinaldave" target="_blank"><strong>twitter </strong></a></strong>but not to forget my blog. Every time I spend too much time on twitter, I remember his saying: Hats Off! Thanks Abhishek for giving me these golden words. I will keep on blogging.</p>
<p>Thanks John-Wu Zioa for sending this cartoon. I’m flattered!</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/gotjob.png" alt="" width="399" height="313" /></p>
<p style="text-align:justify;">Now you know what I think of the latest technologies and what I have been doing. I will appreciate your comments for the same and please feel free to share your experience here.</p>
<p style="text-align:justify;">Reference : <strong>Pinal Dave (<a href="http://blog.sqlauthority.com/" target="_blank">http://blog.SQLAuthority.com</a>)</strong></p>
<br />Posted in About Me, DBA, MVP, Pinal Dave, SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, SQLAuthority News, T SQL, Technology Tagged: Bing, Google <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/5358/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/5358/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/5358/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/5358/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/5358/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/5358/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/5358/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/5358/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/5358/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/5358/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/5358/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/5358/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/5358/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/5358/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=5358&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/06/05/sqlauthority-news-rambling-of-author-and-technology-musing-bing-google-windows-7-books-blogs-twitter-and-life/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>

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

		<media:content url="http://www.pinaldave.com/bimg/gotjob.png" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News &#8211; Download &#8211; SQL Server 2008 Developer Training Kit</title>
		<link>http://blog.sqlauthority.com/2009/05/22/sqlauthority-news-download-sql-server-2008-developer-training-kit/</link>
		<comments>http://blog.sqlauthority.com/2009/05/22/sqlauthority-news-download-sql-server-2008-developer-training-kit/#comments</comments>
		<pubDate>Fri, 22 May 2009 01:30:35 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Database]]></category>
		<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 Download]]></category>
		<category><![CDATA[SQL Query]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Tips and Tricks]]></category>
		<category><![CDATA[SQL Utility]]></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=5152</guid>
		<description><![CDATA[Note :   Download SQL Server 2008 Developer Training Kit by Microsoft SQL Server 2008 offers an impressive array of capabilities for developers that build upon key innovations introduced in SQL Server 2005. The  SQL Server 2008 Developer Training Kit  will help you understand how to build web applications which deeply exploit the rich data types, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=5152&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Note :   <strong><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=e9c68e1b-1e0e-4299-b498-6ab3ca72a6d7" target="_blank">Download </a></strong><strong><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=e9c68e1b-1e0e-4299-b498-6ab3ca72a6d7" target="_blank">SQL Server 2008 Developer Training Kit</a> </strong>by Microsoft</p>
<p style="text-align:justify;">SQL Server 2008 offers an impressive array of capabilities for developers that build upon key innovations introduced in SQL Server 2005. The  SQL Server 2008 Developer Training Kit  will help you understand how to build web applications which deeply exploit the rich data types, programming models and new development paradigms in SQL Server 2008. The training kit is brought to you by Microsoft Developer and Platform Evangelism.</p>
<p style="text-align:justify;">The training kit includes the following content:</p>
<ul>
<li>Presentations (6)
<ul>
<li>Filestream</li>
<li>Spatial</li>
<li>T-SQL</li>
<li>Date and Time Types</li>
<li>SQLCLR</li>
<li>Reporting Services</li>
</ul>
</li>
<li>Demos (12)
<ul>
<li>AdventureWorks Racing All-Up SQL Server 2008 Demo</li>
<li>SQL Server 2008 All-Up Spatial Demo</li>
<li>Spatial Types Demo</li>
<li>Intro to Filestream Demo</li>
<li>SQL CLR Nullable Types Demo</li>
<li>Programming with Filestream Demo</li>
<li>Reporting Services Web Application Integration Demo</li>
<li>Date and Time Support in SQL Server 2008 Demo</li>
<li>T-SQL Table-Valued Parameters Demo</li>
<li>T-SQL Row Constructors Demo</li>
<li>T-SQL Grouping Sets Demo</li>
<li>T-SQL Merge Demo</li>
</ul>
</li>
<li>Hands-on Labs (3)
<ul>
<li>Using Spatial Data in TSQL</li>
<li>Using Spatial Data in Managed Code</li>
<li>Using SQL CLR in SQL Server 2008</li>
</ul>
</li>
</ul>
<p><strong><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=e9c68e1b-1e0e-4299-b498-6ab3ca72a6d7" target="_blank">Download </a></strong><strong><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=e9c68e1b-1e0e-4299-b498-6ab3ca72a6d7" target="_blank">SQL Server 2008 Developer Training Kit</a></strong></p>
<p>Abstract courtesy : Microsoft</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>
<br />Posted in Database, DBA, Pinal Dave, SQL, SQL Authority, SQL Documentation, SQL Download, SQL Query, SQL Server, SQL Tips and Tricks, SQL Utility, SQLAuthority News, SQLServer, T SQL, Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/5152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/5152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/5152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/5152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/5152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/5152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/5152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/5152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/5152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/5152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/5152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/5152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/5152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/5152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=5152&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/05/22/sqlauthority-news-download-sql-server-2008-developer-training-kit/feed/</wfw:commentRss>
		<slash:comments>3</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; Download PDF SQL Server Cheat Sheet</title>
		<link>http://blog.sqlauthority.com/2009/05/20/sql-server-download-pdf-sql-server-cheat-sheet/</link>
		<comments>http://blog.sqlauthority.com/2009/05/20/sql-server-download-pdf-sql-server-cheat-sheet/#comments</comments>
		<pubDate>Wed, 20 May 2009 01:30:38 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></category>
		<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[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5129</guid>
		<description><![CDATA[I had a gala time at TechEd India 2009 event! Meeting with great people is an experience of a lifetime. My session was well attended and well appreciated, which also gives me another reason to feel happy.  Moreover, my SQL Server Cheat Sheet gained unpredicted popularity at the event. Let me share with you all [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=5129&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">I had a gala time at TechEd India 2009 event! Meeting with great people is an experience of a lifetime. My session was well attended and well appreciated, which also gives me another reason to feel happy.  Moreover, my SQL Server Cheat Sheet gained unpredicted popularity at the event. Let me share with you all a little story behind this cheat sheet.</p>
<p style="text-align:justify;">For my personal use, I created one handy SQL Cheat Sheet, which I hang on my desk always. Even though I have a sound knowledge of SQL Syntax there are many occasions when I need to quickly refer to syntax. This cheat sheet helped me quite a bit and saved my time. Besides, it saved me from getting annoyed of looking up for same syntax again and again. This experience gave me the idea of creating a proper SQL Server Cheat Sheet, which was until now in a simple excel document.</p>
<p style="text-align:justify;">I often received numerous requests from my friends, UG members and blog readers to covert the SQL Server Cheat Sheet into a more presentable one. Well, my designing skills are limited and also I never undertook this creative task. I was inspired by <a href="http://www.solidq.com/na/MentorDetail.aspx?Id=11" target="_blank">Rushabh Mehta</a> of SolidQ as well the directors of <a href="http://www.digi-corp.com/" target="_blank">Digicorp</a> to create PDF printable version of this cheat sheet. Designers at Digicorp created this professional looking cheat sheet and then it was printed on a high quality glossy paper. When I had the first glimpse of the final SQL Server Cheat Sheet, I realized that I should do something for my community and share this useful cheat sheet with more and more SQL developers. TechEd India 2009 was one such opportunity where I was able to achieve my goal; I distributed several SQL Server Cheat Sheets among the participants.</p>
<p style="text-align:justify;">SQL Server Cheat Sheet acquired so much popularity at TechEd that I ran out of all the copies around noon on the third day of the event. I had promised many attendees that I will put this online and also I will send it to them using physical email.</p>
<p style="text-align:justify;">Now, you can download SQL Server Cheat Sheet and print it on a glossy paper yourself. I request you all to spread the words and pass this cheat sheet to your friends. Bookmark it, reprint it, and distribute it! Due to copyright issues you are not allowed to host it online anywhere other than its original location listed below.</p>
<h2 style="text-align:justify;"><strong><a href="http://www.pinaldave.com/sql-downloads/pdf-download/sql-server-cheat-sheet-download/" target="_blank">Download SQL Server Cheat Sheet</a></strong></h2>
<p style="text-align:justify;">Reference : <strong>Pinal Dave (<a href="http://blog.sqlauthority.com/" target="_blank">http://blog.SQLAuthority.com</a>)</strong></p>
<p style="text-align:justify;">Update : If you visit <a href="http://blog.sqlauthority.com/2009/05/19/sqlauthority-news-sql-server-energy-event-mark-your-calender-may-20-2009/" target="_blank">SQL Server Energy Event</a>, you will get free printed copy of SQL Server Cheat Sheet</p>
<p style="text-align:justify;">Original post : <a href="http://blog.sqlauthority.com/2009/05/20/sql-server-download-pdf-sql-server-cheat-sheet/" target="_blank">http://blog.sqlauthority.com/2009/05/20/sql-server-download-pdf-sql-server-cheat-sheet/</a></p>
<br />Posted in Database, DBA, MVP, Pinal Dave, SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, SQL User Group, SQLServer, T SQL, Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/5129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/5129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/5129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/5129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/5129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/5129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/5129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/5129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/5129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/5129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/5129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/5129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/5129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/5129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=5129&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/05/20/sql-server-download-pdf-sql-server-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>12</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; 10 Reasons for Database Outsourcing</title>
		<link>http://blog.sqlauthority.com/2009/05/10/sql-server-10-reasons-for-database-outsourcing/</link>
		<comments>http://blog.sqlauthority.com/2009/05/10/sql-server-10-reasons-for-database-outsourcing/#comments</comments>
		<pubDate>Sun, 10 May 2009 01:30:10 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Readers Contribution]]></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[T SQL]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Outsourcing Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=4885</guid>
		<description><![CDATA[10 Reasons for Database Outsourcing While you may feel that your IT material is safe and handled effectively within your own company, these reasons may give you some perspective on why you may want to consider other options. Cost Reduction &#8211; Perhaps the most popular reason to outsource your database is the overall reduction in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=4885&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;"><strong>10 Reasons for Database Outsourcing</strong></p>
<p style="text-align:justify;"><em>While you may feel that your IT material is safe and handled effectively within your own company, these reasons may give you some perspective on why you may want to consider other options.</em></p>
<p style="text-align:justify;"><strong>Cost Reduction</strong> &#8211; Perhaps the most popular reason to outsource your database is the overall reduction in cost that would benefit your company.  No longer do you have to pay people to check up and maintain your servers, verify that they have uninterrupted power supplies, and ensure their security from hackers.  By going with an IT company that does this exclusively, you can save money on your end because they make money by volume.</p>
<p style="text-align:justify;"><strong>Bigger Can Mean Better</strong> &#8211; Larger IT outsourcing companies are experts at what they do; there&#8217;s a reason they have made it to the top of the data storage field.  Not only will they have the resources to back up your data, perhaps multiple times, but they do business by serving many clients, which meant they have the power and money to get the latest technology.</p>
<p style="text-align:justify;"><strong>Newer Technology</strong> &#8211; Firms that specialize in storage can&#8217;t afford to let their systems go out of style or date because that could jeopardize their business.  Going with them means you won&#8217;t have to worry about constantly updating your systems.</p>
<p style="text-align:justify;"><strong>Reduction in Liability</strong> &#8211; Turning over this task to an expert also means a lot less worrying on your part.  All you have to do is make sure you are operating within a solid contract that protects you in the case of data loss.  Agree to a contract that puts you ahead in the case of a loss and you can sleep soundly knowing that your data is safe.</p>
<p style="text-align:justify;"><strong>Competition means Lower Prices Elsewhere as Well</strong> &#8211; Now that you are in a market where others are competing for your business, you&#8217;ll get to shop around and find the best deal in town.  In addition to the number one reason of lowering your overhead, competition also means that if you find you have gone with a company that doesn&#8217;t meet your needs you can switch.  Imagine making that mistake if you owned all your own equipment!</p>
<p style="text-align:justify;"><strong>More Effective Communication</strong> &#8211; If your company runs a database that needs to be accessed by multiple points, it will be easier for others to access and probably be faster for them to access as well.  Once again a good contract is key, but in most cases you can get more bandwidth access for your money by outsourcing, than you could by providing your own database connection.</p>
<p style="text-align:justify;"><strong>Better Security</strong> &#8211; On the other hand you will know your data is backed up by competition driven upgraded safeware.</p>
<p style="text-align:justify;"><strong>Standardization</strong> &#8211; What if your resource manager suddenly quits or is fired?  Outsourcing virtually guarantees that your information will be stored in a standard way, accessible consistently and without fear of security leaks.</p>
<p style="text-align:justify;"><strong>Cross-referencing with Third Party Information</strong> &#8211; In many cases it may be possible to have your information collated and cross-referenced with other information for a variety of needs.  Once again get a solid contract and fully understand your security requirements first.</p>
<p style="text-align:justify;"><strong>Removal of Duplicate or Incorrect Data</strong> &#8211; A final way outsourcing can help your database is a common option many companies will offer, which is the examination of your data in various ways as it is transferred.  Think of this as your businesses opportunity to &#8216;clean house,&#8217; and set out again with a fresh start.</p>
<p style="text-align:justify;">This post was contributed by <strong>Claire Webber</strong>, who writes about the <strong><a href="http://www.online-college-blog.com/">schools online</a></strong>. She welcomes your feedback at Claire.Webber1223 at gmail.com</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>
<br />Posted in Best Practices, Database, DBA, Readers Contribution, SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, T SQL, Technology Tagged: Outsourcing Technology <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/4885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/4885/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/4885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/4885/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/4885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/4885/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/4885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/4885/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/4885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/4885/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/4885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/4885/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/4885/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/4885/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=4885&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/05/10/sql-server-10-reasons-for-database-outsourcing/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>SQLAuthority News &#8211; Future of Business Intelligence and Databases &#8211; Article by Nupur Dave</title>
		<link>http://blog.sqlauthority.com/2009/05/08/sqlauthority-news-future-of-business-intelligence-and-databases-article-by-nupur-dave/</link>
		<comments>http://blog.sqlauthority.com/2009/05/08/sqlauthority-news-future-of-business-intelligence-and-databases-article-by-nupur-dave/#comments</comments>
		<pubDate>Fri, 08 May 2009 01:30:57 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Data Warehousing]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Readers Contribution]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Authority]]></category>
		<category><![CDATA[SQL Query]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Tips and Tricks]]></category>
		<category><![CDATA[SQLAuthority News]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=5013</guid>
		<description><![CDATA[This article is submitted by Nupur Dave Future of Business Intelligence and Databases The term business intelligence (BI) was coined by Howard Dresner in the early 1990s. He defined Business Intelligence as “a set of concepts and methodologies to improve decision making in business through use of facts and fact-based systems.” In a time when [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=5013&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">This article is submitted by <strong>Nupur Dave</strong></p>
<h2 style="text-align:justify;"><strong>Future of Business Intelligence and Databases</strong></h2>
<p style="text-align:justify;">The term business intelligence (BI) was coined by Howard Dresner in the early 1990s. He defined Business Intelligence as “a set of concepts and methodologies to improve decision making in business through use of facts and fact-based systems.” In a time when data warehousing was considered leading-edge he created the vision that led to the development of business intelligence, as it is known today.  The once visionary BI is now commonplace and in near future a momentous transformation is about to take place.</p>
<p style="text-align:justify;">BI is all set to bring information democracy where end users across an organization will be able to view information related to their segment. Further, with the rising consumer expectations there will be demand for capability requirements of BI as well.</p>
<p style="text-align:justify;"><img class="alignnone" src="http://www.pinaldave.com/bimg/bi2.jpg" alt="" width="500" height="403" /></p>
<p style="text-align:justify;"><strong>Information Democracy with</strong><strong> </strong><strong>Business Intelligence</strong><strong></strong></p>
<p style="text-align:justify;">BI plays a crucial role in providing cost-effective, comprehensive insights into business processes that help organizations make informed, strategic decisions that assure enhanced business results. Not long ago, BI was the domain of statisticians and corporate analysts. Only the selected few could access BI. Today, BI is spreading to nearly every strata of organization, as companies attempt to provide critical data to business users who need it to perform their jobs. It is quite evident that BI is instrumental in bringing information democracy and it provides everyone the insights they require &#8211; delivering information to the right people at the right time across the enterprise. More and more organizations are expected to empower their employees with BI for productivity and operational gains.</p>
<p style="text-align:justify;"><strong>Business Intelligence</strong><strong> and Performance Management for competitive advantage</strong></p>
<p style="text-align:justify;">Today, when economic downturn is adversely affecting the world market, making insightful decisions about major changes in their business and markets has become crucial for organizations. They need to reconsider their strategies and operating plans. Only companies that can anticipate emerging trends and opportunities, refocus business strategy and vision, and align resources to maximize performance can effectively deal with the adversities of economic downturn and gain competitive advantage. BI and Performance Management brings business sensibility with enhanced visibility and insights, by delivering accurate and latest information to the right people for faster, improved, strategic and tactical decision making. Companies have increasingly starting realizing the importance of timely performance information to improve results, which will further make way for the rising demand for BI and Corporate Performance Management Solutions.</p>
<p style="text-align:justify;"><strong>Business Intelligence via Software As A Service (SaaS) </strong></p>
<p style="text-align:justify;">It is being anticipated that in the coming years a number of organizations will have an industry-specific analytic application delivered via software as a service (SaaS) as a standard component of their BI portfolio. Information aggregators will bank on SaaS to deliver domain-specific analytic applications, which are made from industry data they assemble, and bring the balance of power in the BI platform market in their favor. Organizations will share their data with only those aggregators that can assure security as well as confidentiality. Thus, countless information aggregators offering SaaS analytic applications might appear; however, a virtual monopoly is expected to remain within each vertical niche owing to the high barricade that blocks the entry for others.</p>
<p><img class="alignnone" src="http://www.pinaldave.com/bimg/bi1.jpg" alt="" width="500" height="299" /></p>
<p style="text-align:justify;"><strong>Business Intelligence and Social Software</strong></p>
<p style="text-align:justify;">Collaborative decision making will soon become the norm, which amalgamates social software with BI Platform capabilities. With social software users can tag assumptions made in the decision-making process to the BI framework, which significantly enhances the business value of BI as it ties all the good. Take for instance, in order to decide how much to invest in marketing a new product, users can tag their assumptions about the future sales of that product to a key performance indicator (KPI) that measures product sales. Whenever the KPI surpasses a threshold the BI platform would send alerts to the user to inform the decision makers about assumptions that no longer hold true.</p>
<p style="text-align:justify;">With the advent of social software it has become easier to utilize the upsurge of interest in informal collaboration. As an alternative to the advancing of the usual top-down decision-making initiative, social software will be employed to collaborate and make decisions.</p>
<p style="text-align:justify;"><strong>Business Intelligence Across All Sectors </strong></p>
<p style="text-align:justify;">BI is on its way to become an integral component of every type and size of organization across all sectors, including Real estate, IT, mobile devices, governmental agencies, scientific and engineering communities and R&amp;D labs, banking and insurance, to name a few. BI can effectively deal with industry-specific constraints, operations and objectives thereby helping organizations better understand their customers, optimize their operations, minimize risk, manage revenue, and ultimately improve their results. More importantly, it is expected that in a couple of years BI will soon replace the gut-feel management with real data-based decision-making.</p>
<p style="text-align:justify;"><strong>Business Intelligence For Real-Time Data</strong></p>
<p style="text-align:justify;">Today, consumers are demanding faster and improved services from businesses. As it has become imperative for companies to pay attention to consumer satisfaction in order to stay competitive they are depending even more on BI. They now demand near real-time analysis for intelligent decisions for business success. The rising demand for near-real-time data analysis is making way for a new framework for business intelligence. BI 2.0 is the recently-coined term to describe the acquisition, provision and analysis of real- time data, which was earlier lacking in BI. BI 2.0 is a part of the constantly developing business intelligence industry and indicates the next step for BI.</p>
<p style="text-align:justify;">In near future, companies will switch from the traditional model of making business adjustments on a quarterly basis to business intelligence and performance management tools to make real-time shifts in strategy to respond to changes in the marketplace.</p>
<p style="text-align:justify;"><strong>Over the coming years, business intelligence will undergo transformation that will have a broad and lasting impact. It will revolutionize the way that we think about business and the way business decisions are made. It’s only when thoughtful analysis supersedes gut feeling and conventional perception, we will enter the next level of business intelligence that will empower businesses with the capacity to reason, prepare, forecast, resolve issues and innovate.</strong></p>
<p style="text-align:justify;">Reference : <strong>Nupur Dave</strong> <strong>(<a href="http://blog.sqlauthority.com" target="_blank">http://blog.sqlauthority.com</a>)</strong></p>
<br />Posted in Business Intelligence, Data Warehousing, Database, DBA, Readers Contribution, SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, SQLAuthority News, T SQL, Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/5013/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/5013/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/5013/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/5013/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/5013/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/5013/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/5013/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/5013/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/5013/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/5013/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/5013/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/5013/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/5013/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/5013/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=5013&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/05/08/sqlauthority-news-future-of-business-intelligence-and-databases-article-by-nupur-dave/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/bi2.jpg" medium="image" />

		<media:content url="http://www.pinaldave.com/bimg/bi1.jpg" medium="image" />
	</item>
		<item>
		<title>SQLAuthority News &#8211; SQL Server 2008 Service Pack 1 Released &#8211; Available for Download</title>
		<link>http://blog.sqlauthority.com/2009/04/08/sqlauthority-news-sql-server-2008-service-pack-1-released-available-for-download/</link>
		<comments>http://blog.sqlauthority.com/2009/04/08/sqlauthority-news-sql-server-2008-service-pack-1-released-available-for-download/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 01:30:00 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Pinal Dave]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Authority]]></category>
		<category><![CDATA[SQL Download]]></category>
		<category><![CDATA[SQL Query]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Tips and Tricks]]></category>
		<category><![CDATA[SQLAuthority News]]></category>
		<category><![CDATA[SQLServer]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=4336</guid>
		<description><![CDATA[SQL Server 2008 Service Pack 1 (SP1) is now available. You can use these packages to upgrade any SQL Server 2008 edition. Download SQL Server 2008 Service Pack 1 Build of SP1 is SP1 is build 10.00.2531.00. Abstract courtesy : Microsoft Reference : Pinal Dave (http://blog.sqlauthority.com) Posted in Database, DBA, Pinal Dave, SQL, SQL Authority, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=4336&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SQL Server 2008 Service Pack 1 (SP1) is now available.  You can use these packages to upgrade any SQL Server 2008 edition.</p>
<h3><strong><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=66ab3dbb-bf3e-4f46-9559-ccc6a4f9dc19" target="_blank">Download SQL Server 2008 Service Pack 1</a></strong></h3>
<p>Build of SP1 is SP1 is build 10.00.2531.00.</p>
<p>Abstract courtesy : Microsoft</p>
<p>Reference : <strong>Pinal Dave (<a href="http://blog.sqlauthority.com/" target="_blank">http://blog.sqlauthority.com</a>)</strong></p>
<br />Posted in Database, DBA, Pinal Dave, SQL, SQL Authority, SQL Download, 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/4336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/4336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/4336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/4336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/4336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/4336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/4336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/4336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/4336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/4336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/4336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/4336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/4336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/4336/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=4336&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/04/08/sqlauthority-news-sql-server-2008-service-pack-1-released-available-for-download/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>
	</item>
		<item>
		<title>SQLAuthority News &#8211; SQL SERVER 2008 &#8211; Updated Brochure Available for Download</title>
		<link>http://blog.sqlauthority.com/2009/03/28/sqlauthority-news-sql-server-2008-updated-brochure-available-for-download/</link>
		<comments>http://blog.sqlauthority.com/2009/03/28/sqlauthority-news-sql-server-2008-updated-brochure-available-for-download/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 01:30:04 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></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[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=4068</guid>
		<description><![CDATA[SQL Server 2008 new brochure is available for download. Microsoft® SQL Server® 2008 provides a trusted, productive, and intelligent data platform that enables you to: Run your most demanding mission-critical applications. Reduce time and cost of development and management of applications. Deliver actionable insight to your entire organization. Your Data, Any Place, Any Time. Download [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=4068&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">SQL Server 2008 new brochure is available for download.</p>
<p style="text-align:justify;">Microsoft® SQL Server® 2008 provides a trusted, productive, and intelligent data platform that enables you to:</p>
<ul style="text-align:justify;">
<li>Run your most demanding mission-critical applications.</li>
<li>Reduce time and cost of development and management of applications.</li>
<li>Deliver actionable insight to your entire organization.</li>
</ul>
<p style="text-align:justify;">
<p style="text-align:justify;">Your Data, Any Place, Any Time.</p>
<p style="text-align:justify;"><strong><a href="http://www.pinaldave.com/best-sql-server-download.cfm?download=SQL-SERVER-2008-Brochure-Download" target="_blank">Download SQL Server 2008 Brochure</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>
<br />Posted in Database, DBA, SQL, SQL Authority, SQL Documentation, SQL Download, SQL Query, SQL Server, SQL Tips and Tricks, SQLAuthority News, T SQL, Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/4068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/4068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/4068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/4068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/4068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/4068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/4068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/4068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/4068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/4068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/4068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/4068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/4068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/4068/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=4068&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/03/28/sqlauthority-news-sql-server-2008-updated-brochure-available-for-download/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; Database Poll and Gandhinagar SQL Server User Group Launch Today</title>
		<link>http://blog.sqlauthority.com/2009/03/27/sqlauthority-news-database-poll-and-gandhinagar-sql-server-user-group-launch-today/</link>
		<comments>http://blog.sqlauthority.com/2009/03/27/sqlauthority-news-database-poll-and-gandhinagar-sql-server-user-group-launch-today/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 01:30:47 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></category>
		<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 News]]></category>
		<category><![CDATA[T SQL]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Poll]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=4097</guid>
		<description><![CDATA[I have published a poll on website few days ago for favorite database of SQLAuthority.com readers. The best comment will win USB drive. The poll will close on April 1, 2009. Looking at the poll result, it seems that Oracle has gained a lot over SQL Server from last time when I checked. Please share [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=4097&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">I have published a <a href="http://blog.sqlauthority.com/2009/02/25/the-poll-what-is-your-favorite-database/" target="_blank">poll </a>on website few days ago for <strong><a href="http://blog.sqlauthority.com/2009/02/25/the-poll-what-is-your-favorite-database/" target="_blank">favorite database</a></strong> of SQLAuthority.com readers. The best comment will win USB drive. The poll will close on April 1, 2009. Looking at the poll result, it seems that Oracle has gained a lot over SQL Server from <a href="http://blog.sqlauthority.com/2009/03/12/sql-server-what-is-your-favorite-database-poll-continuous/" target="_blank">last time</a> when I checked. Please share this poll with your friends, your UG and community to get better sample. If you are not interested in poll there are many interesting comments, please read them.</p>
<p style="text-align:justify;">
<div class="wp-caption alignnone" style="width: 295px"><a href="http://blog.sqlauthority.com/2009/02/25/the-poll-what-is-your-favorite-database/" target="_blank"><img title="Click on Image to go to Poll" src="http://www.pinaldave.com/bimg/dbpoll.jpg" alt="Click on Image to go to Poll" width="285" height="328" /></a><p class="wp-caption-text">Click on Image to go to Poll</p></div>
<p>Additionally, <strong>Gandhinagar SQL Server User Group</strong> has launch event today. I suggest all of you from surrounding area to show up at this User Group meeting. We have price for best participation in UG as well. Please read more my post for agenda, time and location <strong><a href="http://blog.sqlauthority.com/2009/03/25/sqlauthority-news-announcement-gandhinagar-sql-server-user-group-march-27-2009/" target="_blank">SQLAuthority News &#8211; Announcement &#8211; Gandhinagar SQL Server User Group &#8211; March 27, 2009</a></strong>.</p>
<p style="text-align:justify;">You can follow me on <strong><a href="http://twitter.com/pinaldave" target="_blank">twitter </a></strong>for latest updates. My tweets will be a mix of fresh product news, database optimization tips, interesting links, upcoming events, and possibly even some giveaways.</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>
<br />Posted in Database, DBA, MVP, Pinal Dave, SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, SQL User Group, SQLAuthority News, T SQL, Technology Tagged: Poll <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/4097/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/4097/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/4097/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/4097/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/4097/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/4097/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/4097/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/4097/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/4097/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/4097/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/4097/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/4097/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/4097/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/4097/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=4097&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/03/27/sqlauthority-news-database-poll-and-gandhinagar-sql-server-user-group-launch-today/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/dbpoll.jpg" medium="image">
			<media:title type="html">Click on Image to go to Poll</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLAuthority News &#8211; 900th Article &#8211; 9 Best Practices &#8211; Important Milestones</title>
		<link>http://blog.sqlauthority.com/2009/03/19/sqlauthority-news-900th-article-9-best-practices-important-milestones/</link>
		<comments>http://blog.sqlauthority.com/2009/03/19/sqlauthority-news-900th-article-9-best-practices-important-milestones/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 01:30:45 +0000</pubDate>
		<dc:creator>pinaldave</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[DBA]]></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[T SQL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=3796</guid>
		<description><![CDATA[Today is my 900th article on this blog. You can see list of all the 900 articles here. I suggest you go over the list and read any article you like. First let us go over 9 Best Practices List. Auto Shrink runs at regular interval (30 mins) in background of SQL Server and it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=3796&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Today is my 900th article on this blog. You can see list of all the <strong><a href="http://blog.sqlauthority.com/best_top_sql_server_blog_all_post/" target="_blank">900 articles</a></strong> here. I suggest you go over<strong> <a href="http://blog.sqlauthority.com/best_top_sql_server_blog_all_post/" target="_blank">the list</a></strong> and read any article you like.</p>
<p style="text-align:justify;">First let us go over <strong>9 Best Practices</strong> List.</p>
<ol style="text-align:justify;">
<li>Auto Shrink runs at regular interval (30 mins) in background of SQL Server and it is cause performance dropping fragmentation. It should be turn off.</li>
<li>All the statistics should be updated at regular interval.</li>
<li>Compressed backup should be used instead of regular backup as it improves speed and performance. Restoring compressed backup is faster than regular restore.</li>
<li>Always take full database backups along with differential and log backups. Log backups can be very much useful for point-in-time recovery.</li>
<li>Pay attention to &#8220;Activity Monitor&#8221; &#8211; a new feature which displays current activity of a) Process Time, b) Waiting Tasks, c) Database I/O, d) Batch Requests/Sec.</li>
<li>Control the configurations as well enforces policies using Policy Based Management.</li>
<li>Utilize new datatypes DATE and TIME instead of conventional DATETIME.</li>
<li>Keep database updated with latest SPs and Cumulative Updates.</li>
<li>Use Dynamic Management Views to figure out longest running queries as well most popular queries.</li>
</ol>
<p style="text-align:justify;">I really had great time at<strong> <a href="http://blog.sqlauthority.com/2009/03/09/sqlauthority-news-author-visit-complete-wrapup-of-microsoft-mvp-summit-2009-trip/" target="_blank">Microsoft MVP Summit 2009</a></strong> at Seattle, you can read about my trip to Seattle <a href="http://blog.sqlauthority.com/2009/03/09/sqlauthority-news-author-visit-complete-wrapup-of-microsoft-mvp-summit-2009-trip/" target="_blank">here</a>. I have recently updated my <a href="http://www.pinaldave.com/sql-resume/" target="_blank"><strong>resume</strong> </a>with my latest activities.</p>
<p style="text-align:justify;">Social Media is new thing and I am really enjoying to be part of it. Twitter, LinkedIn, Facebook, Feedreader are my latest interests. Here is my web presence in social media.</p>
<p style="text-align:left;"><strong>Twitter:</strong> <a href="http://twitter.com/pinaldave" target="_blank">http://twitter.com/pinaldave</a><br />
<strong>Facebook:</strong> <a href="http://www.facebook.com/home.php#/profile.php?id=654862451" target="_blank">http://www.facebook.com/home.php#/profile.php?id=654862451</a><br />
<strong>LinkedIn:</strong> <a href="http://www.linkedin.com/in/pinaldave" target="_blank">http://www.linkedin.com/in/pinaldave</a><br />
<strong>SQLAuthority Feed:</strong> <a href="http://feeds2.feedburner.com/SQLAuthority" target="_blank">http://feeds2.feedburner.com/SQLAuthority</a><br />
<strong>SQLAuthority Email:</strong> <a href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=872428" target="_blank">http://www.feedburner.com/fb/a/emailverifySubmit?feedId=872428</a></p>
<p style="text-align:left;"><strong>Search@SQLAuthority:</strong> <a href="http://search.sqlauthority.com/" target="_blank">http://search.sqlauthority.com/</a><br />
<strong>Job@SQLAuthority:</strong> <a href="http://jobs.sqlauthority.com" target="_blank">http://jobs.sqlauthority.com</a><br />
<strong>Resume:</strong></p>
<p style="text-align:justify;">You can <a href="http://www.pinaldave.com/sql-resume/" target="_blank">hire me</a> through my company, read the details of here.</p>
<p style="text-align:justify;">Best thing about my job is I can work from office as well as from home office. Find me in action at home office.</p>
<div class="wp-caption alignnone" style="width: 510px"><img title="Pinal at Home Office" src="http://www.pinaldave.com/bimg/PinalAtWork.JPG" alt="Pinal at Home Office" width="500" height="375" /><p class="wp-caption-text">Pinal at Home Office</p></div>
<p style="text-align:justify;">Reference : <strong>Pinal Dave (<a href="http://blog.SQLAuthority.com" target="_blank">http://blog.SQLAuthority.com</a>)</strong></p>
<br />Posted in About Me, Best Practices, Database, DBA, Pinal Dave, SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, SQLAuthority News, T SQL, Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlauthority.wordpress.com/3796/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlauthority.wordpress.com/3796/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlauthority.wordpress.com/3796/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlauthority.wordpress.com/3796/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlauthority.wordpress.com/3796/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlauthority.wordpress.com/3796/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlauthority.wordpress.com/3796/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlauthority.wordpress.com/3796/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlauthority.wordpress.com/3796/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlauthority.wordpress.com/3796/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlauthority.wordpress.com/3796/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlauthority.wordpress.com/3796/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlauthority.wordpress.com/3796/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlauthority.wordpress.com/3796/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&amp;blog=668536&amp;post=3796&amp;subd=sqlauthority&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sqlauthority.com/2009/03/19/sqlauthority-news-900th-article-9-best-practices-important-milestones/feed/</wfw:commentRss>
		<slash:comments>3</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/PinalAtWork.JPG" medium="image">
			<media:title type="html">Pinal at Home Office</media:title>
		</media:content>
	</item>
	</channel>
</rss>
