<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>THE AMCOM TECHNOLOGY BLOG - Database</title>
			<link>http://www.amcomtech.net/client/index.cfm</link>
			<description>Tech Tips from the Trenches</description>
			<language>en-us</language>
			<pubDate>Tue, 07 Sep 2010 15:52:08 -0700</pubDate>
			<lastBuildDate>Mon, 02 Mar 2009 19:27:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>admin@amcomtech.net</managingEditor>
			<webMaster>admin@amcomtech.net</webMaster>
			
			
			
			
			
			<item>
				<title>SQL Server 2005&apos;s Correlated Joins</title>
				<link>http://www.amcomtech.net/client/index.cfm/2009/3/2/SQL-Server-2005s-Correlated-Joins</link>
				<description>
				
				Read an article on an interesting new feature in SQL Server 2005, correlated joins using the APPLY statement.
&lt;P&gt;
In SQL Server 2000, you can&apos;t do something like this:
&lt;code&gt;
INNER JOIN
 (SELECT TOP 3 * FROM LVCall WHERE LVTransactionID = lvt.ID ORDER BY CreateDate DESC) lvc on lvc.LVTransactionID = lvt.ID
&lt;/code&gt;
&lt;P&gt;
But, in 2005 you can do this
&lt;P&gt;
&lt;code&gt;
FROM
 LVTransaction lvt
OUTER APPLY 
(
 SELECT top 3 * 
 FROM LVCall 
 WHERE lvtransactionID = lvt.ID 
 Order By CreateDate DESC
 ) as lvc
&lt;/code&gt;
&lt;P&gt;
&lt;a href=&quot;http://www.sqlservercentral.com/articles/T-SQL/63115/&quot;&gt;Read the full article...&lt;/a&gt;
				
				</description>
						
				
				<category>Database</category>				
				
				<pubDate>Mon, 02 Mar 2009 19:27:00 -0700</pubDate>
				<guid>http://www.amcomtech.net/client/index.cfm/2009/3/2/SQL-Server-2005s-Correlated-Joins</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>MS SQL Server 2008 SP1 now in CTP</title>
				<link>http://www.amcomtech.net/client/index.cfm/2009/3/2/MS-SQL-Server-2008-SP1-now-in-CTP</link>
				<description>
				
				We&apos;ve been waiting for awhile on this to come about. The big feature add with this version is they added something called &quot;Slipstream&quot; which makes it easier to take your base SQL 2K8 install and combine it with hotfixes and service packs (you can also uninstall service packs without uninstalling everything).
&lt;P&gt;

&lt;a href&quot;http://www.microsoft.com/downloads/details.aspx?FamilyID=6f26fc45-f0ca-49cf-a6ee-840c7e8bb8af&quot;&gt;Download SQL Server 2008 SP1 CTP&lt;/a&gt;
				
				</description>
						
				
				<category>Database</category>				
				
				<category>Software Development</category>				
				
				<pubDate>Mon, 02 Mar 2009 13:41:00 -0700</pubDate>
				<guid>http://www.amcomtech.net/client/index.cfm/2009/3/2/MS-SQL-Server-2008-SP1-now-in-CTP</guid>
				
			</item>
			
		 	
			</channel></rss>