<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://sqlblog.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">The Bit Bucket (Greg Low)</title><subtitle type="html">Ramblings of Greg Low</subtitle><id>http://sqlblog.com/blogs/greg_low/atom.aspx</id><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/default.aspx" /><link rel="self" type="application/atom+xml" href="http://sqlblog.com/blogs/greg_low/atom.aspx" /><generator uri="http://communityserver.org" version="2.1.61129.1">Community Server</generator><updated>2008-10-01T15:21:00Z</updated><entry><title>LINQ to SQL: Does it have much of a future?</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/12/24/linq-to-sql-does-it-have-much-of-a-future.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/12/24/linq-to-sql-does-it-have-much-of-a-future.aspx</id><published>2008-12-23T22:10:00Z</published><updated>2008-12-23T22:10:00Z</updated><content type="html">&lt;P&gt;Kevin Kline &lt;A class="" href="http://sqlblog.com/blogs/kevin_kline/archive/2008/12/23/linq-enabling-or-entangling.aspx"&gt;recently posted&lt;/A&gt;, wondering about the directions for LINQ.&lt;/P&gt;
&lt;P&gt;When people refer to LINQ, they're often referring to "LINQ to SQL" instead. &lt;/P&gt;
&lt;P&gt;LINQ as a language enhancement is pretty cool. It provides a way to easy navigate enumerable objects. The only thing that puzzles me is why they picked SQL-like syntax for this instead of something more appropriate for objects. &lt;/P&gt;
&lt;P&gt;On the other hand, LINQ to SQL I can't get excited about. The main issues are that it's tied to SQL Server and only gives you a one-to-one mapping of tables to objects. That leaves you with either a lousy database design&amp;nbsp;or a lousy object model. &lt;/P&gt;
&lt;P&gt;The easiest example is anything that involves many to many relationships. If I have a flights table and a passengers table, I'd typically have a linking table (like flightmanifests) that records which passengers are on which flights. That's good database design but I wouldn't want an object model based directly on those three tables. What I'd want at the object level is a passenger object with a flights collection and a flight object with a passengers collection. &lt;/P&gt;
&lt;P&gt;The Entity Framework lets you cope with both the issues mentioned and seems to be more likely to be the direction that Microsoft will keep heading. It also adds some interesting constructs in the ESQL language. However, its generic nature means you need to work with a very constrained set of data types. You lose the rich data types available with SQL Server in the trade off with&amp;nbsp;the ability to write more generic code.&lt;/P&gt;
&lt;P&gt;From the database end, LINQ to SQL can generate quite poor TSQL and the way people often use it ends up causing plan cache pollution issues, much the same as anyone using AddWithValue() to add parameters to a SqlParameters collection in ADO.NET would. &lt;/P&gt;
&lt;P&gt;Every time I show people the TSQL code generated from some simple LINQ to SQL queries, I see two reactions. People with a developer background usually say "I'm glad I didn't have to write that". People with a database background say "No-one should write that - it's horrible code". And LINQ to Entities generates even more generic code (as you would imagine it needs to when it doesn't even know what database engine it's targeting).&lt;/P&gt;
&lt;P&gt;This is usually all justified by increased developer productivity. "As long as it works well enough and it's done quickly, who cares if what's going on under the covers isn't great?" And that's 100% true for small or simple applications. However, the places I see Microsoft pushing this technology is to ISVs and large enterprise clients. These are likely to be the people it's least appropriate for.&lt;/P&gt;
&lt;P&gt;The ADO.NET group seems to have adopted LINQ to SQL now but I know they really don't love it and the Entity Framework is what they're interested in. So I can't see LINQ to SQL having much of a future at all. LINQ to Entities is much more likely to stay around.&lt;/P&gt;
&lt;P&gt;The other big issue I see in this area is maintenance. Microsoft have made big strides with the Database Edition of Visual Studio Team System but every time I ask questions about what the plans are for allowing it to "see" all the mapping files from these coding technologies, I get very blank stares back. Many DBAs can't make any changes to their databases today because they have a sea of Access applications all over the organisation and they don't know what will break when they change something. Are LINQ to SQL and Entity Framework mapping files going to be the next generation of Access-database-style management issues?&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=LINQ to SQL: Does it have much of a future?&amp;amp;body=Seen on SQLblog.com: %0A%0A%09LINQ to SQL: Does it have much of a future?%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/12/24/linq-to-sql-does-it-have-much-of-a-future.aspx" target="_blank" title = "Email LINQ to SQL: Does it have much of a future?"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/24/linq-to-sql-does-it-have-much-of-a-future.aspx&amp;amp;title=LINQ+to+SQL%3a+Does+it+have+much+of+a+future%3f" target="_blank" title = "Submit LINQ to SQL: Does it have much of a future? to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/24/linq-to-sql-does-it-have-much-of-a-future.aspx&amp;amp;phase=2" target="_blank" title = "Submit LINQ to SQL: Does it have much of a future? to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/24/linq-to-sql-does-it-have-much-of-a-future.aspx&amp;amp;title=LINQ+to+SQL%3a+Does+it+have+much+of+a+future%3f" target="_blank" title = "Submit LINQ to SQL: Does it have much of a future? to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/24/linq-to-sql-does-it-have-much-of-a-future.aspx&amp;amp;title=LINQ+to+SQL%3a+Does+it+have+much+of+a+future%3f" target="_blank" title = "Submit LINQ to SQL: Does it have much of a future? to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/12/24/linq-to-sql-does-it-have-much-of-a-future.aspx&amp;amp;title=LINQ+to+SQL%3a+Does+it+have+much+of+a+future%3f&amp;amp;;top=1" target="_blank" title = "Add LINQ to SQL: Does it have much of a future? to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=10736" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>Rendering HTML in Reporting Services Text Boxes in SQL Server 2008</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/12/19/rendering-html-in-reporting-services-text-boxes-in-sql-server-2008.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/12/19/rendering-html-in-reporting-services-text-boxes-in-sql-server-2008.aspx</id><published>2008-12-19T06:12:00Z</published><updated>2008-12-19T06:12:00Z</updated><content type="html">&lt;P&gt;Some time back, &lt;A class="" href="http://sqlblog.com/blogs/greg_low/archive/2008/08/25/displaying-html-content-in-reporting-services-2008.aspx"&gt;I posted&lt;/A&gt; about how to do this. Well by the time we got to RTM, this had changed.&lt;/P&gt;
&lt;P&gt;There isn't a "create placeholder" option when you right-click a cell any more.&lt;/P&gt;
&lt;P&gt;When you drag a field into a cell, it creates a placeholder that contains the field. If you right-click the placeholder that was added, you'll see an option to edit the Placeholder Properties. What threw me for a while was that if you right-click the cell, you won't see this option. Turns out you have to right-click the field-name within the cell, not the blank area beside the name within the cell. Thanks to my colleague Jessica Moss for helping me find it.&lt;/P&gt;
&lt;P&gt;This really isn't very good UI work in the report designer. It's quite counter-intuitive and different to how cell selection, etc. works in other products like Excel.&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=Rendering HTML in Reporting Services Text Boxes in SQL Server 2008&amp;amp;body=Seen on SQLblog.com: %0A%0A%09Rendering HTML in Reporting Services Text Boxes in SQL Server 2008%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/12/19/rendering-html-in-reporting-services-text-boxes-in-sql-server-2008.aspx" target="_blank" title = "Email Rendering HTML in Reporting Services Text Boxes in SQL Server 2008"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/19/rendering-html-in-reporting-services-text-boxes-in-sql-server-2008.aspx&amp;amp;title=Rendering+HTML+in+Reporting+Services+Text+Boxes+in+SQL+Server+2008" target="_blank" title = "Submit Rendering HTML in Reporting Services Text Boxes in SQL Server 2008 to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/19/rendering-html-in-reporting-services-text-boxes-in-sql-server-2008.aspx&amp;amp;phase=2" target="_blank" title = "Submit Rendering HTML in Reporting Services Text Boxes in SQL Server 2008 to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/19/rendering-html-in-reporting-services-text-boxes-in-sql-server-2008.aspx&amp;amp;title=Rendering+HTML+in+Reporting+Services+Text+Boxes+in+SQL+Server+2008" target="_blank" title = "Submit Rendering HTML in Reporting Services Text Boxes in SQL Server 2008 to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/19/rendering-html-in-reporting-services-text-boxes-in-sql-server-2008.aspx&amp;amp;title=Rendering+HTML+in+Reporting+Services+Text+Boxes+in+SQL+Server+2008" target="_blank" title = "Submit Rendering HTML in Reporting Services Text Boxes in SQL Server 2008 to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/12/19/rendering-html-in-reporting-services-text-boxes-in-sql-server-2008.aspx&amp;amp;title=Rendering+HTML+in+Reporting+Services+Text+Boxes+in+SQL+Server+2008&amp;amp;;top=1" target="_blank" title = "Add Rendering HTML in Reporting Services Text Boxes in SQL Server 2008 to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=10642" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>December Books Online for SQL Server</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/12/12/december-books-online-for-sql-server-2008.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/12/12/december-books-online-for-sql-server-2008.aspx</id><published>2008-12-11T21:20:00Z</published><updated>2008-12-11T21:20:00Z</updated><content type="html">&lt;P&gt;I'm always encouraging people to keep up to date with books online. There's another update out now.&lt;/P&gt;
&lt;P&gt;I know when you get to this link:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=be6a2c5d-00df-4220-b133-29c1e0b6585f&amp;amp;DisplayLang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=be6a2c5d-00df-4220-b133-29c1e0b6585f&amp;amp;DisplayLang=en&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it says "September" but it really is the one issued in December. (Of course when it's&amp;nbsp;installed, it says November :-))&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=December Books Online for SQL Server&amp;amp;body=Seen on SQLblog.com: %0A%0A%09December Books Online for SQL Server%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/12/12/december-books-online-for-sql-server-2008.aspx" target="_blank" title = "Email December Books Online for SQL Server"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/12/december-books-online-for-sql-server-2008.aspx&amp;amp;title=December+Books+Online+for+SQL+Server" target="_blank" title = "Submit December Books Online for SQL Server to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/12/december-books-online-for-sql-server-2008.aspx&amp;amp;phase=2" target="_blank" title = "Submit December Books Online for SQL Server to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/12/december-books-online-for-sql-server-2008.aspx&amp;amp;title=December+Books+Online+for+SQL+Server" target="_blank" title = "Submit December Books Online for SQL Server to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/12/december-books-online-for-sql-server-2008.aspx&amp;amp;title=December+Books+Online+for+SQL+Server" target="_blank" title = "Submit December Books Online for SQL Server to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/12/12/december-books-online-for-sql-server-2008.aspx&amp;amp;title=December+Books+Online+for+SQL+Server&amp;amp;;top=1" target="_blank" title = "Add December Books Online for SQL Server to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=10460" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>SQL Down Under show 42 - Ryan Dunn - SQL Data Services (SQL in the cloud)</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/12/12/sql-down-under-show-42-ryan-dunn-sql-data-services-sql-in-the-cloud.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/12/12/sql-down-under-show-42-ryan-dunn-sql-data-services-sql-in-the-cloud.aspx</id><published>2008-12-11T16:56:00Z</published><updated>2008-12-11T16:56:00Z</updated><content type="html">&lt;P&gt;I've recently posted up another podcast with Ryan Dunn. Ryan is a senior evangelist with Microsoft dealing with SQL in the cloud.&lt;/P&gt;
&lt;P&gt;I keep running across people that suspect that this "cloud stuff" is some sort of fad. I doubt you'll think that after you listen to this show (and alsoshow 40).&lt;/P&gt;
&lt;P&gt;It's now available for download from &lt;A href="http://www.sqldownunder.com/"&gt;www.sqldownunder.com&lt;/A&gt;. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=SQL Down Under show 42 - Ryan Dunn - SQL Data Services (SQL in the cloud)&amp;amp;body=Seen on SQLblog.com: %0A%0A%09SQL Down Under show 42 - Ryan Dunn - SQL Data Services (SQL in the cloud)%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/12/12/sql-down-under-show-42-ryan-dunn-sql-data-services-sql-in-the-cloud.aspx" target="_blank" title = "Email SQL Down Under show 42 - Ryan Dunn - SQL Data Services (SQL in the cloud)"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/12/sql-down-under-show-42-ryan-dunn-sql-data-services-sql-in-the-cloud.aspx&amp;amp;title=SQL+Down+Under+show+42+-+Ryan+Dunn+-+SQL+Data+Services+(SQL+in+the+cloud)" target="_blank" title = "Submit SQL Down Under show 42 - Ryan Dunn - SQL Data Services (SQL in the cloud) to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/12/sql-down-under-show-42-ryan-dunn-sql-data-services-sql-in-the-cloud.aspx&amp;amp;phase=2" target="_blank" title = "Submit SQL Down Under show 42 - Ryan Dunn - SQL Data Services (SQL in the cloud) to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/12/sql-down-under-show-42-ryan-dunn-sql-data-services-sql-in-the-cloud.aspx&amp;amp;title=SQL+Down+Under+show+42+-+Ryan+Dunn+-+SQL+Data+Services+(SQL+in+the+cloud)" target="_blank" title = "Submit SQL Down Under show 42 - Ryan Dunn - SQL Data Services (SQL in the cloud) to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/12/sql-down-under-show-42-ryan-dunn-sql-data-services-sql-in-the-cloud.aspx&amp;amp;title=SQL+Down+Under+show+42+-+Ryan+Dunn+-+SQL+Data+Services+(SQL+in+the+cloud)" target="_blank" title = "Submit SQL Down Under show 42 - Ryan Dunn - SQL Data Services (SQL in the cloud) to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/12/12/sql-down-under-show-42-ryan-dunn-sql-data-services-sql-in-the-cloud.aspx&amp;amp;title=SQL+Down+Under+show+42+-+Ryan+Dunn+-+SQL+Data+Services+(SQL+in+the+cloud)&amp;amp;;top=1" target="_blank" title = "Add SQL Down Under show 42 - Ryan Dunn - SQL Data Services (SQL in the cloud) to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=10449" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>Iron DBA - New Zealand - 2008</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/12/08/iron-dba-new-zealand-2008.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/12/08/iron-dba-new-zealand-2008.aspx</id><published>2008-12-08T05:15:00Z</published><updated>2008-12-08T05:15:00Z</updated><content type="html">&lt;P&gt;Mai and I got back from New Zealand last night after attending the &lt;A class="" href="http://sqlblog.com/controlpanel/blogs/www.sqlpass.org"&gt;PASS Community Connection&lt;/A&gt; event in Porirua (near Wellington) in New Zealand.&lt;/P&gt;
&lt;P&gt;It was a fun weekend as always and congratulations need to go to Nathan Pitcher (PASS Chapter leader from Dunedin) for organising it in conjunction with Adrian, Dave, Amanda, Sue and all the gang from the other local chapters as well as the staff of the local polytechnic where the event was held.&lt;/P&gt;
&lt;P&gt;&lt;A class="" href="http://www.ssw.com.au/SSW/Employees/employeesprofile.aspx?EmpID=AC"&gt;Adam Cogan&lt;/A&gt; and I got to present the keynote and decided to have a bit of fun by creating an "Iron DBA" competition, inspired obviously by &lt;A class="" href="http://en.wikipedia.org/wiki/Iron_Chef"&gt;Iron Chef&lt;/A&gt;&amp;nbsp;television program from Japan. Chairman Cogan and Chairman Low then asked the audience a series of SQL Server questions (dispelling many common myths) until we had six Iron DBA finalists. Each was then allowed to nominate someone to help them prepare a submission on how SQL Server 2008 might help in a consulting scenario we had created. Nathan had organised a great trophy to go with the prizes. It'll now be an annual award.&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH:500px;HEIGHT:375px;" height=375 src="http://farm4.static.flickr.com/3021/3094419356_a989968ba0.jpg?v=0" width=500&gt;&lt;/P&gt;
&lt;P&gt;All in all, it was a bunch of fun. Congratulations to the winner for 2008: &lt;A class="" href="http://www.dpcreative.com/"&gt;David Philpott&lt;/A&gt;. (David is 3rd from the left, shown with the other finalists).&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH:500px;HEIGHT:375px;" height=375 src="http://farm4.static.flickr.com/3191/3094501672_24f3a0e087.jpg?v=0" width=500&gt;&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=Iron DBA - New Zealand - 2008&amp;amp;body=Seen on SQLblog.com: %0A%0A%09Iron DBA - New Zealand - 2008%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/12/08/iron-dba-new-zealand-2008.aspx" target="_blank" title = "Email Iron DBA - New Zealand - 2008"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/08/iron-dba-new-zealand-2008.aspx&amp;amp;title=Iron+DBA+-+New+Zealand+-+2008" target="_blank" title = "Submit Iron DBA - New Zealand - 2008 to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/08/iron-dba-new-zealand-2008.aspx&amp;amp;phase=2" target="_blank" title = "Submit Iron DBA - New Zealand - 2008 to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/08/iron-dba-new-zealand-2008.aspx&amp;amp;title=Iron+DBA+-+New+Zealand+-+2008" target="_blank" title = "Submit Iron DBA - New Zealand - 2008 to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/08/iron-dba-new-zealand-2008.aspx&amp;amp;title=Iron+DBA+-+New+Zealand+-+2008" target="_blank" title = "Submit Iron DBA - New Zealand - 2008 to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/12/08/iron-dba-new-zealand-2008.aspx&amp;amp;title=Iron+DBA+-+New+Zealand+-+2008&amp;amp;;top=1" target="_blank" title = "Add Iron DBA - New Zealand - 2008 to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=10351" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>Ola Hallengren: SQL Server Backup, Integrity Check and Index Optimization</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/12/01/ola-hallengren-sql-server-backup-integrity-check-and-index-optimization.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/12/01/ola-hallengren-sql-server-backup-integrity-check-and-index-optimization.aspx</id><published>2008-12-01T03:26:00Z</published><updated>2008-12-01T03:26:00Z</updated><content type="html">&lt;P&gt;At the PASS Summit in Seattle this year, I had the pleasure of meeting Ola Hallengren. I've exchanged emails with him previously and I do want to highlight the tool he provides for SQL Server backup, integrity check and index optimization. You'll find details on it at: &lt;A href="http://blog.ola.hallengren.com/blog/_archives/2008/1/1/3440068.html"&gt;http://blog.ola.hallengren.com/blog/_archives/2008/1/1/3440068.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=Ola Hallengren: SQL Server Backup, Integrity Check and Index Optimization&amp;amp;body=Seen on SQLblog.com: %0A%0A%09Ola Hallengren: SQL Server Backup, Integrity Check and Index Optimization%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/12/01/ola-hallengren-sql-server-backup-integrity-check-and-index-optimization.aspx" target="_blank" title = "Email Ola Hallengren: SQL Server Backup, Integrity Check and Index Optimization"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/ola-hallengren-sql-server-backup-integrity-check-and-index-optimization.aspx&amp;amp;title=Ola+Hallengren%3a+SQL+Server+Backup%2c+Integrity+Check+and+Index+Optimization" target="_blank" title = "Submit Ola Hallengren: SQL Server Backup, Integrity Check and Index Optimization to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/ola-hallengren-sql-server-backup-integrity-check-and-index-optimization.aspx&amp;amp;phase=2" target="_blank" title = "Submit Ola Hallengren: SQL Server Backup, Integrity Check and Index Optimization to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/ola-hallengren-sql-server-backup-integrity-check-and-index-optimization.aspx&amp;amp;title=Ola+Hallengren%3a+SQL+Server+Backup%2c+Integrity+Check+and+Index+Optimization" target="_blank" title = "Submit Ola Hallengren: SQL Server Backup, Integrity Check and Index Optimization to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/ola-hallengren-sql-server-backup-integrity-check-and-index-optimization.aspx&amp;amp;title=Ola+Hallengren%3a+SQL+Server+Backup%2c+Integrity+Check+and+Index+Optimization" target="_blank" title = "Submit Ola Hallengren: SQL Server Backup, Integrity Check and Index Optimization to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/ola-hallengren-sql-server-backup-integrity-check-and-index-optimization.aspx&amp;amp;title=Ola+Hallengren%3a+SQL+Server+Backup%2c+Integrity+Check+and+Index+Optimization&amp;amp;;top=1" target="_blank" title = "Add Ola Hallengren: SQL Server Backup, Integrity Check and Index Optimization to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=10208" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>Code Camp and PASS Community Connection dates for 2009 (Wagga Wagga - Australia)</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/12/01/code-camp-and-pass-community-connection-dates-for-2009-wagga-wagga-australia.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/12/01/code-camp-and-pass-community-connection-dates-for-2009-wagga-wagga-australia.aspx</id><published>2008-12-01T03:21:00Z</published><updated>2008-12-01T03:21:00Z</updated><content type="html">&lt;DIV&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;FONT face=Calibri&gt;CodeCampOz will be April 4th/5th in 2009 and the SQL Down Under Code Camp (PASS Community Connection) will be October 10th/11th in Wagga Wagga. Mark your calendars!&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;FONT face=Calibri&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;FONT face=Calibri&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;FONT face=Calibri&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;FONT face=Calibri&gt;Greg&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;FONT face=Calibri&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;FONT face=Calibri&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0cm 0cm 0pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri&gt;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;/DIV&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=Code Camp and PASS Community Connection dates for 2009 (Wagga Wagga - Australia)&amp;amp;body=Seen on SQLblog.com: %0A%0A%09Code Camp and PASS Community Connection dates for 2009 (Wagga Wagga - Australia)%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/12/01/code-camp-and-pass-community-connection-dates-for-2009-wagga-wagga-australia.aspx" target="_blank" title = "Email Code Camp and PASS Community Connection dates for 2009 (Wagga Wagga - Australia)"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/code-camp-and-pass-community-connection-dates-for-2009-wagga-wagga-australia.aspx&amp;amp;title=Code+Camp+and+PASS+Community+Connection+dates+for+2009+(Wagga+Wagga+-+Australia)" target="_blank" title = "Submit Code Camp and PASS Community Connection dates for 2009 (Wagga Wagga - Australia) to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/code-camp-and-pass-community-connection-dates-for-2009-wagga-wagga-australia.aspx&amp;amp;phase=2" target="_blank" title = "Submit Code Camp and PASS Community Connection dates for 2009 (Wagga Wagga - Australia) to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/code-camp-and-pass-community-connection-dates-for-2009-wagga-wagga-australia.aspx&amp;amp;title=Code+Camp+and+PASS+Community+Connection+dates+for+2009+(Wagga+Wagga+-+Australia)" target="_blank" title = "Submit Code Camp and PASS Community Connection dates for 2009 (Wagga Wagga - Australia) to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/code-camp-and-pass-community-connection-dates-for-2009-wagga-wagga-australia.aspx&amp;amp;title=Code+Camp+and+PASS+Community+Connection+dates+for+2009+(Wagga+Wagga+-+Australia)" target="_blank" title = "Submit Code Camp and PASS Community Connection dates for 2009 (Wagga Wagga - Australia) to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/code-camp-and-pass-community-connection-dates-for-2009-wagga-wagga-australia.aspx&amp;amp;title=Code+Camp+and+PASS+Community+Connection+dates+for+2009+(Wagga+Wagga+-+Australia)&amp;amp;;top=1" target="_blank" title = "Add Code Camp and PASS Community Connection dates for 2009 (Wagga Wagga - Australia) to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=10207" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>SQL Down Under show 41: Buck Woody - SQL Powershell</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/12/01/sql-down-under-show-41-buck-woody-sql-powershell.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/12/01/sql-down-under-show-41-buck-woody-sql-powershell.aspx</id><published>2008-12-01T03:12:00Z</published><updated>2008-12-01T03:12:00Z</updated><content type="html">&lt;P&gt;I've just posted the interview I did with Buck Woody live at the &lt;A class="" href="http://www.sqlpass.org/"&gt;SQL PASS&lt;/A&gt; Summit in Seattle recently. In it, Buck talks about roles within the SQL Server product group and then discusses Powershell in relation to SQL Server. It's available for download from &lt;A href="http://www.sqldownunder.com/"&gt;www.sqldownunder.com&lt;/A&gt;. &lt;/P&gt;
&lt;P&gt;Enjoy!&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=SQL Down Under show 41: Buck Woody - SQL Powershell&amp;amp;body=Seen on SQLblog.com: %0A%0A%09SQL Down Under show 41: Buck Woody - SQL Powershell%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/12/01/sql-down-under-show-41-buck-woody-sql-powershell.aspx" target="_blank" title = "Email SQL Down Under show 41: Buck Woody - SQL Powershell"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/sql-down-under-show-41-buck-woody-sql-powershell.aspx&amp;amp;title=SQL+Down+Under+show+41%3a+Buck+Woody+-+SQL+Powershell" target="_blank" title = "Submit SQL Down Under show 41: Buck Woody - SQL Powershell to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/sql-down-under-show-41-buck-woody-sql-powershell.aspx&amp;amp;phase=2" target="_blank" title = "Submit SQL Down Under show 41: Buck Woody - SQL Powershell to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/sql-down-under-show-41-buck-woody-sql-powershell.aspx&amp;amp;title=SQL+Down+Under+show+41%3a+Buck+Woody+-+SQL+Powershell" target="_blank" title = "Submit SQL Down Under show 41: Buck Woody - SQL Powershell to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/sql-down-under-show-41-buck-woody-sql-powershell.aspx&amp;amp;title=SQL+Down+Under+show+41%3a+Buck+Woody+-+SQL+Powershell" target="_blank" title = "Submit SQL Down Under show 41: Buck Woody - SQL Powershell to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/12/01/sql-down-under-show-41-buck-woody-sql-powershell.aspx&amp;amp;title=SQL+Down+Under+show+41%3a+Buck+Woody+-+SQL+Powershell&amp;amp;;top=1" target="_blank" title = "Add SQL Down Under show 41: Buck Woody - SQL Powershell to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=10206" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>Microsoft Certified Master: SQL Server 2008</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/11/28/microsoft-certified-master-sql-server-2008.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/11/28/microsoft-certified-master-sql-server-2008.aspx</id><published>2008-11-28T04:43:00Z</published><updated>2008-11-28T04:43:00Z</updated><content type="html">&lt;P&gt;I've been really busy lately. A big component of that time has been my involvement with the new &lt;A class="" href="http://www.microsoft.com/learning/mcp/master/sql/default.mspx"&gt;Microsoft Certified Master: SQL Server 2008&lt;/A&gt; program. I was privileged to be chosen to teach six days of the fifteen day program in the recent alpha rotation. In addition, I decided to attend (and pay !) to attend the rotation, do the exams and qualifying lab.&lt;/P&gt;
&lt;P&gt;Well it was quite an experience!&lt;/P&gt;
&lt;P&gt;Anyone considering this program needs to understand the demands that it will place on your time. The three weeks of classes run from 8am to 6pm daily but most attendees would then spend up to another three or four hours per night studying while there. On the weekends, you have lab work that needs to be completed before the next week and each Monday morning, you have a two hour Prometric exam. On the final Saturday, you have another two hour Prometric exam followed by a six hour hands-on qualifying lab. I was with a wonderful group of people on this first rotation and have to say that all looked exhausted at the end. &lt;/P&gt;
&lt;P&gt;Paul Randal and Kim Tripp covered the first week, Adam Machanic, Paul Nielsen, Allan Hirt, Ron Talmage, Andy Kelly, myself and Gert Drapers covered the second week and I covered the third week.&lt;/P&gt;
&lt;P&gt;While I obviously can't tell you anything about the exam content, I'd be giving nothing away by saying it's in a different league to the questions you see on the MCITP exams. And the final qualifying lab has some carefully chosen scenarios that you need to navigate your way through, with lots of little (intentional) road-blocks on the way.&lt;/P&gt;
&lt;P&gt;If you look into doing this program, you need to block a bit over three weeks of your life completely out. It's also expensive and what might surprise you more is that most candidates don't pass at the first attempt. I was one of the fortunate ones to do so this time but you should not consider it to be any sort of failure if you don't achieve it on the first attempt. You can retake the exams (with similar rules to the&amp;nbsp;other Prometric exams) but you can't retake the qualifying lab until you've passed the exams. You only get&amp;nbsp;two attempts at retaking the qualifying lab or you then need to retake the whole course. (I believe that would happen at a 50% discount but you should check the rules for clarification). Also, don't plan to fly out on the Saturday night at the end. Leave the time to have dinner with the rest of the people in your rotation and avoid any time pressure related to flights. That's the last thing you'll want on your mind at that stage.&lt;/P&gt;
&lt;P&gt;Regardless, it's highly recommended if it makes sense for you. I'll be back teaching in the next rotation and I'll look forward to seeing any of you that decide to tackle it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=Microsoft Certified Master: SQL Server 2008&amp;amp;body=Seen on SQLblog.com: %0A%0A%09Microsoft Certified Master: SQL Server 2008%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/11/28/microsoft-certified-master-sql-server-2008.aspx" target="_blank" title = "Email Microsoft Certified Master: SQL Server 2008"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/microsoft-certified-master-sql-server-2008.aspx&amp;amp;title=Microsoft+Certified+Master%3a+SQL+Server+2008" target="_blank" title = "Submit Microsoft Certified Master: SQL Server 2008 to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/microsoft-certified-master-sql-server-2008.aspx&amp;amp;phase=2" target="_blank" title = "Submit Microsoft Certified Master: SQL Server 2008 to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/microsoft-certified-master-sql-server-2008.aspx&amp;amp;title=Microsoft+Certified+Master%3a+SQL+Server+2008" target="_blank" title = "Submit Microsoft Certified Master: SQL Server 2008 to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/microsoft-certified-master-sql-server-2008.aspx&amp;amp;title=Microsoft+Certified+Master%3a+SQL+Server+2008" target="_blank" title = "Submit Microsoft Certified Master: SQL Server 2008 to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/microsoft-certified-master-sql-server-2008.aspx&amp;amp;title=Microsoft+Certified+Master%3a+SQL+Server+2008&amp;amp;;top=1" target="_blank" title = "Add Microsoft Certified Master: SQL Server 2008 to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=10159" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>SQL Server 2008 Systems Views Poster</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-systems-views-poster.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-systems-views-poster.aspx</id><published>2008-11-28T04:31:00Z</published><updated>2008-11-28T04:31:00Z</updated><content type="html">&lt;P&gt;Another project that Ron Talmage and several other of my &lt;A class="" href="http://www.solidq.com.au/"&gt;Solid Quality Mentors&lt;/A&gt; colleagues have been working on is a new system views poster for SQL Server 2008. I'm told that it's going to go out with the December issue of &lt;A class="" href="http://www.sqlmag.com/"&gt;SQL Server Magazine&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;I got a copy of this at the &lt;A class="" href="http://www.sqlpass.org/"&gt;PASS summit&lt;/A&gt; and it's excellent. In fact, stocks ran out before the conference even really got started. &lt;/P&gt;
&lt;P&gt;Congratulations to all involved.&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=SQL Server 2008 Systems Views Poster&amp;amp;body=Seen on SQLblog.com: %0A%0A%09SQL Server 2008 Systems Views Poster%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-systems-views-poster.aspx" target="_blank" title = "Email SQL Server 2008 Systems Views Poster"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-systems-views-poster.aspx&amp;amp;title=SQL+Server+2008+Systems+Views+Poster" target="_blank" title = "Submit SQL Server 2008 Systems Views Poster to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-systems-views-poster.aspx&amp;amp;phase=2" target="_blank" title = "Submit SQL Server 2008 Systems Views Poster to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-systems-views-poster.aspx&amp;amp;title=SQL+Server+2008+Systems+Views+Poster" target="_blank" title = "Submit SQL Server 2008 Systems Views Poster to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-systems-views-poster.aspx&amp;amp;title=SQL+Server+2008+Systems+Views+Poster" target="_blank" title = "Submit SQL Server 2008 Systems Views Poster to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-systems-views-poster.aspx&amp;amp;title=SQL+Server+2008+Systems+Views+Poster&amp;amp;;top=1" target="_blank" title = "Add SQL Server 2008 Systems Views Poster to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=10156" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>SQL Server 2008 Upgrade Technical Reference</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-upgrade-technical-reference.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-upgrade-technical-reference.aspx</id><published>2008-11-28T04:23:00Z</published><updated>2008-11-28T04:23:00Z</updated><content type="html">&lt;P&gt;I've been working on the SQL Server 2008 Upgrade Technical Reference with a number of my colleagues&amp;nbsp;from &lt;A class="" href="http://www.solidq.com.au/"&gt;Solid Quality Mentors&lt;/A&gt; (Ron Talmage, Aaron Johal, Steven Abraham, Allan Hirt, Herbert Albert, Antonio Soto, Joe Webb, Craig Utley, Dejan Sarka, Larry Barnes, Pablo Ahumada, Kathy Blomstrom) and a bunch of great folk from Microsoft (Arvind Rao, George Huey, Richard Waymire, Siva Harinath, Edward Melomed, Deepika Mistry, Fernando Caro, Goldie Chaudhuri, Max Verun, Vijay Tandra Sistla, Tom Michaels, Justin Erickson, Devendra Tiwari, Jingwei Lu, Fernando Azpeitia Lopez, Ketan Duvedi, Lukasz Pawlowski, David Noor, Matt Masson, Karandeep Anand, Jen Witsoe, Suzanne Bonney, Megan Bradley, Tresy Kilbourne, Bronwyn McNutt). &lt;/P&gt;
&lt;P&gt;I&amp;nbsp;am really pleased to see that it has become available and that you can get all 486 pages of goodness&amp;nbsp;here: &lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=66D3E6F5-6902-4FDD-AF75-9975AEA5BEA7&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=66D3E6F5-6902-4FDD-AF75-9975AEA5BEA7&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=SQL Server 2008 Upgrade Technical Reference&amp;amp;body=Seen on SQLblog.com: %0A%0A%09SQL Server 2008 Upgrade Technical Reference%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-upgrade-technical-reference.aspx" target="_blank" title = "Email SQL Server 2008 Upgrade Technical Reference"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-upgrade-technical-reference.aspx&amp;amp;title=SQL+Server+2008+Upgrade+Technical+Reference" target="_blank" title = "Submit SQL Server 2008 Upgrade Technical Reference to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-upgrade-technical-reference.aspx&amp;amp;phase=2" target="_blank" title = "Submit SQL Server 2008 Upgrade Technical Reference to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-upgrade-technical-reference.aspx&amp;amp;title=SQL+Server+2008+Upgrade+Technical+Reference" target="_blank" title = "Submit SQL Server 2008 Upgrade Technical Reference to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-upgrade-technical-reference.aspx&amp;amp;title=SQL+Server+2008+Upgrade+Technical+Reference" target="_blank" title = "Submit SQL Server 2008 Upgrade Technical Reference to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/11/28/sql-server-2008-upgrade-technical-reference.aspx&amp;amp;title=SQL+Server+2008+Upgrade+Technical+Reference&amp;amp;;top=1" target="_blank" title = "Add SQL Server 2008 Upgrade Technical Reference to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=10155" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>Outstanding new book: T-SQL Fundamentals (Itzik Ben-Gan)</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/11/02/outstanding-new-book-t-sql-fundamentals-itzik-ben-gan.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/11/02/outstanding-new-book-t-sql-fundamentals-itzik-ben-gan.aspx</id><published>2008-11-02T03:41:00Z</published><updated>2008-11-02T03:41:00Z</updated><content type="html">&lt;P&gt;I'm so glad to see that my &lt;A class="" href="http://www.solidq.com/na"&gt;Solid Quality Mentors&lt;/A&gt; colleague Itzik Ben-Gan has his T-SQL Fundamentals book now available. This book has been needed for some time. It's been updated for SQL Server 2008 and I'm sure it'll fast become one of the standard SQL Server 2008 references.&lt;/P&gt;
&lt;P&gt;Details are here: &lt;A href="http://www.amazon.com/Microsoft%C2%AE-Server%C2%AE-T-SQL-Fundamentals-PRO-Developer/dp/0735626014/ref=sr_1_1?ie=UTF8&amp;amp;s=books&amp;amp;qid=1225597357&amp;amp;sr=8-1"&gt;http://www.amazon.com/Microsoft%C2%AE-Server%C2%AE-T-SQL-Fundamentals-PRO-Developer/dp/0735626014/ref=sr_1_1?ie=UTF8&amp;amp;s=books&amp;amp;qid=1225597357&amp;amp;sr=8-1&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The companion web site for the book is here: &lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Verdana','sans-serif';mso-ansi-language:EN-US;mso-fareast-font-family:SimSun;mso-fareast-theme-font:minor-fareast;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA;mso-bidi-font-family:'Times New Roman';"&gt;&lt;A href="http://www.insidetsql.com/tsqlfund2008/"&gt;&lt;FONT color=#0000ff&gt;http://www.insidetsql.com/tsqlfund2008/&lt;/FONT&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:black;FONT-FAMILY:'Verdana','sans-serif';mso-ansi-language:EN-US;mso-fareast-font-family:SimSun;mso-fareast-theme-font:minor-fareast;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA;mso-bidi-font-family:'Times New Roman';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=Outstanding new book: T-SQL Fundamentals (Itzik Ben-Gan)&amp;amp;body=Seen on SQLblog.com: %0A%0A%09Outstanding new book: T-SQL Fundamentals (Itzik Ben-Gan)%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/11/02/outstanding-new-book-t-sql-fundamentals-itzik-ben-gan.aspx" target="_blank" title = "Email Outstanding new book: T-SQL Fundamentals (Itzik Ben-Gan)"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/02/outstanding-new-book-t-sql-fundamentals-itzik-ben-gan.aspx&amp;amp;title=Outstanding+new+book%3a+T-SQL+Fundamentals+(Itzik+Ben-Gan)" target="_blank" title = "Submit Outstanding new book: T-SQL Fundamentals (Itzik Ben-Gan) to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/02/outstanding-new-book-t-sql-fundamentals-itzik-ben-gan.aspx&amp;amp;phase=2" target="_blank" title = "Submit Outstanding new book: T-SQL Fundamentals (Itzik Ben-Gan) to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/02/outstanding-new-book-t-sql-fundamentals-itzik-ben-gan.aspx&amp;amp;title=Outstanding+new+book%3a+T-SQL+Fundamentals+(Itzik+Ben-Gan)" target="_blank" title = "Submit Outstanding new book: T-SQL Fundamentals (Itzik Ben-Gan) to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/11/02/outstanding-new-book-t-sql-fundamentals-itzik-ben-gan.aspx&amp;amp;title=Outstanding+new+book%3a+T-SQL+Fundamentals+(Itzik+Ben-Gan)" target="_blank" title = "Submit Outstanding new book: T-SQL Fundamentals (Itzik Ben-Gan) to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/11/02/outstanding-new-book-t-sql-fundamentals-itzik-ben-gan.aspx&amp;amp;title=Outstanding+new+book%3a+T-SQL+Fundamentals+(Itzik+Ben-Gan)&amp;amp;;top=1" target="_blank" title = "Add Outstanding new book: T-SQL Fundamentals (Itzik Ben-Gan) to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=9826" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>PASS Community Connection - New Zealand</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/10/25/pass-community-connection-new-zealand.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/10/25/pass-community-connection-new-zealand.aspx</id><published>2008-10-24T12:33:00Z</published><updated>2008-10-24T12:33:00Z</updated><content type="html">&lt;P&gt;I'm really pleased to see that Nathan Pitcher and the gang in New Zealand have organised a PASS Community Connection event. It will run in Porirua (same place as their last SQL Code Camp) on December 6th / 7th. I'll be there to deliver a few sessions and the keynote along with Adam Cogan. Peter Ward, Chris Auld, Daryl Burling, Dave Dustin, Duncan Murch, Myles Matheson and Bruce Cassidy are also all doing sessions. It should be a great weekend. &lt;/P&gt;
&lt;P&gt;For more information, hit: &lt;SPAN style="FONT-SIZE:11pt;COLOR:#365f91;FONT-FAMILY:'Arial','sans-serif';mso-ansi-language:EN-US;mso-fareast-font-family:SimSun;mso-fareast-theme-font:minor-fareast;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA;"&gt;&lt;A href="http://www.dot.net.nz/Default.aspx?tabid=120"&gt;&lt;SPAN style="COLOR:#365f91;"&gt;&lt;STRONG&gt;http://www.dot.net.nz/Default.aspx?tabid=120&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=PASS Community Connection - New Zealand&amp;amp;body=Seen on SQLblog.com: %0A%0A%09PASS Community Connection - New Zealand%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/10/25/pass-community-connection-new-zealand.aspx" target="_blank" title = "Email PASS Community Connection - New Zealand"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/10/25/pass-community-connection-new-zealand.aspx&amp;amp;title=PASS+Community+Connection+-+New+Zealand" target="_blank" title = "Submit PASS Community Connection - New Zealand to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/10/25/pass-community-connection-new-zealand.aspx&amp;amp;phase=2" target="_blank" title = "Submit PASS Community Connection - New Zealand to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/10/25/pass-community-connection-new-zealand.aspx&amp;amp;title=PASS+Community+Connection+-+New+Zealand" target="_blank" title = "Submit PASS Community Connection - New Zealand to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/10/25/pass-community-connection-new-zealand.aspx&amp;amp;title=PASS+Community+Connection+-+New+Zealand" target="_blank" title = "Submit PASS Community Connection - New Zealand to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/10/25/pass-community-connection-new-zealand.aspx&amp;amp;title=PASS+Community+Connection+-+New+Zealand&amp;amp;;top=1" target="_blank" title = "Add PASS Community Connection - New Zealand to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=9638" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>SQL Server Books Online - August released</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/10/01/sql-server-books-online-august-released.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/10/01/sql-server-books-online-august-released.aspx</id><published>2008-10-01T04:54:00Z</published><updated>2008-10-01T04:54:00Z</updated><content type="html">&lt;P&gt;I'm&amp;nbsp;encouraging people to update Books Online on a regular basis. The August version for 2008 has hit the download sites today. You can get it here:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://msdn.microsoft.com/en-us/sqlserver/cc514207.aspx"&gt;http://msdn.microsoft.com/en-us/sqlserver/cc514207.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=SQL Server Books Online - August released&amp;amp;body=Seen on SQLblog.com: %0A%0A%09SQL Server Books Online - August released%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/10/01/sql-server-books-online-august-released.aspx" target="_blank" title = "Email SQL Server Books Online - August released"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/10/01/sql-server-books-online-august-released.aspx&amp;amp;title=SQL+Server+Books+Online+-+August+released" target="_blank" title = "Submit SQL Server Books Online - August released to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/10/01/sql-server-books-online-august-released.aspx&amp;amp;phase=2" target="_blank" title = "Submit SQL Server Books Online - August released to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/10/01/sql-server-books-online-august-released.aspx&amp;amp;title=SQL+Server+Books+Online+-+August+released" target="_blank" title = "Submit SQL Server Books Online - August released to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/10/01/sql-server-books-online-august-released.aspx&amp;amp;title=SQL+Server+Books+Online+-+August+released" target="_blank" title = "Submit SQL Server Books Online - August released to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/10/01/sql-server-books-online-august-released.aspx&amp;amp;title=SQL+Server+Books+Online+-+August+released&amp;amp;;top=1" target="_blank" title = "Add SQL Server Books Online - August released to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=9148" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry><entry><title>Presenting at Large Events (Lessons learned)</title><link rel="alternate" type="text/html" href="http://sqlblog.com/blogs/greg_low/archive/2008/10/01/presenting-at-large-events-lessons-learned.aspx" /><id>http://sqlblog.com/blogs/greg_low/archive/2008/10/01/presenting-at-large-events-lessons-learned.aspx</id><published>2008-10-01T03:21:00Z</published><updated>2008-10-01T03:21:00Z</updated><content type="html">&lt;P&gt;I often get asked questions about what's involved in presenting at TechEd and similar large events. I ran a session for local MCTs on this topic earlier in the year at our MCT summit and I was surprised at the level of interest.&lt;/P&gt;
&lt;P&gt;Douglas McDowell (colleague at &lt;A class="" href="http://www.solidq.com.au/"&gt;Solid Quality&lt;/A&gt;) suggesed I record a screencast of this to share, so I decided to record a four part series on it. I hope that many you find it useful:&lt;/P&gt;
&lt;P&gt;&lt;A class="" href="http://www.sqldownunder.com/PresentingAtLargeEventsPart1.wmv"&gt;Part 1: Introduction&lt;/A&gt;&amp;nbsp;(1MB)&lt;/P&gt;
&lt;P&gt;&lt;A class="" href="http://www.sqldownunder.com/PresentingAtLargeEventsPart2.wmv"&gt;Part 2: Getting Invited&lt;/A&gt;&amp;nbsp;(6.2MB)&lt;/P&gt;
&lt;P&gt;&lt;A class="" href="http://www.sqldownunder.com/PresentingAtLargeEventsPart3.wmv"&gt;Part 3: Session Building&lt;/A&gt;&amp;nbsp;(8.2MB)&lt;/P&gt;
&lt;P&gt;&lt;A class="" href="http://www.sqldownunder.com/PresentingAtLargeEventsPart4.wmv"&gt;Part 4: Presentation Tips and Tricks&lt;/A&gt;&amp;nbsp;(18.2MB)&lt;/P&gt;
&lt;BR&gt;&lt;div class = "shareblock"&gt;&lt;span class = "shareblockTitle"&gt;Share this post:&lt;/span&gt;&lt;span class = "shareblockLink"&gt; &lt;a href = "mailto:?subject=Presenting at Large Events (Lessons learned)&amp;amp;body=Seen on SQLblog.com: %0A%0A%09Presenting at Large Events (Lessons learned)%0A%0Ahttp://sqlblog.com/blogs/greg_low/archive/2008/10/01/presenting-at-large-events-lessons-learned.aspx" target="_blank" title = "Email Presenting at Large Events (Lessons learned)"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://sqlblog.com/blogs/greg_low/archive/2008/10/01/presenting-at-large-events-lessons-learned.aspx&amp;amp;title=Presenting+at+Large+Events+(Lessons+learned)" target="_blank" title = "Submit Presenting at Large Events (Lessons learned) to del.icio.us"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/10/01/presenting-at-large-events-lessons-learned.aspx&amp;amp;phase=2" target="_blank" title = "Submit Presenting at Large Events (Lessons learned) to digg.com"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://sqlblog.com/blogs/greg_low/archive/2008/10/01/presenting-at-large-events-lessons-learned.aspx&amp;amp;title=Presenting+at+Large+Events+(Lessons+learned)" target="_blank" title = "Submit Presenting at Large Events (Lessons learned) to reddit.com"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://sqlblog.com/blogs/greg_low/archive/2008/10/01/presenting-at-large-events-lessons-learned.aspx&amp;amp;title=Presenting+at+Large+Events+(Lessons+learned)" target="_blank" title = "Submit Presenting at Large Events (Lessons learned) to DotNetKicks"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;mkt=en-us&amp;amp;url=http://sqlblog.com/blogs/greg_low/archive/2008/10/01/presenting-at-large-events-lessons-learned.aspx&amp;amp;title=Presenting+at+Large+Events+(Lessons+learned)&amp;amp;;top=1" target="_blank" title = "Add Presenting at Large Events (Lessons learned) to Live Bookmarks"&gt;live it!&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://info.sqlblog.com/a.aspx?ZoneID=0&amp;BannerID=12&amp;AdvertiserID=1&amp;CampaignID=12&amp;Task=Get&amp;Mode=TEXT&amp;SiteID=1&amp;RandomNumber=463323" width="1" height="1" border="0"&gt;&lt;img src="http://sqlblog.com/aggbug.aspx?PostID=9147" width="1" height="1"&gt;</content><author><name>greglow</name><uri>http://sqlblog.com/members/greglow.aspx</uri></author></entry></feed>