<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.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>intellectually constipated : SQL Server 2008</title><link>http://blogs.msdn.com/patrickgallucci/archive/tags/SQL+Server+2008/default.aspx</link><description>Tags: SQL Server 2008</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>The few, the proud, the fortunate. Microsoft Certified Architect Program</title><link>http://blogs.msdn.com/patrickgallucci/archive/2008/02/29/the-few-the-proud-the-fortunate-microsoft-certified-architect-program.aspx</link><pubDate>Fri, 29 Feb 2008 22:51:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7958895</guid><dc:creator>Patrick Gallucci</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/patrickgallucci/comments/7958895.aspx</comments><wfw:commentRss>http://blogs.msdn.com/patrickgallucci/commentrss.aspx?PostID=7958895</wfw:commentRss><wfw:comment>http://blogs.msdn.com/patrickgallucci/rsscomments.aspx?PostID=7958895</wfw:comment><description>And I really do mean fortunate. On March 10th I am to embark in five weeks of some of the toughest technical training that I will do during my career. I have been to week long ramp-ups and boot-camps to help facilitate learning during my career. But this...(&lt;a href="http://blogs.msdn.com/patrickgallucci/archive/2008/02/29/the-few-the-proud-the-fortunate-microsoft-certified-architect-program.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7958895" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/sql+server+2005/default.aspx">sql server 2005</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/SQL+Server+2008/default.aspx">SQL Server 2008</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/Katmai/default.aspx">Katmai</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/Microsoft+Certified+Architect/default.aspx">Microsoft Certified Architect</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/Training/default.aspx">Training</category></item><item><title>SQL Server Function to merge a date with a time</title><link>http://blogs.msdn.com/patrickgallucci/archive/2007/11/18/sql-server-function-to-merge-a-date-with-a-time.aspx</link><pubDate>Mon, 19 Nov 2007 05:03:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6385343</guid><dc:creator>Patrick Gallucci</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/patrickgallucci/comments/6385343.aspx</comments><wfw:commentRss>http://blogs.msdn.com/patrickgallucci/commentrss.aspx?PostID=6385343</wfw:commentRss><wfw:comment>http://blogs.msdn.com/patrickgallucci/rsscomments.aspx?PostID=6385343</wfw:comment><description>I use this when I need to join two fields. One has a date, the other has a time. &amp;#160; IF EXISTS ( SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N '[util].[uf_MergeDate2Time]' ) AND type in (N 'FN' , N 'IF' , N 'TF' , N 'FS' , N 'FT' )) DROP...(&lt;a href="http://blogs.msdn.com/patrickgallucci/archive/2007/11/18/sql-server-function-to-merge-a-date-with-a-time.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=6385343" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/sql+server+2005/default.aspx">sql server 2005</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/Business+Intelligence/default.aspx">Business Intelligence</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/SQL+Function/default.aspx">SQL Function</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/SQL+Server+2008/default.aspx">SQL Server 2008</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/Katmai/default.aspx">Katmai</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/Data+Warehouse/default.aspx">Data Warehouse</category></item><item><title>SQL Server Function to get the Hour of the Year</title><link>http://blogs.msdn.com/patrickgallucci/archive/2007/09/25/sql-server-function-to-get-the-hour-of-the-year.aspx</link><pubDate>Tue, 25 Sep 2007 23:32:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5129083</guid><dc:creator>Patrick Gallucci</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/patrickgallucci/comments/5129083.aspx</comments><wfw:commentRss>http://blogs.msdn.com/patrickgallucci/commentrss.aspx?PostID=5129083</wfw:commentRss><wfw:comment>http://blogs.msdn.com/patrickgallucci/rsscomments.aspx?PostID=5129083</wfw:comment><description>This function returns an integer of the hour of the year passed as a variable. IF EXISTS ( SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N '[util].[uf_GetHourOfYear]' ) AND type IN (N 'FN' , N 'IF' , N 'TF' , N 'FS' , N 'FT' )) DROP FUNCTION [util].[uf_GetHourOfYear]...(&lt;a href="http://blogs.msdn.com/patrickgallucci/archive/2007/09/25/sql-server-function-to-get-the-hour-of-the-year.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5129083" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/sql+server+2005/default.aspx">sql server 2005</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/SQL+Function/default.aspx">SQL Function</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/SQL+Server+2008/default.aspx">SQL Server 2008</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/Katmai/default.aspx">Katmai</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/Data+Warehouse/default.aspx">Data Warehouse</category></item><item><title>SQL Server Function to get the Hour of the Month</title><link>http://blogs.msdn.com/patrickgallucci/archive/2007/09/25/sql-server-function-to-get-the-hour-of-the-month.aspx</link><pubDate>Tue, 25 Sep 2007 23:30:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5128979</guid><dc:creator>Patrick Gallucci</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/patrickgallucci/comments/5128979.aspx</comments><wfw:commentRss>http://blogs.msdn.com/patrickgallucci/commentrss.aspx?PostID=5128979</wfw:commentRss><wfw:comment>http://blogs.msdn.com/patrickgallucci/rsscomments.aspx?PostID=5128979</wfw:comment><description>This function returns an integer of the hour of the month passed as a variable. IF EXISTS ( SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N '[util].[uf_GetHourOfMonth]' ) AND type IN (N 'FN' , N 'IF' , N 'TF' , N 'FS' , N 'FT' )) DROP FUNCTION...(&lt;a href="http://blogs.msdn.com/patrickgallucci/archive/2007/09/25/sql-server-function-to-get-the-hour-of-the-month.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5128979" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/sql+server+2005/default.aspx">sql server 2005</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/SQL+Function/default.aspx">SQL Function</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/SQL+Server+2008/default.aspx">SQL Server 2008</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/Data+Warehouse/default.aspx">Data Warehouse</category></item><item><title>SQL Server Function to return half year number of days.</title><link>http://blogs.msdn.com/patrickgallucci/archive/2007/09/24/sql-server-function-to-return-half-year-number-of-days.aspx</link><pubDate>Mon, 24 Sep 2007 17:29:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5098631</guid><dc:creator>Patrick Gallucci</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/patrickgallucci/comments/5098631.aspx</comments><wfw:commentRss>http://blogs.msdn.com/patrickgallucci/commentrss.aspx?PostID=5098631</wfw:commentRss><wfw:comment>http://blogs.msdn.com/patrickgallucci/rsscomments.aspx?PostID=5098631</wfw:comment><description>This function returns an integer of the number of days in the half year. &amp;#xA0; IF EXISTS ( SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N '[util].[uf_GetHalfYearDays]' ) AND type IN (N 'FN' , N 'IF' , N 'TF' , N 'FS' , N 'FT' )) DROP FUNCTION...(&lt;a href="http://blogs.msdn.com/patrickgallucci/archive/2007/09/24/sql-server-function-to-return-half-year-number-of-days.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5098631" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/sql+server+2005/default.aspx">sql server 2005</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/SQL+Function/default.aspx">SQL Function</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/SQL+Server+2008/default.aspx">SQL Server 2008</category></item><item><title>SQL Server 2008 (Katmai) July CTP - Do you feel the need for speed?</title><link>http://blogs.msdn.com/patrickgallucci/archive/2007/07/31/sql-server-2008-katmai-july-ctp-do-you-feel-the-need-for-speed.aspx</link><pubDate>Wed, 01 Aug 2007 05:50:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4159196</guid><dc:creator>Patrick Gallucci</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/patrickgallucci/comments/4159196.aspx</comments><wfw:commentRss>http://blogs.msdn.com/patrickgallucci/commentrss.aspx?PostID=4159196</wfw:commentRss><wfw:comment>http://blogs.msdn.com/patrickgallucci/rsscomments.aspx?PostID=4159196</wfw:comment><description>Here it is...the July CTP for SQL Server 2008. I was going to start the download tonight and install in the morning...but I forgot I was on Verizon FIOS...man I love that Fiber! Download your copy now! https://connect.microsoft.com/SQLServer/content/content.aspx?ContentID=5470...(&lt;a href="http://blogs.msdn.com/patrickgallucci/archive/2007/07/31/sql-server-2008-katmai-july-ctp-do-you-feel-the-need-for-speed.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=4159196" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/SQL+Server+2008/default.aspx">SQL Server 2008</category><category domain="http://blogs.msdn.com/patrickgallucci/archive/tags/Katmai/default.aspx">Katmai</category></item></channel></rss>