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

<channel>
	<title> &#187; SQL Server</title>
	<atom:link href="http://benchmarkitconsulting.com/category/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://benchmarkitconsulting.com</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 16:34:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SEQUENCE&#8230; explain why and win a prize</title>
		<link>http://benchmarkitconsulting.com/colin-stasiuk/2012/02/06/sequence-explain-why-and-win-a-prize/</link>
		<comments>http://benchmarkitconsulting.com/colin-stasiuk/2012/02/06/sequence-explain-why-and-win-a-prize/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 16:34:05 +0000</pubDate>
		<dc:creator>Colin Stasiuk</dc:creator>
				<category><![CDATA[Benchmark IT Consulting]]></category>
		<category><![CDATA[Colin Stasiuk]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[IDENTITY]]></category>
		<category><![CDATA[SEQUENCE]]></category>
		<category><![CDATA[SQL 2012]]></category>
		<category><![CDATA[sqlpass]]></category>

		<guid isPermaLink="false">http://benchmarkitconsulting.com/?p=2048</guid>
		<description><![CDATA[In SQL Server 2012 there is a new feature that should be very familiar to Oracle folks called SEQUENCE. (my wife LOVES this game) &#8220;Creates a sequence object and specifies its properties. A sequence is a user-defined schema bound object that generates a sequence of numeric values according to the specification with which the sequence [...]]]></description>
			<content:encoded><![CDATA[<p>In SQL Server 2012 there is a new feature that should be very familiar to Oracle folks called SEQUENCE.</p>
<p><img class="alignnone size-full wp-image-2049" title="Sequence_Board_Game_thumb" src="http://benchmarkitconsulting.com/wp-content/uploads/2012/02/Sequence_Board_Game_thumb.jpg" alt="" width="242" height="182" /></p>
<p>(my wife LOVES this game)</p>
<p><em>&#8220;Creates a sequence object and specifies its properties. A sequence is a user-defined schema bound object that generates a sequence of numeric values according to the specification with which the sequence was created. The sequence of numeric values is generated in an ascending or descending order at a defined interval and can be configured to restart (cycle) when exhausted. Sequences, unlike identity columns, are not associated with specific tables. Applications refer to a sequence object to retrieve its next value. The relationship between sequences and tables is controlled by the application. User applications can reference a sequence object and coordinate the values across multiple rows and tables.&#8221;</em></p>
<p><a href="http://msdn.microsoft.com/en-us/library/ff878091(v=sql.110).aspx" target="_blank">MSDN Link for CREATE SEQUENCE</a></p>
<p>So what did I get from this:</p>
<ul>
<li>It&#8217;s like Identity but not</li>
<li>Can reuse values once a limit has been reached</li>
<li>Sequence can be &#8220;shared&#8221; between many tables as it is it&#8217;s own object</li>
<li>Has to be assigned to a schema</li>
</ul>
<p>There are plenty of great examples on how to create and reference a SEQUENCE on the MSDN link above but where I&#8217;m struggling is why I would want to use this new functionality?</p>
<p>Some problems/questions I have right off the bat:</p>
<ul>
<li>Inserting conflict &#8211; what if 2 transactions ask for the next sequence (NEXT VALUE FOR) and both try and commit the same &#8220;OrderID&#8221;?</li>
<li>IDENTITY columns can&#8217;t be updated &#8220;accidentally&#8221; &#8230; other then the use of a trigger I don&#8217;t see how you could prevent an update to a column referencing a sequence</li>
<li>Reusing sequences just sounds dangerous</li>
</ul>
<p>I did a quick test of the &#8220;Inserting Conflict&#8221; issue and created a SEQUENCE:</p>

<div class="wp_syntax"><div class="code"><pre class="tsql" style="font-family:monospace;"><span style="color: #0000FF;">CREATE</span> <span style="color: #0000FF;">SEQUENCE</span> dbo.<span style="color: #202020;">TestSequence1</span> <span style="color: #0000FF;">AS</span> <span style="color: #0000FF;">INT</span>
<span style="color: #0000FF;">START</span> <span style="color: #0000FF;">WITH</span> <span style="color: #000;">1</span>
<span style="color: #808080;">IN</span>CREMENT <span style="color: #0000FF;">BY</span> <span style="color: #000;">1</span></pre></div></div>

<p>Then I opened 2 mgmt studio query windows and ran the following:</p>

<div class="wp_syntax"><div class="code"><pre class="tsql" style="font-family:monospace;"><span style="color: #0000FF;">DECLARE</span> @NextSequence <span style="color: #0000FF;">AS</span> <span style="color: #0000FF;">INT</span>
&nbsp;
<span style="color: #0000FF;">BEGIN</span> <span style="color: #0000FF;">TRAN</span>
<span style="color: #0000FF;">SELECT</span> @NextSequence <span style="color: #808080;">=</span> <span style="color: #0000FF;">NEXT</span> <span style="color: #0000FF;">VALUE</span> <span style="color: #0000FF;">FOR</span> dbo.<span style="color: #202020;">TestSequence1</span>
&nbsp;
<span style="color: #0000FF;">SELECT</span> @NextSequence</pre></div></div>

<p>and I&#8217;m happy to report that getting the &#8220;NEXT VALUE&#8221; increments the sequence so as long as you do this within a transaction you should be good to go without worrying about an INSERT conflict.</p>
<p>So where does that leave me?</p>
<p><img class="alignnone size-full wp-image-2051" title="why" src="http://benchmarkitconsulting.com/wp-content/uploads/2012/02/why.jpg" alt="" width="180" height="180" /></p>
<p>It leaves me still asking WHY&#8230; so where is where the &#8220;win a prize&#8221; comes in&#8230;</p>
<p><span style="text-decoration: underline;"><strong>HOW TO WIN A PRIZE</strong></span></p>
<p>In the comments section if you can give me a reason or a use-case as to why/how you would use this over IDENTITY you could win a prize <img src='http://benchmarkitconsulting.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Now the winner is going to be the reason/use-case/comment that best explains to ME how/why you would use SEQUENCE and why it would be a better solution than an IDENTITY.</p>
<p><em>Contest end date of: Feb 10th</em></p>
<p>If you&#8217;d like to chat with me about this or anything else (SQL or other) please leave a comment or hit me up on my Twitter: <a href="http://twitter.com/ColinStasiuk" target="_blank">@ColinStasiuk</a></p>
<p><a href="http://benchmarkitconsulting.com/" target="_blank"><img title="benchmark_sm" src="http://benchmarkitconsulting.com/wp-content/uploads/2009/02/benchmark_sm.jpg" alt="" width="157" height="74" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=SEQUENCE%26%238230%3B+explain+why+and+win+a+prize+http://tinyurl.com/878aozy" title="Post to Twitter"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-twitter-big4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://benchmarkitconsulting.com/colin-stasiuk/2012/02/06/sequence-explain-why-and-win-a-prize/&amp;title=SEQUENCE%26%238230%3B+explain+why+and+win+a+prize" title="Post to Delicious"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2012/02/06/sequence-explain-why-and-win-a-prize/&amp;title=SEQUENCE%26%238230%3B+explain+why+and+win+a+prize" title="Post to Digg"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2012/02/06/sequence-explain-why-and-win-a-prize/&amp;title=SEQUENCE%26%238230%3B+explain+why+and+win+a+prize" title="Post to StumbleUpon"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-su-big4.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://benchmarkitconsulting.com/colin-stasiuk/2012/02/06/sequence-explain-why-and-win-a-prize/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Not Everyone Knows What YOU Know</title>
		<link>http://benchmarkitconsulting.com/colin-stasiuk/2012/01/17/not-everyone-knows-what-you-know/</link>
		<comments>http://benchmarkitconsulting.com/colin-stasiuk/2012/01/17/not-everyone-knows-what-you-know/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 15:11:36 +0000</pubDate>
		<dc:creator>Colin Stasiuk</dc:creator>
				<category><![CDATA[Benchmark IT Consulting]]></category>
		<category><![CDATA[Colin Stasiuk]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL 2012]]></category>
		<category><![CDATA[sqlpass]]></category>

		<guid isPermaLink="false">http://benchmarkitconsulting.com/?p=2044</guid>
		<description><![CDATA[Something that I still struggle with as a blogger is finding topics that &#8220;I&#8221; think people would want to read about or don&#8217;t know about. I start thinking about what I don&#8217;t know (a new feature or function, etc) and work through it and then write a blog post about it.  After 4 years of [...]]]></description>
			<content:encoded><![CDATA[<p>Something that I still struggle with as a blogger is finding topics that &#8220;I&#8221; think people would want to read about or don&#8217;t know about.</p>
<p>I start thinking about what I don&#8217;t know (a new feature or function, etc) and work through it and then write a blog post about it.  After 4 years of blogging I still haven&#8217;t figured out that there are some people out there that don&#8217;t know what I know.</p>
<p>I&#8217;ve worked 15 years in the SQL Server world and I still assume that everyone not only knows what I know but probably knows more LOL</p>
<p><img class="alignnone size-full wp-image-2045" title="psychiatric" src="http://benchmarkitconsulting.com/wp-content/uploads/2012/01/psychiatric.gif" alt="" width="275" height="352" /></p>
<p>I&#8217;m not sure at what point (if ever) that feeling goes away but a late goal to add to my 2012 list of things to do is to blog more&#8230; and while it might not be ground breaking or new stuff for me personally; I&#8217;m hoping that it will help some of my readers who might not know some of what I know or who maybe hasn&#8217;t had a chance to work with the particular feature I&#8217;m talking/blogging about.</p>
<p>Anyways&#8230; that&#8217;s it I guess <img src='http://benchmarkitconsulting.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  just a revelation that I came up with last night sometime.</p>
<p>If you&#8217;d like to chat with me about this or anything else (SQL or other) please leave a comment or hit me up on my Twitter: <a href="http://twitter.com/ColinStasiuk" target="_blank">@ColinStasiuk</a></p>
<p><a href="http://benchmarkitconsulting.com/" target="_blank"><img title="benchmark_sm" src="http://benchmarkitconsulting.com/wp-content/uploads/2009/02/benchmark_sm.jpg" alt="" width="157" height="74" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Not+Everyone+Knows+What+YOU+Know+http://tinyurl.com/7hhwhga" title="Post to Twitter"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-twitter-big4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://benchmarkitconsulting.com/colin-stasiuk/2012/01/17/not-everyone-knows-what-you-know/&amp;title=Not+Everyone+Knows+What+YOU+Know" title="Post to Delicious"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2012/01/17/not-everyone-knows-what-you-know/&amp;title=Not+Everyone+Knows+What+YOU+Know" title="Post to Digg"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2012/01/17/not-everyone-knows-what-you-know/&amp;title=Not+Everyone+Knows+What+YOU+Know" title="Post to StumbleUpon"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-su-big4.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://benchmarkitconsulting.com/colin-stasiuk/2012/01/17/not-everyone-knows-what-you-know/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>EDMPASS &#8211; First Meeting of 2012 TOMORROW!</title>
		<link>http://benchmarkitconsulting.com/colin-stasiuk/2012/01/11/edmpass-first-meeting-of-2012-tomorrow/</link>
		<comments>http://benchmarkitconsulting.com/colin-stasiuk/2012/01/11/edmpass-first-meeting-of-2012-tomorrow/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 15:30:32 +0000</pubDate>
		<dc:creator>Colin Stasiuk</dc:creator>
				<category><![CDATA[Benchmark IT Consulting]]></category>
		<category><![CDATA[Colin Stasiuk]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[EDMPASS]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[sqlpass]]></category>

		<guid isPermaLink="false">http://benchmarkitconsulting.com/?p=2039</guid>
		<description><![CDATA[On January 12th 2012 the Edmonton Chapter of PASS is having it’s next meeting. Details below: http://www.eventbrite.com/event/2653305107 Please be sure to not only click the “Add to my calendar” but also the “Register” button so that we can plan accordingly for food and drinks. Date: January 12th 2012 Time: 5:45 pm &#8211; 7:00 pm Location: [...]]]></description>
			<content:encoded><![CDATA[<p>On January 12th 2012 the Edmonton Chapter of PASS is having it’s next meeting. Details below:</p>
<p><strong><a href="http://www.eventbrite.com/event/2653305107" target="_blank">http://www.eventbrite.com/event/2653305107</a></strong></p>
<p><strong>Please be sure to not only click the “Add to my calendar” but also   the “Register” button so that we can plan accordingly for food and   drinks.</strong></p>
<p><strong>Date:</strong> January 12th 2012<br />
<strong>Time:</strong> 5:45 pm &#8211; 7:00 pm<br />
<strong>Location:</strong> 6th Floor Room 7 (Stanley A Milner Library)<br />
<strong>Speaker:</strong> Ryan Adams<br />
<strong>Topic:</strong> Mirroring: The Bare Necessities</p>
<p><strong>Session Abstract:</strong></p>
<p>Remember Baloo the bear from the Jungle Book? Well we are going to get down to the “bear” necessities of mirroring and more. Mirroring can be an integral part of your high availability and disaster recovery planning. We’ll cover what mirroring is, how it can fit into an HA/DR plan, the rules surrounding its use, configuration via the GUI and T-SQL, as well as how to monitor mirroring. This presentation is designed to not only give you an overview of mirroring, but to also walk you through a basic implementation. At the end you will have learned what mirroring is, how it can fit into your environment, what business requirements it solves, and how to configure it.</p>
<p><strong>Presenter Information:</strong> Ryan Adams ( <a href="http://www.ryanjadams.com/" target="_blank">blog </a>| <a href="http://twitter.com/#%21/ryanjadams" target="_blank">twitter </a>)</p>
<p>Ryan is a highly skilled Microsoft oriented administrator and has worked for a Fortune 100 company for 14 years (2 of those as a contractor). In his time there he has supported everything from desktop to server. Most recently he has served as a senior Active Directory Architect and Identity Management (MIIS, ILM, FIM) Consultant. He is the sole SQL Server DBA for his group, supporting both vendor databases and custom databases. His primary focus is database design and performance, but also works with SSRS report development, and SSIS ETL. He enjoys being involved in the SQL community and serves on the Board of Directors for the North Texas SQL Server User Group as well as the PASS Performance Virtual Chapter. He also serves as a Regional Mentor for the Professional Association for SQL Server. He is well versed in many core Microsoft technologies, has implemented and supported them both nationally and internationally for a company of 250k+ users, and holds the following certifications: MCP  MCSA  MCSE MCDBA MCTS  MCITP</p>
<p><strong>Agenda:<br />
</strong>5:00 pm &#8211; Pizza and Socializing<br />
5:30 pm &#8211; Sponsor Presentation<br />
5:45 pm &#8211; Feature Presentation<br />
7:00 pm &#8211; Wrap Up and Draws</p>
<p>If you haven’t signed up already at <a href="../?page_id=7" target="_blank">EDMPASS.com</a> please do so now to receive meeting notifications, news, and updates from EDMPASS.</p>
<p>For those who are unable to attend in person here is the Live Meeting Attendee Link:</p>
<p><a href="https://www.livemeeting.com/cc/usergroups/join?id=78DJ42&amp;role=attend&amp;pw=X%5E2Bxh2wg" target="_blank">https://www.livemeeting.com/cc/usergroups/join?id=78DJ42&amp;role=attend&amp;pw=X%5E2Bxh2wg</a></p>
<p>Hope to see you there.</p>
<p><a href="http://EDMPASS.com" target="_blank">EDMPASS HOMEPAGE</a></p>
<p>If you&#8217;d like to chat with me about this or anything else (SQL or other) please leave a comment or hit me up on my Twitter: <a href="http://twitter.com/ColinStasiuk" target="_blank">@ColinStasiuk</a></p>
<p><a href="http://benchmarkitconsulting.com/" target="_blank"><img title="benchmark_sm" src="http://benchmarkitconsulting.com/wp-content/uploads/2009/02/benchmark_sm.jpg" alt="" width="157" height="74" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=EDMPASS+%26%238211%3B+First+Meeting+of+2012+TOMORROW%21+http://tinyurl.com/7wk9udl" title="Post to Twitter"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-twitter-big4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://benchmarkitconsulting.com/colin-stasiuk/2012/01/11/edmpass-first-meeting-of-2012-tomorrow/&amp;title=EDMPASS+%26%238211%3B+First+Meeting+of+2012+TOMORROW%21" title="Post to Delicious"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2012/01/11/edmpass-first-meeting-of-2012-tomorrow/&amp;title=EDMPASS+%26%238211%3B+First+Meeting+of+2012+TOMORROW%21" title="Post to Digg"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2012/01/11/edmpass-first-meeting-of-2012-tomorrow/&amp;title=EDMPASS+%26%238211%3B+First+Meeting+of+2012+TOMORROW%21" title="Post to StumbleUpon"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-su-big4.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://benchmarkitconsulting.com/colin-stasiuk/2012/01/11/edmpass-first-meeting-of-2012-tomorrow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merry Christmas and Happy Holidays!</title>
		<link>http://benchmarkitconsulting.com/colin-stasiuk/2011/12/22/merry-christmas-and-happy-holidays/</link>
		<comments>http://benchmarkitconsulting.com/colin-stasiuk/2011/12/22/merry-christmas-and-happy-holidays/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 14:07:53 +0000</pubDate>
		<dc:creator>Colin Stasiuk</dc:creator>
				<category><![CDATA[Benchmark IT Consulting]]></category>
		<category><![CDATA[Colin Stasiuk]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[cheers]]></category>
		<category><![CDATA[Happy Holidays]]></category>
		<category><![CDATA[Merry Christmas]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[sqlpass]]></category>

		<guid isPermaLink="false">http://benchmarkitconsulting.com/?p=2036</guid>
		<description><![CDATA[Here is to hoping that the best of your todays are the worst of your tomorrows! Cheers and I look forward to catching up with all of you in the new year. If you&#8217;d like to chat with me about this or anything else (SQL or other) please leave a comment or hit me up [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Here is to hoping that the best of your todays are the worst of your tomorrows!</strong></p>
<p><img class="alignnone size-full wp-image-2037" title="beer" src="http://benchmarkitconsulting.com/wp-content/uploads/2011/12/beer.png" alt="" width="450" height="338" /></p>
<p>Cheers and I look forward to catching up with all of you in the new year.</p>
<p>If you&#8217;d like to chat with me about this or anything else (SQL or other) please leave a comment or hit me up on my Twitter: <a href="http://twitter.com/ColinStasiuk" target="_blank">@ColinStasiuk</a></p>
<p><a href="http://benchmarkitconsulting.com/" target="_blank"><img title="benchmark_sm" src="http://benchmarkitconsulting.com/wp-content/uploads/2009/02/benchmark_sm.jpg" alt="" width="157" height="74" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Merry+Christmas+and+Happy+Holidays%21+http://tinyurl.com/7kolvje" title="Post to Twitter"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-twitter-big4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/12/22/merry-christmas-and-happy-holidays/&amp;title=Merry+Christmas+and+Happy+Holidays%21" title="Post to Delicious"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/12/22/merry-christmas-and-happy-holidays/&amp;title=Merry+Christmas+and+Happy+Holidays%21" title="Post to Digg"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/12/22/merry-christmas-and-happy-holidays/&amp;title=Merry+Christmas+and+Happy+Holidays%21" title="Post to StumbleUpon"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-su-big4.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://benchmarkitconsulting.com/colin-stasiuk/2011/12/22/merry-christmas-and-happy-holidays/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Keys to Virtual Presentations</title>
		<link>http://benchmarkitconsulting.com/colin-stasiuk/2011/12/12/keys-to-virtual-presentations/</link>
		<comments>http://benchmarkitconsulting.com/colin-stasiuk/2011/12/12/keys-to-virtual-presentations/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 15:30:57 +0000</pubDate>
		<dc:creator>Colin Stasiuk</dc:creator>
				<category><![CDATA[Benchmark IT Consulting]]></category>
		<category><![CDATA[Colin Stasiuk]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Florida]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Virtual Presenting]]></category>

		<guid isPermaLink="false">http://benchmarkitconsulting.com/?p=2022</guid>
		<description><![CDATA[This Wednesday I&#8217;ll be presenting for the South West Florida SQL Server User Group virtually ( &#8211; sad face cause I&#8217;d love to be live and in person in Florida right about now). http://swflorida.sqlpass.org/ &#8211; SWFSSUG Doing virtual presentations add a bit of a &#8220;weird&#8221; dynamic as you can&#8217;t see the faces in the room [...]]]></description>
			<content:encoded><![CDATA[<p>This Wednesday I&#8217;ll be presenting for the South West Florida SQL Server User Group virtually ( <img src='http://benchmarkitconsulting.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  &#8211; sad face cause I&#8217;d love to be live and in person in Florida right about now).</p>
<p><a href="http://swflorida.sqlpass.org/" target="_blank">http://swflorida.sqlpass.org/</a> &#8211; SWFSSUG</p>
<p><img class="alignnone size-full wp-image-2024" title="max" src="http://benchmarkitconsulting.com/wp-content/uploads/2011/12/max.jpg" alt="" width="283" height="303" /></p>
<p>Doing virtual presentations add a bit of a &#8220;weird&#8221; dynamic as you can&#8217;t see the faces in the room and get a read/feel for things like:</p>
<ul>
<li>Is anyone lost?</li>
<li>Am I going too slow/fast?</li>
<li>Is anyone asleep? <img src='http://benchmarkitconsulting.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul>
<p>Here are some of the things that I try and do to help make virtual presentations run smoothly:</p>
<ul>
<li>Use good equipment (high speed internet, good lighting, professional microphone, HD camera)</li>
<li>Clear all distractions (no Twitter, phone, dogs, family, etc)</li>
<li>Periodically ask if there are any questions/concerns/too fast/too slow</li>
<li>Print the slide deck w/notes on hand</li>
<li>If you&#8217;re making video of yourself available try to appear as you would of you were presenting live (no housecoats and boxer shorts)</li>
</ul>
<p>I guess this list really can be used for both physical and virtual presentations but I think the focus on making sure these things do not become a distraction are that much more important when you don&#8217;t have a &#8220;warm body&#8221; in the room with the session attendees.</p>
<p>If you have any additions to the list please leave a comment and I&#8217;ll be sure to update the post!</p>
<p>If you&#8217;d like to chat with me about this or anything else (SQL or other) please leave a comment or hit me up on my Twitter: <a href="http://twitter.com/ColinStasiuk" target="_blank">@ColinStasiuk</a></p>
<p><a href="http://benchmarkitconsulting.com/" target="_blank"><img title="benchmark_sm" src="http://benchmarkitconsulting.com/wp-content/uploads/2009/02/benchmark_sm.jpg" alt="" width="157" height="74" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Keys+to+Virtual+Presentations+http://tinyurl.com/6ljeprx" title="Post to Twitter"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-twitter-big4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/12/12/keys-to-virtual-presentations/&amp;title=Keys+to+Virtual+Presentations" title="Post to Delicious"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/12/12/keys-to-virtual-presentations/&amp;title=Keys+to+Virtual+Presentations" title="Post to Digg"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/12/12/keys-to-virtual-presentations/&amp;title=Keys+to+Virtual+Presentations" title="Post to StumbleUpon"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-su-big4.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://benchmarkitconsulting.com/colin-stasiuk/2011/12/12/keys-to-virtual-presentations/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>#SQLFamily Thoughts</title>
		<link>http://benchmarkitconsulting.com/colin-stasiuk/2011/12/01/sqlfamily-thoughts/</link>
		<comments>http://benchmarkitconsulting.com/colin-stasiuk/2011/12/01/sqlfamily-thoughts/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 14:57:22 +0000</pubDate>
		<dc:creator>Colin Stasiuk</dc:creator>
				<category><![CDATA[Benchmark IT Consulting]]></category>
		<category><![CDATA[Colin Stasiuk]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[#SQLFamily]]></category>
		<category><![CDATA[Benchmark IT Consulting.com]]></category>
		<category><![CDATA[MemeMonday]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://benchmarkitconsulting.com/?p=2010</guid>
		<description><![CDATA[@SQLRockstar (Tom LaRock) recently asked the SQL bloggers in his &#8220;Meme Monday&#8221; series to write about what the term &#8220;SQL Family&#8221; means to them. It&#8217;s amazing how many thoughts/ideas come into your head when you hear the term #SQLFamily. I was able to breakdown what #SQLFamily means to me into 3 categories: Technology Professional Development [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/#!/SQLRockstar" target="_blank">@SQLRockstar</a> (<a href="http://thomaslarock.com/" target="_blank">Tom LaRock</a>) recently asked the SQL bloggers in his &#8220;<a href="http://thomaslarock.com/2011/11/meme-monday-for-november/" target="_blank">Meme Monday</a>&#8221; series to write about what the term &#8220;SQL Family&#8221; means to them. It&#8217;s amazing how many thoughts/ideas come into your head when you hear the term #SQLFamily.</p>
<p>I was able to breakdown what #SQLFamily means to me into 3 categories:</p>
<ul>
<li>Technology</li>
<li>Professional Development</li>
<li>Personal Relationships</li>
</ul>
<p><strong>Technology</strong></p>
<p>I cannot think of another technical community out there that offers so many great opportunities to learn about a product like SQL Server.  I&#8217;m not just talking about the &#8220;paid&#8221; events like the <a href="http://www.sqlpass.org/summit/2012/default.aspx" target="_blank">PASS Summit</a>, <a href="http://www.devconnections.com/shows/sp2012/default.aspx?s=185" target="_blank">SQLConnections</a>, or <a href="http://www.sqlpass.org/sqlrally/2012/dallas/" target="_blank">SQLRally</a>.</p>
<p>I&#8217;m also talking about all the free training out there the local PASS Chapter meetings, SQLSaturdays, 24 hours of PASS, websites, blogs, etc&#8230;. people are PASSionate about SQL Server and love sharing their knowledge which is AMAZING.</p>
<p>There are also social networking tools like Twitter (#SQLHelp, #SQLPASS, #SQLFamily), Facebook, LinkedIn, and my new found friend Yammer to use to find even more knowledge.</p>
<p>There are so many ways to get amazing information from some of the best in the business.</p>
<p><strong>Professional Development</strong></p>
<p>Being part of the #SQLFamily means that you are able to surround yourself with people who are like you and people that you aspire to be like.  I can honestly say that if I didn&#8217;t jump into the SQL Server Community with both feet I wouldn&#8217;t of met the people responsible for helping me:</p>
<ul>
<li>Start Blogging here at BenchmarkITConsulting.com</li>
<li>Start EDMPASS (The Edmonton PASS Chapter)</li>
<li>Co-Author my first book (Pro SQL Server 2008 Policy Based Management)</li>
<li>Become the Western Canada Regional Mentor for PASS</li>
</ul>
<p>All of which has helped me professionally to grow my knowledge,  name, and business as an Independent Consultant.</p>
<p><strong>Personal Relationships</strong></p>
<p>This is what I believe REALLY sets the #SQLFamily apart from other technology communities.</p>
<p><em>(This is the hardest section of this blog post to describe because to me it is such a phenomenon so bare with me) </em></p>
<p>The people care, they really do care.  It really is like a family&#8230; you might not see everyone as much as you&#8217;d like but when you do it&#8217;s like you haven&#8217;t skipped a beat.  The friendships and camaraderie that I&#8217;ve developed through the #SQLFamily are not just &#8220;work friends&#8221; but real honest to goodness friends.</p>
<p>If someone&#8217;s child is sick, they care.  If someone needs to find a new job, they help.  If someone needs an extra $25 in his <a href="http://ca.movember.com/mospace/1477212" target="_blank">Movember campaign</a> to take first place, they donate (thanks <a href="http://twitter.com/#!/StrateSQL" target="_blank">Jason Strate</a> BTW)</p>
<p><strong>I&#8217;m a better person professionally and personally because of my #SQLFamily.</strong></p>
<p>If you&#8217;d like to chat with me about this or anything else (SQL or other) please leave a comment or hit me up on my Twitter: <a href="http://twitter.com/ColinStasiuk" target="_blank">@ColinStasiuk</a></p>
<p><a href="http://benchmarkitconsulting.com/" target="_blank"><img title="benchmark_sm" src="http://benchmarkitconsulting.com/wp-content/uploads/2009/02/benchmark_sm.jpg" alt="" width="157" height="74" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=%23SQLFamily+Thoughts+http://tinyurl.com/c9tnnzu" title="Post to Twitter"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-twitter-big4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/12/01/sqlfamily-thoughts/&amp;title=%23SQLFamily+Thoughts" title="Post to Delicious"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/12/01/sqlfamily-thoughts/&amp;title=%23SQLFamily+Thoughts" title="Post to Digg"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/12/01/sqlfamily-thoughts/&amp;title=%23SQLFamily+Thoughts" title="Post to StumbleUpon"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-su-big4.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://benchmarkitconsulting.com/colin-stasiuk/2011/12/01/sqlfamily-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PASS Regional Mentor &#8211; Western Canada Announcement</title>
		<link>http://benchmarkitconsulting.com/colin-stasiuk/2011/11/28/pass-regional-mentor-western-canada-announcement/</link>
		<comments>http://benchmarkitconsulting.com/colin-stasiuk/2011/11/28/pass-regional-mentor-western-canada-announcement/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 14:19:02 +0000</pubDate>
		<dc:creator>Colin Stasiuk</dc:creator>
				<category><![CDATA[Benchmark IT Consulting]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[Colin Stasiuk]]></category>
		<category><![CDATA[Regional Mentor]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[sqlpass]]></category>

		<guid isPermaLink="false">http://benchmarkitconsulting.com/?p=2002</guid>
		<description><![CDATA[Now that I&#8217;m back from my fun in the sun (Punta Cana) trip I thought I would write a post about some very crazy/awesome news (for me anyways) I&#8217;m so excited to announce that I&#8217;m the new PASS Regional Mentor for Western Canada!!  PASS.ORG link I&#8217;m pretty pumped about this because being from Canada (at [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I&#8217;m back from my fun in the sun (Punta Cana) trip I thought I would write a post about some very crazy/awesome news (for me anyways) <img src='http://benchmarkitconsulting.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m so excited to announce that I&#8217;m the new PASS Regional Mentor for Western Canada!!  <a href="http://www.sqlpass.org/Community/PASSBlog/entryid/384/Welcome-Three-New-Regional-Mentors-US-NE-US-SW-and-Canada.aspx" target="_blank">PASS.ORG link</a></p>
<p><iframe width="420" height="315" src="http://www.youtube.com/embed/h-LbvFckptY" frameborder="0" allowfullscreen></iframe></p>
<p>I&#8217;m pretty pumped about this because being from Canada (at times) I know we feel like we&#8217;re kinda &#8220;out there&#8221; on some of the happenings and I want to make sure that the PASS Chapters in Western Canada feel connected and supported by me and PASS in general.  I think there are some challenges that we face (getting local speakers, SWAG, etc) that are unique to us due to our location and I want to help bring us up to speed and more inline with our friends from the south.</p>
<p>One of my goals this year as a regional mentor is to bring a SQL Saturday to Alberta, Canada.  I think between Edmonton and Calgary that we can get a great turnout and hopefully this would also help in getting a better network of local speakers that are willing to present in person at the Edmonton and Calgary PASS Chapters.</p>
<p>I have a bunch of ideas and I can&#8217;t wait to get started working with PASS on to do my best to help the SQL Community grow within Canada.</p>
<p>If you&#8217;d like to chat with me about this or anything else (SQL or other) please leave a comment or hit me up on my Twitter: <a href="http://twitter.com/ColinStasiuk" target="_blank">@ColinStasiuk</a></p>
<p><a href="http://benchmarkitconsulting.com/" target="_blank"><img title="benchmark_sm" src="http://benchmarkitconsulting.com/wp-content/uploads/2009/02/benchmark_sm.jpg" alt="" width="157" height="74" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=PASS+Regional+Mentor+%26%238211%3B+Western+Canada+Announcement+http://tinyurl.com/cn8jnut" title="Post to Twitter"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-twitter-big4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/11/28/pass-regional-mentor-western-canada-announcement/&amp;title=PASS+Regional+Mentor+%26%238211%3B+Western+Canada+Announcement" title="Post to Delicious"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/11/28/pass-regional-mentor-western-canada-announcement/&amp;title=PASS+Regional+Mentor+%26%238211%3B+Western+Canada+Announcement" title="Post to Digg"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/11/28/pass-regional-mentor-western-canada-announcement/&amp;title=PASS+Regional+Mentor+%26%238211%3B+Western+Canada+Announcement" title="Post to StumbleUpon"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-su-big4.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://benchmarkitconsulting.com/colin-stasiuk/2011/11/28/pass-regional-mentor-western-canada-announcement/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>See You in a Week</title>
		<link>http://benchmarkitconsulting.com/colin-stasiuk/2011/11/16/see-you-in-a-week/</link>
		<comments>http://benchmarkitconsulting.com/colin-stasiuk/2011/11/16/see-you-in-a-week/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 14:35:47 +0000</pubDate>
		<dc:creator>Colin Stasiuk</dc:creator>
				<category><![CDATA[Benchmark IT Consulting]]></category>
		<category><![CDATA[Colin Stasiuk]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[Punta Cana]]></category>
		<category><![CDATA[sqlpass]]></category>
		<category><![CDATA[Vacation]]></category>

		<guid isPermaLink="false">http://benchmarkitconsulting.com/?p=1996</guid>
		<description><![CDATA[INSERT INTO PuntaCana SELECT     FirstName, LastName FROM    dbo.Family WHERE    LastName = 'STASIUK' Don&#8217;t be alarmed if you don&#8217;t hear from me for a week or so I&#8217;ll be having a girlie drink or two too many on a beach and leaving this cold weather behind (temporarily) Stay tuned when I get back for some [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1997" title="Punta-Cana-Beautiful-Beach-43556" src="http://benchmarkitconsulting.com/wp-content/uploads/2011/11/Punta-Cana-Beautiful-Beach-43556.jpg" alt="" width="288" height="216" /></p>
<pre lang=TSQL>
INSERT INTO PuntaCana
SELECT     FirstName, LastName
FROM    dbo.Family
WHERE    LastName = 'STASIUK'
</pre>
<p>Don&#8217;t be alarmed if you don&#8217;t hear from me for a week or so <img src='http://benchmarkitconsulting.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;ll be having a girlie drink or <del datetime="2011-11-16T14:20:04+00:00">two</del> too many on a beach and leaving this cold weather behind (temporarily)</p>
<p>Stay tuned when I get back for some exciting news on a more &#8220;geeky&#8221; level but until then&#8230;&#8230;&#8230;.</p>
<p><iframe width="420" height="315" src="http://www.youtube.com/embed/Z3JWFklREK8" frameborder="0" allowfullscreen></iframe></p>
<p>If you&#8217;d like to chat with me about this or anything else (SQL or other) please leave a comment or hit me up on my Twitter: <a href="http://twitter.com/ColinStasiuk" target="_blank">@ColinStasiuk</a></p>
<p><a href="http://benchmarkitconsulting.com/" target="_blank"><img title="benchmark_sm" src="http://benchmarkitconsulting.com/wp-content/uploads/2009/02/benchmark_sm.jpg" alt="" width="157" height="74" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=See+You+in+a+Week+http://tinyurl.com/7qqy79k" title="Post to Twitter"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-twitter-big4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/11/16/see-you-in-a-week/&amp;title=See+You+in+a+Week" title="Post to Delicious"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/11/16/see-you-in-a-week/&amp;title=See+You+in+a+Week" title="Post to Digg"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/11/16/see-you-in-a-week/&amp;title=See+You+in+a+Week" title="Post to StumbleUpon"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-su-big4.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://benchmarkitconsulting.com/colin-stasiuk/2011/11/16/see-you-in-a-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Bacon Nugget of Excellence Award @MladenPrajdic</title>
		<link>http://benchmarkitconsulting.com/colin-stasiuk/2011/11/14/sql-bacon-nugget-of-excellence-award-mladenprajdic/</link>
		<comments>http://benchmarkitconsulting.com/colin-stasiuk/2011/11/14/sql-bacon-nugget-of-excellence-award-mladenprajdic/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 14:40:23 +0000</pubDate>
		<dc:creator>Colin Stasiuk</dc:creator>
				<category><![CDATA[Benchmark IT Consulting]]></category>
		<category><![CDATA[Colin Stasiuk]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Bacon]]></category>
		<category><![CDATA[Deadlock Notification]]></category>
		<category><![CDATA[Mladen Prajdic]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL 2008]]></category>

		<guid isPermaLink="false">http://benchmarkitconsulting.com/?p=1985</guid>
		<description><![CDATA[Prior Winners: Lara Rubbelke &#8211; (post link &#124; blog &#124; @SQLGal) &#8211; Enterprise Policy Management Framework Tim Ford &#8211; (post link &#124; blog &#124; @SQLAgentMan) &#8211; Determine Free Space, Consumed Space, and Total Space Allocated for SQL Server databases This &#8220;award&#8221; has (unintentionally) not been handed out in a while but something that I&#8217;ve used [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1986" title="BaNug" src="http://benchmarkitconsulting.com/wp-content/uploads/2011/11/BaNug.jpg" alt="" width="180" height="135" /></p>
<p>Prior Winners:</p>
<ul>
<li>Lara Rubbelke &#8211; (<a href="http://benchmarkitconsulting.com/colin-stasiuk/2009/08/26/sql-bacon-nugget-of-excellence-award-sqlgal/" target="_blank">post link</a> | <a href="http://sqlblog.com/blogs/lara_rubbelke/default.aspx" target="_blank">blog </a>| @<a href="http://twitter.com/#!/sqlgal" target="_blank">SQLGal</a>) &#8211; <a href="http://epmframework.codeplex.com/" target="_blank">Enterprise Policy Management Framework</a></li>
<li>Tim Ford &#8211; (<a href="http://benchmarkitconsulting.com/colin-stasiuk/2009/07/08/sql-bacon-nugget-of-excellence-award-sqlagentman/" target="_blank">post link</a> | <a href="http://thesqlagentman.com/" target="_blank">blog </a>| <a href="http://twitter.com/#!/SQLAgentMan/" target="_blank">@SQLAgentMan</a>) &#8211; <a href="http://www.mssqltips.com/sqlservertip/1629/determine-free-space-consumed-space-and-total-space-allocated-for-sql-server-databases/" target="_blank">Determine Free Space, Consumed Space, and Total Space Allocated for SQL Server databases</a></li>
</ul>
<p>This &#8220;award&#8221; has (unintentionally) not been handed out in a while but something that I&#8217;ve used (or a variation of) for a while now that I think needs to get bumped back up to the top of everyone&#8217;s RSS Feed is Mladen Prajdic&#8217;s I.D.N.W.C.E.C (a not so catchy acronym that I just came up with).</p>
<p><a href="http://weblogs.sqlteam.com/mladenp/archive/2008/07/18/Immediate-deadlock-notifications-without-changing-existing-code.aspx" target="_blank">Immediate Deadlock Notifications Without Changing Existing Code</a></p>
<p>Mladen describes how to use the server wide deadlock notification (<a href="http://msdn.microsoft.com/en-us/library/ms182602.aspx" target="_blank">Event Notifications</a>) to capture the deadlock graph (or deadlock chain, deadlock, escalation) to a table as soon as a deadlock occurs (as well as optionally to send an email at time of capture).</p>
<p><img class="alignnone size-full wp-image-1988" title="aaswsdw" src="http://benchmarkitconsulting.com/wp-content/uploads/2011/11/aaswsdw.png" alt="" width="121" height="107" /></p>
<p>Now what I like about this over the more &#8220;traditional&#8221; way of detecting deadlocks with Trace Flags 1204 and 1222 (<a href="http://msdn.microsoft.com/en-us/library/ms178104.aspx" target="_blank">MSDN Link</a>) is that we&#8217;re able to capture the deadlock graph event like we were running a Profiler trace against the server.  Using trace flags 1204 and 1222 you get all the same information but I&#8217;m a picture person&#8230;.</p>
<p><img class="alignnone size-full wp-image-1991" title="liger" src="http://benchmarkitconsulting.com/wp-content/uploads/2011/11/liger.jpg" alt="" width="300" height="300" /></p>
<p>and as a picture person I much prefer to see the deadlock graph over the &#8220;texty&#8221; / XMLish type of information you get back from Trace Flags 1204 and 1222.</p>
<p>Big thanks and props to Mladen for this blog post as I&#8217;ve come back to it time and time again <img src='http://benchmarkitconsulting.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you&#8217;d like to chat with me about this or anything else (SQL or other) please leave a comment or hit me up on my Twitter: <a href="http://twitter.com/ColinStasiuk" target="_blank">@ColinStasiuk</a></p>
<p><a href="http://benchmarkitconsulting.com/" target="_blank"><img title="benchmark_sm" src="http://benchmarkitconsulting.com/wp-content/uploads/2009/02/benchmark_sm.jpg" alt="" width="157" height="74" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=SQL+Bacon+Nugget+of+Excellence+Award+%40MladenPrajdic+http://tinyurl.com/d3xzp6v" title="Post to Twitter"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-twitter-big4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/11/14/sql-bacon-nugget-of-excellence-award-mladenprajdic/&amp;title=SQL+Bacon+Nugget+of+Excellence+Award+%40MladenPrajdic" title="Post to Delicious"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/11/14/sql-bacon-nugget-of-excellence-award-mladenprajdic/&amp;title=SQL+Bacon+Nugget+of+Excellence+Award+%40MladenPrajdic" title="Post to Digg"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/11/14/sql-bacon-nugget-of-excellence-award-mladenprajdic/&amp;title=SQL+Bacon+Nugget+of+Excellence+Award+%40MladenPrajdic" title="Post to StumbleUpon"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-su-big4.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://benchmarkitconsulting.com/colin-stasiuk/2011/11/14/sql-bacon-nugget-of-excellence-award-mladenprajdic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EDMPASS &#8211; December Meeting w/Jes Borland (Virtual)</title>
		<link>http://benchmarkitconsulting.com/colin-stasiuk/2011/11/09/edmpass-december-meeting-wjes-borland-virtual/</link>
		<comments>http://benchmarkitconsulting.com/colin-stasiuk/2011/11/09/edmpass-december-meeting-wjes-borland-virtual/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 15:12:56 +0000</pubDate>
		<dc:creator>Colin Stasiuk</dc:creator>
				<category><![CDATA[Benchmark IT Consulting]]></category>
		<category><![CDATA[Colin Stasiuk]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[EDMPASS]]></category>
		<category><![CDATA[Jes Borland]]></category>
		<category><![CDATA[Report]]></category>
		<category><![CDATA[Reporting Services]]></category>
		<category><![CDATA[sqlpass]]></category>

		<guid isPermaLink="false">http://benchmarkitconsulting.com/?p=1982</guid>
		<description><![CDATA[On December 8th 2011 the Edmonton Chapter of PASS is having it’s next meeting. Details below: http://www.eventbrite.com/event/2447251796 Please be sure to not only click the “Add to my calendar” but also the “Register” button so that we can plan accordingly for food and drinks. Date: December 8th 2011 Time: 5:45 pm &#8211; 7:00 pm Location: [...]]]></description>
			<content:encoded><![CDATA[<p>On December 8th 2011 the Edmonton Chapter of PASS is having it’s next meeting. Details below:</p>
<p><strong><a href="http://www.eventbrite.com/event/2447251796" target="_blank">http://www.eventbrite.com/event/2447251796</a></strong></p>
<p><strong>Please be sure to not only click the “Add to my calendar” but also  the “Register” button so that we can plan accordingly for food and  drinks.</strong></p>
<p><strong>Date:</strong> December 8th 2011<br />
<strong>Time:</strong> 5:45 pm &#8211; 7:00 pm<br />
<strong>Location:</strong> Virtual (sorry the room was booked <img src="http://edmpass.com/wp-includes/images/smilies/icon_sad.gif" alt=":(" /> Live Meeting Link to follow)<br />
<strong>Speaker:</strong> Jes Borland<br />
<strong>Topic:</strong> Reporting Services 201: From Basic to WOW!</p>
<p><strong>Session Abstract:</strong></p>
<p>You have mastered the art of linking a dataset to a table in SQL Server Reporting Services. You have solid, reliable reports that you and others depend on. Learn how to take them from basic to “wow”, using features such as tablix, lists, images, and charts. At the end of this session, you will be familiar with:</p>
<p>- Report properties such as headers, footers and backgrounds<br />
- Tablix properties such as ToolTip and NoRows<br />
- How to build and customize a matrix<br />
- How to effectively use lists, an often-overlooked feature<br />
- Adding charts to make reports visually appealing and easy to understand</p>
<p><strong>Presenter Information:</strong> Jes Borland ( <a href="http://jesborland.wordpress.com/" target="_blank">blog </a>| <a href="http://twitter.com/#%21/grrl_geek" target="_blank">twitter </a>)</p>
<p>Jes  Schultz Borland is a Database Administrator at Kimberly Clark. She holds an AAS  &#8211; Programmer/Analyst degree. She has worked with SQL Server since 2007, focusing  on Reporting Services and day-to-day administration. She is an active member of  PASS, the PASS WIT virtual chapter, and the MADPASS chapter. She is also an avid  tweeter, blogger and runner.</p>
<p>Agenda:</p>
<p>5:45 pm &#8211; Feature Presentation</p>
<p>If you haven’t signed up already at <a href="../?page_id=7" target="_blank">EDMPASS.com</a> please do so now to receive meeting notifications, news, and updates from EDMPASS.</p>
<p>Hope to see you there (Virtually <img src="http://edmpass.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /> ).</p>
<p>If you&#8217;d like to chat with me about this or anything else (SQL or other) please leave a comment or hit me up on my Twitter: <a href="http://twitter.com/ColinStasiuk" target="_blank">@ColinStasiuk</a></p>
<p><a href="http://benchmarkitconsulting.com/" target="_blank"><img title="benchmark_sm" src="http://benchmarkitconsulting.com/wp-content/uploads/2009/02/benchmark_sm.jpg" alt="" width="157" height="74" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=EDMPASS+%26%238211%3B+December+Meeting+w%2FJes+Borland+%28Virtual%29+http://tinyurl.com/7guywrf" title="Post to Twitter"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-twitter-big4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/11/09/edmpass-december-meeting-wjes-borland-virtual/&amp;title=EDMPASS+%26%238211%3B+December+Meeting+w%2FJes+Borland+%28Virtual%29" title="Post to Delicious"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/11/09/edmpass-december-meeting-wjes-borland-virtual/&amp;title=EDMPASS+%26%238211%3B+December+Meeting+w%2FJes+Borland+%28Virtual%29" title="Post to Digg"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://benchmarkitconsulting.com/colin-stasiuk/2011/11/09/edmpass-december-meeting-wjes-borland-virtual/&amp;title=EDMPASS+%26%238211%3B+December+Meeting+w%2FJes+Borland+%28Virtual%29" title="Post to StumbleUpon"><img class="nothumb" src="http://benchmarkitconsulting.com/wp-content/plugins/tweet-this/icons/tt-su-big4.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://benchmarkitconsulting.com/colin-stasiuk/2011/11/09/edmpass-december-meeting-wjes-borland-virtual/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

