<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://sqlblog.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tags 'SQL Server' and 'Web'</title><link>http://sqlblog.com/search/SearchResults.aspx?o=DateDescending&amp;tag=SQL+Server,Web&amp;orTags=0</link><description>Search results matching tags 'SQL Server' and 'Web'</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP2 (Build: 61129.1)</generator><item><title>PowerShell PowerPack Download</title><link>http://sqlblog.com/blogs/buck_woody/archive/2010/04/07/powershell-powerpack-download.aspx</link><pubDate>Wed, 07 Apr 2010 13:30:20 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:24123</guid><dc:creator>BuckWoody</dc:creator><description>&lt;p&gt;I read &lt;a href="http://redmondmag.com/articles/2010/04/01/pack-some-power-in-your-shell.aspx" target="_blank"&gt;Jeffery Hicks’ article in this month’s Redmond Magazine&lt;/a&gt; on a new add-in for Windows PowerShell 2.0. It’s called the PowerShell Pack and it has a some great new features that I plan to put into place on my production systems as soon as I finished learning and testing them.&lt;/p&gt;  &lt;p&gt;You can &lt;a href="http://code.msdn.microsoft.com/PowerShellPack" target="_blank"&gt;download the pack here if you have PowerShell 2.0&lt;/a&gt;. I’m having a lot of fun with it, and I’ll blog about what I’m learning here in the near future, but you should check it out. The only issue I have with it right now is that you have to load a module and then use get-help to find out what it does, because I haven’t found a lot of other documentation so far.&lt;/p&gt;  &lt;p&gt;The most interesting modules for me are the ones that can run a command elevated (in &lt;strong&gt;PSUserTools&lt;/strong&gt;), the task scheduling commands (in &lt;strong&gt;TaskScheduler&lt;/strong&gt;) and the file system checks and tools (in &lt;strong&gt;FileSystem&lt;/strong&gt;). There’s also a way to create simple Graphical User Interface panels (in ). I plan to string all these together to install a management set of tools on my SQL Server Express Instances, giving the user “task buttons” to backup or restore a database, add or delete users and so on. Yes, I’ll be careful, and yes, I’ll make sure the user is allowed to do that.&lt;/p&gt;  &lt;p&gt;For now, I’m testing the download, but I thought I would share what I’m up to. If you have PowerShell 2.0 and you download the pack, let me know how you use it.&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;b&gt;&lt;i style="mso-bidi-font-style:normal;"&gt;&lt;span style="color:maroon;font-size:10pt;mso-bidi-font-size:11.0pt;mso-bidi-font-family:calibri;mso-ansi-language:en;"&gt;Script Disclaimer, for people who need to be told this sort of thing: &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;b&gt;&lt;i style="mso-bidi-font-style:normal;"&gt;&lt;span style="color:maroon;font-size:10pt;mso-bidi-font-family:calibri;mso-ansi-language:en;"&gt;           &lt;p&gt;&lt;/p&gt;         &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;i style="mso-bidi-font-style:normal;"&gt;&lt;span style="color:maroon;font-size:10pt;mso-bidi-font-family:calibri;mso-ansi-language:en;"&gt;&lt;font face="Calibri"&gt;Never trust any script, including those that you find here, until you understand exactly what it does and how it will act on your systems. Always check the script on a test system or Virtual Machine, not a production system. Yes, there are always multiple ways to do things, and this script may not work in every situation, for everything. It’s just a script, people. All scripts on this site are performed by a professional stunt driver on a closed course. Your mileage may vary. Void where prohibited. Offer good for a limited time only. Keep out of reach of small children. Do not operate heavy machinery while using this script. If you experience blurry vision, indigestion or diarrhea during the operation of this script, see a physician immediately.&lt;/font&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;</description></item><item><title>PowerShell: Read Excel to Create Inserts</title><link>http://sqlblog.com/blogs/buck_woody/archive/2010/03/18/powershell-read-excel-to-create-inserts.aspx</link><pubDate>Thu, 18 Mar 2010 12:09:36 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:23520</guid><dc:creator>BuckWoody</dc:creator><description>&lt;p&gt;I’m writing &lt;a href="http://www.informit.com/guides/content.aspx?g=sqlserver&amp;amp;seqNum=342" target="_blank"&gt;a series of articles on how to migrate “departmental” data into SQL Server&lt;/a&gt;. I also hold workshops on the entire process – from discovering that the data exists to the modeling process and then how to design the Extract, Transform and Load (ETL) process. Finally I write about (and teach) a few methods on actually moving the data.&lt;/p&gt;  &lt;p&gt;One of those options is to use PowerShell. There are a lot of ways even with that choice, but the one I show is to read two columns from the spreadsheet and output statements that would insert the data using a stored procedure. Of course, you could re-write this as INSERT statements, out to a text file for bcp, or even use a database connection in the script to move the data directly from Excel into SQL Server. &lt;/p&gt;  &lt;p&gt;This snippet won’t run on your system, of course – it assumes a Microsoft Office Excel 2007 spreadsheet located at &lt;strong&gt;c:\temp&lt;/strong&gt; called &lt;strong&gt;VendorList.xlsx&lt;/strong&gt;. It looks for a tab in that spreadsheet called &lt;strong&gt;Vendors&lt;/strong&gt;. The statement that does the writing just uses one column: &lt;strong&gt;Vendor Code&lt;/strong&gt;. Here’s the breakdown of what I’m doing:&lt;/p&gt;  &lt;p&gt;In the first block, I connect to Microsoft Office Excel. That connection string is specific to Excel 2007, so if you need a different version you’ll need to look that up.&lt;/p&gt;  &lt;p&gt;In the second block I set up a selection from the entire spreadsheet based on that tab. Note that if you’re only after certain data you shouldn’t get the whole spreadsheet – that’s just good practice.&lt;/p&gt;  &lt;p&gt;In the next block I create the text I want, inserting the Vendor Code field as I go.&lt;/p&gt;  &lt;p&gt;Finally I close the connection.&lt;/p&gt;  &lt;p&gt;Enjoy!&lt;/p&gt;  &lt;p&gt;&lt;font color="#408080"&gt;$ExcelConnection= New-Object -com &amp;quot;ADODB.Connection&amp;quot;      &lt;br /&gt;$ExcelFile=&amp;quot;c:\temp\VendorList.xlsx&amp;quot;       &lt;br /&gt;$ExcelConnection.Open(&amp;quot;Provider=Microsoft.ACE.OLEDB.12.0;`       &lt;br /&gt;Data Source=$ExcelFile;Extended Properties=Excel 12.0;&amp;quot;) &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#408080"&gt;$strQuery=&amp;quot;Select * from [Vendors$]&amp;quot;      &lt;br /&gt;$ExcelRecordSet=$ExcelConnection.Execute($strQuery) &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#408080"&gt;do {      &lt;br /&gt;Write-Host &amp;quot;EXEC sp_InsertVendors '&amp;quot; $ExcelRecordSet.Fields.Item(&amp;quot;Vendor Code&amp;quot;).Value &amp;quot;'&amp;quot;      &lt;br /&gt;$ExcelRecordSet.MoveNext()}       &lt;br /&gt;Until ($ExcelRecordSet.EOF) &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#408080"&gt;$ExcelConnection.Close()&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Calibri"&gt;&lt;b&gt;&lt;i style="mso-bidi-font-style:normal;"&gt;&lt;span style="color:maroon;font-size:10pt;mso-bidi-font-size:11.0pt;mso-bidi-font-family:calibri;mso-ansi-language:en;"&gt;Script Disclaimer, for people who need to be told this sort of thing: &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;b&gt;&lt;i style="mso-bidi-font-style:normal;"&gt;&lt;span style="color:maroon;font-size:10pt;mso-bidi-font-family:calibri;mso-ansi-language:en;"&gt;           &lt;p&gt;&lt;/p&gt;         &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;i style="mso-bidi-font-style:normal;"&gt;&lt;span style="color:maroon;font-size:10pt;mso-bidi-font-family:calibri;mso-ansi-language:en;"&gt;&lt;font face="Calibri"&gt;Never trust any script, including those that you find here, until you understand exactly what it does and how it will act on your systems. Always check the script on a test system or Virtual Machine, not a production system. All scripts on this site are performed by a professional stunt driver on a closed course. Your mileage may vary. Void where prohibited. Offer good for a limited time only. Keep out of reach of small children. Do not operate heavy machinery while using this script. If you experience blurry vision, indigestion or diarrhea during the operation of this script, see a physician immediately.&lt;/font&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;</description></item><item><title>Consolidation Strategy References</title><link>http://sqlblog.com/blogs/buck_woody/archive/2010/03/09/consolidation-strategy-references.aspx</link><pubDate>Tue, 09 Mar 2010 13:11:19 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:23031</guid><dc:creator>BuckWoody</dc:creator><description>&lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;I have a presentation that I give on SQL Server Consolidation Strategies, and in that presentation I talk about a few links that are useful. Here are some that I’ve found – feel free to comment on more, or if these links go stale:         &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;   &lt;p&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;&amp;#160;&lt;/font&gt;&lt;/p&gt; &lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;Consolidation using SQL Server: &lt;/font&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/ee692366.aspx"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://msdn.microsoft.com/en-us/library/ee692366.aspx&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;          &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;SQL Server Consolidation Guidance:&lt;span style="mso-spacerun:yes;"&gt;&amp;#160; &lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/ee819082.aspx"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://msdn.microsoft.com/en-us/library/ee819082.aspx&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;          &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;   &lt;p&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;&amp;#160;&lt;/font&gt;&lt;/p&gt; &lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;More references for SQL Server and Hyper-V: &lt;/font&gt;&lt;a href="http://www.sqlskills.com/BLOGS/KIMBERLY/post/Virtualization-with-SQL-Server.aspx"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://www.sqlskills.com/BLOGS/KIMBERLY/post/Virtualization-with-SQL-Server.aspx&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;          &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;Quick overview of Virtual Server licensing implications: &lt;/font&gt;&lt;a href="http://www.microsoft.com/uk/licensing/morethan250/learn/virtualisation.mspx"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://www.microsoft.com/uk/licensing/morethan250/learn/virtualisation.mspx&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;          &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;SQL Server and Hyper-V best practices: &lt;/font&gt;&lt;a href="http://sqlcat.com/whitepapers/archive/2008/10/03/running-sql-server-2008-in-a-hyper-v-environment-best-practices-and-performance-recommendations.aspx"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://sqlcat.com/whitepapers/archive/2008/10/03/running-sql-server-2008-in-a-hyper-v-environment-best-practices-and-performance-recommendations.aspx&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;          &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;High-Availability and Hyper-V: &lt;/font&gt;&lt;a href="http://technet.microsoft.com/en-us/magazine/2008.10.higha.aspx"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://technet.microsoft.com/en-us/magazine/2008.10.higha.aspx&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;          &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;Virtualization Calculator: &lt;/font&gt;&lt;a href="http://www.microsoft.com/Windowsserver2008/en/us/hyperv-calculators.aspx"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://www.microsoft.com/Windowsserver2008/en/us/hyperv-calculators.aspx&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;          &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;   &lt;p&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;&amp;#160;&lt;/font&gt;&lt;/p&gt; &lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;May not be current, but here’s a whitepaper from VMWare for SQL Server: &lt;/font&gt;&lt;a href="http://www.vmware.com/files/pdf/SQLServerWorkloads.pdf"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://www.vmware.com/files/pdf/SQLServerWorkloads.pdf&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;          &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;More information on SQL Server and VMWare: &lt;/font&gt;&lt;a href="http://blogs.msdn.com/cindygross/archive/2009/10/23/considerations-for-installing-sql-server-on-vmware.aspx"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://blogs.msdn.com/cindygross/archive/2009/10/23/considerations-for-installing-sql-server-on-vmware.aspx&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;          &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;   &lt;p&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;&amp;#160;&lt;/font&gt;&lt;/p&gt; &lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;Server Virtualization Validation Program: &lt;/font&gt;&lt;a href="http://www.windowsservercatalog.com/svvp.aspx?svvppage=svvp.htm"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://www.windowsservercatalog.com/svvp.aspx?svvppage=svvp.htm&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font size="3"&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;          &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;</description></item><item><title>Weekly Challenge – Tools for Thought Site</title><link>http://sqlblog.com/blogs/buck_woody/archive/2010/02/24/weekly-challenge-tools-for-thought-site.aspx</link><pubDate>Wed, 24 Feb 2010 14:15:06 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:22599</guid><dc:creator>BuckWoody</dc:creator><description>&lt;p&gt;A good friend of mine years ago showed me this web site: &lt;a href="http://www.rheingold.com/texts/tft/"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://www.rheingold.com/texts/tft/&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;. &lt;/p&gt;  &lt;p&gt;I took my lunch hour each day for a week or so and read each “page” on this site. It deals with computer technology history in a way that I had never read before. As I study each new trend in computer and database technology, I still find this site to be very relevant. &lt;/p&gt;  &lt;p&gt;So my challenge to you is to read this site, from beginning to end. Tell me what you think, and if it makes an impact on you.&lt;/p&gt;</description></item><item><title>Can’t Travel for Training? No Problem</title><link>http://sqlblog.com/blogs/buck_woody/archive/2010/02/17/can-t-travel-for-training-no-problem.aspx</link><pubDate>Wed, 17 Feb 2010 14:14:11 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:22386</guid><dc:creator>BuckWoody</dc:creator><description>&lt;p&gt;Right now it’s tough to get businesses to loosen the purse a little and get you out to some training. But you have features in the product that you’re not even able to use because you haven’t been trained. What’s a Data Professional to do?&lt;/p&gt;  &lt;p&gt;Why, go to free or low cost training over the web, of course! And we’ve got you covered. Here’s the scoop:&lt;/p&gt;  &lt;p&gt;   &lt;table style="border-bottom:medium none;border-left:medium none;margin:auto auto auto 5.4pt;border-collapse:collapse;border-top:medium none;border-right:medium none;mso-border-alt:solid black .5pt;mso-border-themecolor:text1;mso-yfti-tbllook:1184;mso-padding-alt:0in 5.4pt 0in 5.4pt;" class="MsoTableGrid" cellspacing="0" cellpadding="0"&gt;       &lt;tr style="height:0.6in;mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-row-margin-right:192.3pt;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:265.5pt;padding-right:5.4pt;height:0.6in;border-top:windowtext 1pt solid;border-right:windowtext 1pt solid;padding-top:0in;mso-border-top-alt:solid windowtext .5pt;mso-border-bottom-alt:solid windowtext .5pt;mso-border-right-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-family:'Segoe UI','sans-serif';color:#c0504d;mso-bidi-font-size:9.0pt;mso-themecolor:accent2;"&gt;                 &lt;p&gt;&lt;font size="3"&gt;&amp;#160;&lt;/font&gt;&lt;/p&gt;               &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;            &lt;p style="line-height:normal;margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-family:'Segoe UI','sans-serif';color:#1f497d;font-size:16pt;mso-bidi-font-size:9.0pt;mso-themecolor:text2;"&gt;Travel-Free Training&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family:'Segoe UI','sans-serif';color:#1f497d;font-size:16pt;mso-bidi-font-size:9.0pt;mso-themecolor:text2;mso-fareast-font-family:'Times New Roman';"&gt;               &lt;p&gt;&lt;/p&gt;             &lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;span style="font-family:'Segoe UI','sans-serif';color:#1f497d;mso-bidi-font-size:9.0pt;mso-themecolor:text2;mso-fareast-font-family:'Times New Roman';"&gt;&lt;font size="3"&gt;Microsoft offers SQL Server E-learning courses                 &lt;p&gt;&lt;/p&gt;               &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;span style="mso-no-proof:yes;"&gt;               &lt;p&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;&amp;#160;&lt;/font&gt;&lt;/p&gt;             &lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:#f0f0f0;background-color:transparent;border-top:#f0f0f0;border-right:#f0f0f0;mso-cell-special:placeholder;"&gt;           &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;&amp;#160;&lt;/font&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="height:720.85pt;mso-yfti-irow:1;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:457.8pt;padding-right:5.4pt;height:720.85pt;border-top:#f0f0f0;border-right:windowtext 1pt solid;padding-top:0in;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;" colspan="2"&gt;           &lt;p style="line-height:normal;margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;span style="font-family:'Segoe UI','sans-serif';color:#373737;font-size:9pt;mso-fareast-font-family:'Times New Roman';"&gt;               &lt;p&gt;&amp;#160;&lt;/p&gt;             &lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;span style="font-family:'Segoe UI','sans-serif';color:#373737;font-size:9pt;mso-fareast-font-family:'Times New Roman';"&gt;Microsoft makes it easier than ever to attend SQL Server 2008 training, at little to no cost, without any travel necessary.&lt;span style="mso-spacerun:yes;"&gt;&amp;#160; &lt;/span&gt;Subject matter includes: administration, architecture, database, programming and security.&lt;span style="mso-spacerun:yes;"&gt;&amp;#160; &lt;/span&gt;Click the courses below to see full descriptions or visit &lt;a href="http://learning.microsoft.com/Manager/Catalog.aspx?clang=en-US&amp;amp;dtype=Table&amp;amp;Sort=Relevancy&amp;amp;page=1&amp;amp;cats=%7b1ba8b41f-c9fb-4e07-87e7-3d3943a51600%7d%3a%7b261ba873-f3ab-420e-96d6-e3004596a551%7d%3a%7b0226cd58-6016-452c-b8d2-4d59efcb2870%7d%3a%7b337eb1e4-98e6-480a-a5fb-8b7b3a282c9c%7d"&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;Microsoft Learning&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-family:'Segoe UI','sans-serif';font-size:9pt;mso-fareast-font-family:'Times New Roman';"&gt;&lt;font color="#000000"&gt; to browse the course catalog.&lt;span style="color:#373737;"&gt;                   &lt;p&gt;&lt;/p&gt;                 &lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;span style="font-family:'Segoe UI','sans-serif';color:#373737;font-size:9pt;mso-fareast-font-family:'Times New Roman';"&gt;               &lt;p&gt;&amp;#160;&lt;/p&gt;             &lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;b style="mso-bidi-font-weight:normal;"&gt;&lt;span style="font-family:'Segoe UI','sans-serif';color:#373737;font-size:9pt;mso-fareast-font-family:'Times New Roman';"&gt;                 &lt;p&gt;&amp;#160;&lt;/p&gt;               &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;            &lt;table style="border-bottom:medium none;border-left:medium none;width:443.1pt;border-collapse:collapse;border-top:medium none;border-right:medium none;mso-border-alt:solid #4bacc6 1.0pt;mso-border-themecolor:accent5;mso-yfti-tbllook:1184;mso-padding-alt:0in 5.4pt 0in 5.4pt;" class="MsoTableLightListAccent5" cellspacing="0" cellpadding="0"&gt;               &lt;tr style="mso-yfti-irow:-1;mso-yfti-firstrow:yes;"&gt;                 &lt;td style="border-bottom:#f0f0f0;border-left:#4bacc6 1pt solid;padding-bottom:0in;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;background:#4bacc6;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-top-themecolor:accent5;mso-border-left-themecolor:accent5;mso-background-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:5;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;mso-no-proof:yes;"&gt;&lt;font face="Calibri"&gt;Course Title                           &lt;p&gt;&lt;/p&gt;                         &lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;background:#4bacc6;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-top-themecolor:accent5;mso-background-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:1;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;font face="Calibri"&gt;Type                           &lt;p&gt;&lt;/p&gt;                         &lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;background:#4bacc6;border-top:#4bacc6 1pt solid;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-top-themecolor:accent5;mso-background-themecolor:accent5;mso-border-right-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:1;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;font face="Calibri"&gt;Price                           &lt;p&gt;&lt;/p&gt;                         &lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:0;"&gt;                 &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:68;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=01fd1277-d731-48c0-a182-91b5b10e2a77&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Clinic 10259: SQL Server 2008: Database Infrastructure and Scalability&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-top-themecolor:accent5;mso-border-bottom-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;Free &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:1;"&gt;                 &lt;td style="border-bottom:#f0f0f0;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;mso-border-left-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:4;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=4546db2b-8c34-4c1c-8bd6-48917ccc9255&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Clinic 10258: SQL Server 2008: Upgrade and Application Compatibility&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-right-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;Free &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:2;"&gt;                 &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:68;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=c41a30e9-91d2-4200-9a56-248d9b41b192&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Course 10156: Automating Administrative Tasks in Microsoft SQL Server 2008&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-top-themecolor:accent5;mso-border-bottom-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;$39.99 &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:3;"&gt;                 &lt;td style="border-bottom:#f0f0f0;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;mso-border-left-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:4;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=45d83c5d-3aee-4138-b4e8-e8f1098b906f&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Course 10152: Creating and Managing Databases in Microsoft SQL Server 2008&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-right-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;$39.99 &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:4;"&gt;                 &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:68;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=c16b0f87-c767-4a74-baeb-12973fddf49f&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Course 10155: Managing Security in Microsoft SQL Server 2008&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-top-themecolor:accent5;mso-border-bottom-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;$39.99 &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:5;"&gt;                 &lt;td style="border-bottom:#f0f0f0;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;mso-border-left-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:4;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=dd29ae68-6cb9-44cd-8d30-3d9b12670c11&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Course 10154: Backing Up and Restoring Databases in Microsoft SQL Server 2008&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-right-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;$39.99 &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:6;"&gt;                 &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:68;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=26ea5f25-ec58-4568-a2bd-84ccb40e9cfc&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Course 10151: Installing and Configuring Microsoft SQL Server 2008&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-top-themecolor:accent5;mso-border-bottom-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;$39.99 &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:7;"&gt;                 &lt;td style="border-bottom:#f0f0f0;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;mso-border-left-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:4;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=bf6e7e8d-b0ef-417e-b2ea-cdee44c1b66a&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Course 10153: Planning, Creating, and Optimizing Indexes in Microsoft SQL Server 2008&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-right-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;$39.99 &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:8;"&gt;                 &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:68;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=92adf75c-a765-461d-b0f8-61c3542d0362&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Course 10158: Implementing High Availability and Replication in Microsoft SQL Server 2008&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-top-themecolor:accent5;mso-border-bottom-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;$39.99 &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:9;"&gt;                 &lt;td style="border-bottom:#f0f0f0;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;mso-border-left-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:4;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=9cdf0f44-fc1f-406d-a454-d7fa3b302efb&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Course 10157: Monitoring and Controlling Resources in Microsoft SQL Server 2008&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-right-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;$39.99 &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:10;"&gt;                 &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:68;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=58ce9b16-e619-402b-ab2e-66caa678e574&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Clinic 10164: Essential SQL Server 2008 for Developers&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-top-themecolor:accent5;mso-border-bottom-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;Free &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:11;"&gt;                 &lt;td style="border-bottom:#f0f0f0;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;mso-border-left-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:4;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=fed36581-4a07-4988-b7f4-3a51d5cd5d6d&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Clinic 6258: New Features Of Microsoft SQL Server 2008 Reporting Services&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-right-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;Free &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:12;"&gt;                 &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:68;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=8c94655d-c39d-4cff-b8cc-607b57f86219&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Clinic 6189: What's New in Microsoft SQL Server 2008 for Business Intelligence&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-top-themecolor:accent5;mso-border-bottom-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;Free &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:13;"&gt;                 &lt;td style="border-bottom:#f0f0f0;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;mso-border-left-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:4;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=3410bab5-6482-4583-bd73-86f5a516cb22&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Clinic 6188: What's New in Microsoft SQL Server 2008 for Enterprise Data Platform&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-right-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;Free &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="height:39.05pt;mso-yfti-irow:14;"&gt;                 &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;height:39.05pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="text-align:center;margin:0in 0in 10pt;mso-yfti-cnfc:68;" class="MsoNormal" align="center"&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;&lt;a href="http://www.microsoftelearning.com/eLearning/gotoResource.aspx?resourceId=cb7058a2-4d7f-44cd-8a6a-463ed771dfbc&amp;amp;language=en-US&amp;amp;country=US&amp;amp;locale=en-US&amp;amp;style=Learning"&gt;&lt;span style="color:black;mso-themecolor:text1;"&gt;&lt;u&gt;&lt;font face="Calibri"&gt;Clinic 6190: What's New in Microsoft SQL Server 2008 for Database Development&lt;/font&gt;&lt;/u&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;height:39.05pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-top-themecolor:accent5;mso-border-bottom-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;E-Learning Course &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;height:39.05pt;border-top:#4bacc6 1pt solid;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-themecolor:accent5;"&gt;                   &lt;p style="margin:0in 0in 10pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;font face="Calibri"&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:11.0pt;mso-themecolor:text1;"&gt;Free &lt;/span&gt;&lt;span style="line-height:115%;color:black;font-size:10pt;mso-bidi-font-size:12.0pt;mso-themecolor:text1;"&gt;                         &lt;p&gt;&lt;/p&gt;                       &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:15;"&gt;                 &lt;td style="border-bottom:#f0f0f0;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;mso-border-left-themecolor:accent5;"&gt;&lt;font face="Calibri"&gt;&lt;/font&gt;&lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#f0f0f0;padding-top:0in;"&gt;&lt;font face="Calibri"&gt;&lt;/font&gt;&lt;/td&gt;                  &lt;td style="border-bottom:#f0f0f0;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#f0f0f0;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-right-themecolor:accent5;"&gt;&lt;font face="Calibri"&gt;&lt;/font&gt;&lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow:16;mso-yfti-lastrow:yes;"&gt;                 &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#4bacc6 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:69.52%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-themecolor:accent5;"&gt;&lt;font face="Calibri"&gt;&lt;/font&gt;&lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:17.28%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#f0f0f0;padding-top:0in;mso-border-top-themecolor:accent5;mso-border-bottom-themecolor:accent5;"&gt;&lt;font face="Calibri"&gt;&lt;/font&gt;&lt;/td&gt;                  &lt;td style="border-bottom:#4bacc6 1pt solid;border-left:#f0f0f0;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:13.2%;padding-right:5.4pt;border-top:#4bacc6 1pt solid;border-right:#4bacc6 1pt solid;padding-top:0in;mso-border-themecolor:accent5;"&gt;&lt;font face="Calibri"&gt;&lt;/font&gt;&lt;/td&gt;               &lt;/tr&gt;             &lt;/table&gt;            &lt;p style="margin:auto 0in;" class="style21"&gt;&lt;span style="font-family:'Segoe UI','sans-serif';color:#595959;font-size:9pt;"&gt;               &lt;p&gt;&lt;font face="Calibri"&gt;&lt;/font&gt;&lt;/p&gt;             &lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="height:49.9pt;mso-yfti-irow:2;mso-yfti-lastrow:yes;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0in;background-color:transparent;padding-left:5.4pt;width:457.8pt;padding-right:5.4pt;height:49.9pt;border-top:#f0f0f0;border-right:windowtext 1pt solid;padding-top:0in;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;" colspan="2"&gt;           &lt;p style="text-align:center;margin:0in 0in 10pt;" class="MsoNormal" align="center"&gt;&lt;span style="line-height:115%;font-family:'Arial','sans-serif';color:#373737;font-size:8pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Microsoft confidential information. © 2010 Microsoft Corporation. All right reserved.               &lt;p&gt;&lt;/p&gt;             &lt;/span&gt;&lt;/p&gt;            &lt;p style="text-align:center;line-height:normal;margin:0in 0in 0pt;" class="MsoNormal" align="center"&gt;&lt;span style="font-family:'Arial','sans-serif';color:#373737;font-size:8pt;mso-no-proof:yes;"&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;"&gt;               &lt;p&gt;&lt;/p&gt;             &lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;     &lt;/table&gt;&lt;/p&gt;</description></item><item><title>Tools and Processes for “Fitting it all in”</title><link>http://sqlblog.com/blogs/buck_woody/archive/2010/01/18/tools-and-processes-for-fitting-it-all-in.aspx</link><pubDate>Mon, 18 Jan 2010 14:42:05 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:21147</guid><dc:creator>BuckWoody</dc:creator><description>&lt;p&gt;Most data professionals I’ve met work in two modes: we plan for our day, and we react to the situations around us. I’m staring at my list of things that I need to do today right now, which is my planned work. Of course, I have no idea how much of that will really get done – it’s optimistic to be sure. On the other hand I have several systems I manage, and at any moment one of them or the people that interface with them may “change state” such that I need to give them some attention.&lt;/p&gt;  &lt;p&gt;So how do I meld the two? Sometimes it can be quite difficult. I’m constantly working through my list in my mind, re-arranging what I’m focusing on based on what I perceive as the highest need. There are, however, some tools that I use each day to help me manage the workflow.&lt;/p&gt;  &lt;p&gt;I use Outlook for tracking everything, since it has a task list (my primary tracking), a calendar, mail and so on. Also I can share the information, it’s on-line so I can see it anywhere, and I can even take it offline onto the plane this week when I fly out of town. &lt;/p&gt;  &lt;p&gt;For the “ad-hoc” work, I rely on a script library, which I keep as SQL Server Management Studio projects. I keep those scripts and projects backed using Microsoft Live Mesh, which synchronizes those files (along with a few other critical files and my IE Favorites) across not only my laptop and primary systems, but even with my Virtual Machines. &lt;/p&gt;  &lt;p&gt;Also for my SQL Server systems I use the Standard Reports I’ve blogged about here. I also use Greg Larsen’s Database Dashboard, and a series of PowerShell scripts that work across my systems, alerting me to any problems. Of course I’m using SQL Server Agent Jobs quite a bit, and I also use Alerts and some Perfmon automation for my monthly baselining.&lt;/p&gt;  &lt;p&gt;So – is this your experience as well? Do you get driven by both planned and unplanned work? What tools and processes do you use to keep it all straight with your SQL Server Instances?&lt;/p&gt;</description></item><item><title>SQL Server Chargeback Strategies</title><link>http://sqlblog.com/blogs/buck_woody/archive/2009/12/29/sql-server-chargeback-strategies.aspx</link><pubDate>Tue, 29 Dec 2009 14:47:37 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:20322</guid><dc:creator>BuckWoody</dc:creator><description>&lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;It seems the more things change the more they stay the same. One of the things I used to create on the mainframe system when I started years ago was a “charge-back” system.&lt;span style="mso-spacerun:yes;"&gt;&amp;#160; &lt;/span&gt;It tracked the time and resources used by the employees so that we could charge their department money for the time they spent on the (very expensive) mainframe. &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;When LAN systems came out, IT departments were just charged as a general expense. But these days, with shrinking budgets and deeper scrutiny on how resources are used, this idea has come back around. IT and Data Systems managers are keen to show the organization that it isn’t free to operate a database system.         &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;   &lt;p&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;&amp;#160;&lt;/font&gt;&lt;/p&gt; &lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;font size="3"&gt;From time to time I get asked if it is possible to do a chargeback system for SQL Server. And it is! In fact, I wrote a couple of articles on how to do that right here:         &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;a href="http://www.informit.com/guides/content.aspx?g=sqlserver&amp;amp;seqNum=311"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://www.informit.com/guides/content.aspx?g=sqlserver&amp;amp;seqNum=311&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;    &lt;p&gt;&lt;/p&gt; &lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;a href="http://www.informit.com/guides/content.aspx?g=sqlserver&amp;amp;seqNum=312"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://www.informit.com/guides/content.aspx?g=sqlserver&amp;amp;seqNum=312&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font size="3"&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;          &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;</description></item><item><title>Data is Just Data – Information – that’s another thing!</title><link>http://sqlblog.com/blogs/buck_woody/archive/2009/12/28/data-is-just-data-information-that-s-another-thing.aspx</link><pubDate>Mon, 28 Dec 2009 15:09:46 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:20283</guid><dc:creator>BuckWoody</dc:creator><description>&lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;Many data professionals deal in the storage, retrieval and display of data from a central set of systems. But there is another side to our craft, and I think it’s the most rewarding part of the job for both the professional and the organization they serve. &lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;Data, in and of itself, isn’t very interesting. It’s when that data gains meaning that the job becomes a lot more fun. Of course you have to know your data to begin with, and it’s also important to know the business side of your organization. &lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font color="#000000" size="3" face="Calibri"&gt;But visualization is important as well. Knowing how to create an interesting report, while not my main job, is a fun part of working with my systems. And from time to time I run across new ways to see and explore data, like this new tool from Microsoft Research: &lt;/font&gt;&lt;a href="http://www.getpivot.com/"&gt;&lt;u&gt;&lt;font color="#0000ff" size="3" face="Times New Roman"&gt;http://www.getpivot.com/&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font size="3"&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;. &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font size="3"&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin:0in 0in 0pt;" class="MsoNormal"&gt;&lt;font size="3"&gt;&lt;font color="#000000"&gt;&lt;font face="Calibri"&gt;Make sure you check that one out, and spend a little time learning how to show the data underneath all those servers and databases you control.         &lt;p&gt;&lt;/p&gt;       &lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;</description></item><item><title>The Top 20 Questions in Database Design</title><link>http://sqlblog.com/blogs/buck_woody/archive/2009/12/17/the-top-20-questions-in-database-design.aspx</link><pubDate>Thu, 17 Dec 2009 14:18:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:20063</guid><dc:creator>BuckWoody</dc:creator><description>&lt;P&gt;&lt;SPAN style="FONT-FAMILY:'Calibri','sans-serif';COLOR:black;FONT-SIZE:11pt;mso-fareast-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;SPAN style="COLOR:black;"&gt;&lt;o:p&gt;I'm still re-reading the "Fourth Paradigm" book by Microsoft Research, and one section continues to intrigues me. There's a part where the book explains database design, and puts forth that the most important thing when you're designing large data sets is to find out the "Top Twenty Questions" the database has to answer. The quote is this:&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-FAMILY:'Calibri','sans-serif';COLOR:black;FONT-SIZE:11pt;mso-fareast-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;SPAN style="COLOR:black;"&gt;&lt;o:p&gt;&lt;FONT color=#0000ff&gt;&amp;nbsp;"Most selections involving human choices follow a 'long tail,' or so-called 1/f distribution, it is clear that the relative information in the queries ranked by importance is logarithmic, so the gain realized by going from approximately 20 (24.5) to 100 (26.5) is quite modest."&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-FAMILY:'Calibri','sans-serif';COLOR:black;FONT-SIZE:11pt;mso-fareast-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;SPAN style="COLOR:black;"&gt;&lt;o:p&gt;I find this facinating - it just doesn't seem to make "common" sense. Surely you have to ask a lot more questions than that to "get" the shape of the data? I researched the mathematical concept he's describing (&lt;A href="http://www.scholarpedia.org/article/1/f_noise"&gt;http://www.scholarpedia.org/article/1/f_noise&lt;/A&gt;), and I'll try some experiments here. I'll let you know what I uncover!&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-FAMILY:'Calibri','sans-serif';COLOR:black;FONT-SIZE:11pt;mso-fareast-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;SPAN style="COLOR:black;"&gt;&lt;o:p&gt;&amp;nbsp;Here's the link for the book if you want to read it: &lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-FAMILY:'Calibri','sans-serif';COLOR:black;FONT-SIZE:11pt;mso-fareast-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;SPAN style="COLOR:black;"&gt;&lt;o:p&gt;&lt;A href="http://research.microsoft.com/en-us/collaboration/fourthparadigm/4th_paradigm_book_complete_lr.pdf"&gt;http://research.microsoft.com/en-us/collaboration/fourthparadigm/4th_paradigm_book_complete_lr.pdf&lt;/A&gt; &lt;BR&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/SPAN&gt;</description></item><item><title>The Magical World of SQL Server Licensing</title><link>http://sqlblog.com/blogs/buck_woody/archive/2009/11/26/the-magical-world-of-sql-server-licensing.aspx</link><pubDate>Thu, 26 Nov 2009 15:15:30 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:19221</guid><dc:creator>BuckWoody</dc:creator><description>&lt;p&gt;Licensing. Sometimes it feels like to you need a specialized degree, a black robe and a secret handshake to &lt;em&gt;really&lt;/em&gt; understand it – but it’s not quite that bad.&lt;/p&gt;  &lt;p&gt;There are several licensing “models”, from just buying SQL Server off the shelf to Software Assurance, or SA, where you just install to your heart’s content and then “true up” or pay at the end of a certain period. &lt;/p&gt;  &lt;p&gt;But it’s best to go to the source. There are three guides I use:&lt;/p&gt;  &lt;p&gt;This is the simplest guide: &lt;a href="http://download.microsoft.com/download/1/e/6/1e68f92c-f334-4517-b610-e4dee946ef91/2008%20SQL%20Licensing%20Overview%20final.docx"&gt;http://download.microsoft.com/download/1/e/6/1e68f92c-f334-4517-b610-e4dee946ef91/2008%20SQL%20Licensing%20Overview%20final.docx&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;This is the more complicated but more complete guide: &lt;a href="http://download.microsoft.com/download/6/F/8/6F84A9FE-1E5C-44CC-87BB-C236BFCBA4DF/SQLServer2008_LicensingGuide.pdf"&gt;http://download.microsoft.com/download/6/F/8/6F84A9FE-1E5C-44CC-87BB-C236BFCBA4DF/SQLServer2008_LicensingGuide.pdf&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;And this is the phone number I call when I’m stumped: &lt;font color="#008080"&gt;(800) 426-9400&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;They key is to pay for what you use. All of us have had Instance “pop up” in the organization without our knowledge. If that happens, contact that number and ask what to do. Nobody will come to your organization and take you to court – in fact, you’ll find that we’ll work with you to help you stay current. We’re all headed the same direction – trying to make sure SQL Server solves business problems in your company.&lt;/p&gt;</description></item></channel></rss>