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

<channel>
	<title>Rickey Whitworth&#039;s Blog &#187; SQL Server</title>
	<atom:link href="http://www.whitworth.org/category/ms-servers/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.whitworth.org</link>
	<description>insights from managing a microsoft enterprise infrastructure</description>
	<lastBuildDate>Tue, 22 Jun 2010 17:12:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ten Common SQL Server Reporting Services Challenges and Solutions</title>
		<link>http://www.whitworth.org/2009/10/22/ten-common-sql-server-reporting-services-challenges-and-solutions/</link>
		<comments>http://www.whitworth.org/2009/10/22/ten-common-sql-server-reporting-services-challenges-and-solutions/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 03:11:26 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Reporting Services]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/10/22/ten-common-sql-server-reporting-services-challenges-and-solutions/</guid>
		<description><![CDATA[Great article. I have tried to solve several of these problems before with no success. 
In every business there are several different groups of report users, from chief executives, to business analysts, to operational staff, who all need access to reliable and current data in order to track overall business performance, investigate the effectiveness of [...]]]></description>
			<content:encoded><![CDATA[<p>Great article. I have tried to solve several of these problems before with no success. </p>
<blockquote><p>In every business there are several different groups of report users, from chief executives, to business analysts, to operational staff, who all need access to reliable and current data in order to track overall business performance, investigate the effectiveness of individual business functions, or simply for ad-hoc day-to-day reporting. </p>
<p>In most organizations, at least some attempt has been made to meet these reporting needs. Historically, however, the problem has been that the available reports have not always been up-to-date, or even accurate. Furthermore, individual departments have tended to adopt a &quot;silo&quot; approach, using different tools/systems to create reports that are useful within their silo, but not necessarily consistent or compatible with those produced by other departments. In many cases, there doesn&#8217;t even exist a shared understanding of the business data that underpin these reports.</p>
<p>SQL Server Reporting Services (SSRS), when it arrived, offered a much-needed means to centralize and standardize reporting across the business, and it has largely delivered. Having used SSRS 2005 for the past 4 years, I&#8217;ve found that, with a little effort, it can satisfy most business, ad-hoc, embedded, portal integration, web, and custom reporting needs. However, I&#8217;ve also found that small &quot;gotchas&quot; can halt progress and cause considerable frustration, as it&#8217;s not always easy to find ways round them in the documentation.</p>
</blockquote>
<p><a href="http://www.simple-talk.com/sql/reporting-services/ten-common-sql-server-reporting-services-challenges-and-solutions/">Ten Common SQL Server Reporting Services Challenges and Solutions</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/10/22/ten-common-sql-server-reporting-services-challenges-and-solutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Use Computed Column in SQL Server Databases with Computed-Column Samples</title>
		<link>http://www.whitworth.org/2009/09/29/how-to-use-computed-column-in-sql-server-databases-with-computed-column-samples/</link>
		<comments>http://www.whitworth.org/2009/09/29/how-to-use-computed-column-in-sql-server-databases-with-computed-column-samples/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 14:04:11 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/09/29/how-to-use-computed-column-in-sql-server-databases-with-computed-column-samples/</guid>
		<description><![CDATA[Very detailed description of computed columns in SQL Server, with plenty of examples.&#160; 
How to Use Computed Column SQL Server Databases
What is Computed Column ?
If you have columns in your sql database tables such that their values depend on other columns, you may use computed columns.     Using computed columns or calculated [...]]]></description>
			<content:encoded><![CDATA[<p>Very detailed description of computed columns in SQL Server, with plenty of examples.&#160; </p>
<blockquote><h3>How to Use Computed Column SQL Server Databases</h3>
<h4>What is Computed Column ?</h4>
<p>If you have columns in your sql database tables such that their values depend on other columns, you may use computed columns.     <br />Using computed columns or calculated columns will enable you save the calculation logic of such computed values in database.      <br />And will save you from extra coding everytime you have to do when you require the computed item.</p>
<p>A computed column can be defined as an expression which can use other columns in the same table as well as using other table values via user-defined functions.     <br />The expression of the computation can be directly a name of a noncomputed column (*), constants, functions including sql or user-defined functions or can contain all in the computed column definition.      <br />It is important that the computed column expression can not be a subquery which means you can not use SELECT statements in the expression. Even if you are selecting a constant value like &quot;SELECT 1&quot; . </p>
<p>(*) As a note :     <br />A computed column in a table is not allowed to be used in another computed-column definition in the same table.      <br />You are reference a computed column in another table by using a user defined function in the expression of the calculated column.</p>
</blockquote>
<p><a href="http://www.kodyaz.com/articles/sql-server-computed-column-calculated-column-sample.aspx">How to Use Computed Column in SQL Server Databases with Computed-Column Samples</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/09/29/how-to-use-computed-column-in-sql-server-databases-with-computed-column-samples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Katmai (Sql 2008) &#8211; MERGE &#8211; More than UPSERT (more advanced uses) &#8211; Chad Boyd</title>
		<link>http://www.whitworth.org/2009/09/14/katmai-sql-2008-merge-more-than-upsert-more-advanced-uses-chad-boyd/</link>
		<comments>http://www.whitworth.org/2009/09/14/katmai-sql-2008-merge-more-than-upsert-more-advanced-uses-chad-boyd/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 13:47:13 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/09/14/katmai-sql-2008-merge-more-than-upsert-more-advanced-uses-chad-boyd/</guid>
		<description><![CDATA[&#160;
So, more than likely almost everyone has already heard that Sql 2008 will introduce a MERGE syntax, making it much easier to deal with scenarios where you need to perform &#8216;upsert&#8217; type logic (i.e., you have a source data set and you want to put records from that source set into a target set (table, [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<blockquote><p>So, more than likely almost everyone has already heard that Sql 2008 will introduce a MERGE syntax, making it much easier to deal with scenarios where you need to perform &#8216;upsert&#8217; type logic (i.e., you have a source data set and you want to put records from that source set into a target set (table, updateable view), but some of the records already exist in the target, and some don&#8217;t &#8211; for those that exist, you want to perform an update, for those that don&#8217;t exist, you want to insert&#8230;hence, upsert <img src='http://www.whitworth.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> ). A simple bullet list of what you do when using the MERGE statement would include: </p>
<ul>
<li>Specify the source and target data sets </li>
<li>Specify joining conditions between the source and target data set </li>
<li>Specify 1 or more &#8216;matching&#8217; clauses </li>
<li>Specify the action to occur when matches do/don&#8217;t exist </li>
</ul>
<p>However, there is much to the MERGE statement that far exceeds simply &#8216;upsert&#8217; operations, for example: </p>
<ul>
<li>There are 3 separate matching clauses you can specify, not only 2 (so it&#8217;s not just an upsert if you want). The 3 matching clauses are:
<ul>
<li>WHEN MATCHED </li>
<li>WHEN [TARGET] NOT MATCHED </li>
<li>WHEN SOURCE NOT MATCHED</li>
</ul>
</li>
</ul>
</blockquote>
<p><a href="http://blogs.mssqltips.com/blogs/chadboyd/archive/2007/11/01/katmai-sql-2008-merge-more-than-upsert-more-advanced-uses.aspx">Katmai (Sql 2008) &#8211; MERGE &#8211; More than UPSERT (more advanced uses) &#8211; Chad Boyd</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/09/14/katmai-sql-2008-merge-more-than-upsert-more-advanced-uses-chad-boyd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMS/ConfigMgr &#8211; SQL Function to Convert Integer8 (from Active Directory) to Datetime/Local Time &#8211; Number2 Blog &#8211; myITforum</title>
		<link>http://www.whitworth.org/2009/09/09/smsconfigmgr-sql-function-to-convert-integer8-from-active-directory-to-datetimelocal-time-number2-blog-myitforum/</link>
		<comments>http://www.whitworth.org/2009/09/09/smsconfigmgr-sql-function-to-convert-integer8-from-active-directory-to-datetimelocal-time-number2-blog-myitforum/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 18:01:47 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[Network Administration]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/09/09/smsconfigmgr-sql-function-to-convert-integer8-from-active-directory-to-datetimelocal-time-number2-blog-myitforum/</guid>
		<description><![CDATA[This is a great post. I had looked at trying to find a way to convert Integer-8 values to datetime format using SQL functions before, but could never figure it out. Here it is, the entire post in case it ever disappears from its original site. 
It&#8217;s possible you&#8217;re pulling a value from Active Directory [...]]]></description>
			<content:encoded><![CDATA[<p>This is a great post. I had looked at trying to find a way to convert Integer-8 values to datetime format using SQL functions before, but could never figure it out. Here it is, the entire post in case it ever disappears from its original site. </p>
<blockquote><p>It&#8217;s possible you&#8217;re pulling a value from Active Directory for discovery like LastLogonTimeStamp which stores it&#8217;s value as something known as Integer8 (<a href="http://www.rlmueller.net/Integer8Attributes.htm">http://www.rlmueller.net/Integer8Attributes.htm</a>).&#160; If that&#8217;s the case, you may notice the values you&#8217;ve got saved in SQL aren&#8217;t perhaps what you were expecting:</p>
<p>128462210724001300</p>
<p>Fields within AD that have integer8 numbers like this include </p>
<ol>
<li>accountExpires </li>
<li>badPasswordTime </li>
<li>lastLogon </li>
<li>lockoutTime </li>
<li>maxStorage </li>
<li>pwdLastSet </li>
<li>uSNChanged </li>
<li>uSNCreated </li>
<li>lockoutDuration </li>
<li>lockoutObservationWindow </li>
<li>maxPwdAge </li>
<li>minPwdAge </li>
<li>modifiedCount </li>
</ol>
<p>So&#8230;what to do with this odd string of digits?&#160; It doesn&#8217;t look like a date, you can&#8217;t just CONVERT() it to a datetime value directly and it doesn&#8217;t look like it can be picked apart visually.&#160; Well, if you read up on that link above, you&#8217;ll see a solution there in VBScript.&#160; Well, that&#8217;s not going to fly for us, so why don&#8217;t we convert it to T-SQL.&#160; I&#8217;ve also seen a few SQL functions out there that some people have written, but they all seem to either make things way too complicated, or get something just a little wrong.&#160; So instead of copying something from the internet that we don&#8217;t understand or that may be wrong, let&#8217;s just use the information we know about integer8 values to figure it out.</p>
<p><strong>BACKGROUND</strong></p>
<p>Alright, unless you understand it better, the solution just isn&#8217;t going to make sense.&#160; So let me just give a quick background before we get into code to do the conversion.</p>
<p>Integer8.&#160; So integer8 is this 64-bit (8-byte) integer that is the cornerstone of certain date fields in Active Directory (like listed above).&#160; It represents the number of 100-nanosecond intervals that have elapsed since 1/1/1601.&#160; A nanosecond is 1 billionth of a second (so 1 billion of them to a second), which means there are 10 Million of these 100-nanosecond intervals in a second and 60 Million of them in a minute.&#160; So, if we figure out how many minutes an integer8 number represents, we can figure out what date is that many minutes from 1/1/1601.</p>
<p>One of the things we have to work around in T-SQL is the fact that in SQL 2005, the DATE* functions use a &quot;Base Date&quot; of 1/1/1900, meaning that&#8217;s as far back as it will go.&#160; So you can&#8217;t calculate how many minutes have elapsed since 1/1/1601, you have to do it from 1/1/1900.&#160; Which means you have to subtract out the minutes from 1/1/1601 to 1/1/1900 first.&#160; This isn&#8217;t an issue in SQL 2008 because it supports the <strong>DATETIME2</strong> data type which goes from 1/1/0001 to 12/31/9999.</p>
<p>Perhaps we should just get to the steps so it makes more sense:</p>
<p><strong>STEPS CONVERT INTEGER8 TO DATETIME</strong></p>
<p>Using the above link as a guide, here are the steps you need to perform:</p>
<p>FOR SQL 2000</p>
<ol>
<li>Buy SQL 2008 or higher and follow those instructions&#8230;seriously&#8230; </li>
</ol>
<p>FOR SQL 2005</p>
<ol>
<li>Given an integer8 date, figure out how many minutes elapsed that it represents       <br />(Divide the number by 60 Million) </li>
<li>Calculate a &quot;Base Date&quot; offset&#8211;the number of minutes-elapsed between 1/1/1601 and 1/1/1900       <br />(157258080) </li>
<li>Calculate the timezone bias so the output is in local time </li>
<li>Calculate the new number of minutes that have elapsed since the base date given the timezone bias       <br />(take the minutes elapsed, subtract the base-date offset and add the timezone bias) </li>
<li>Add that number of minutes to the base-date and determine the resultant date </li>
</ol>
<p>FOR SQL 2008</p>
<p>Because SQL 2008 has a datetime2 datatype, it can go all the way back to 1/1/1601 and perform date functions on it so the &quot;Base Date&quot; step isn&#8217;t necessary. </p>
<ol>
<li>Given an integer8 date, figure out how many minutes-elapsed that it represents       <br />(Divide the number by 60 Million) </li>
<li>Calculate the timezone bias so the output is in local time </li>
<li>Calculate the new number of minutes that have elapsed since 1/1/1601 given the timezone bias       <br />(take the minutes elapsed, subtract the base-date offset and add the timezone bias) </li>
<li>Add that number of minutes to 1/1/1601 and determine the resultant date </li>
</ol>
<p><strong>NOW, THE T-SQL</strong></p>
<p>SQL 2005</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-     <br />&#8211; FULL, STEP-BY-STEP METHOD      <br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>&#8211; Don&#8217;t worry, this is step-by-step to show the logic. It can all be put into      <br />&#8211; one statement or a function like we&#8217;ve done below      <br />&#8211; TAKE AN INTEGER8, WHICH IS THE NUMBER OF 100-NANOSECOND INTERVALS SINCE 12:00AM 1/1/1601      <br />DECLARE @Int8 BIGINT      <br />SET @Int8 = 128462210724001300</p>
<p>&#8211; AND FIGURE OUT HOW MANY MINUTES THAT IS&#8230;     <br />&#8211; THERE ARE 1 BILLION NANOSECONDS IN A SECOND, THUS 10MILLION 100-NANOSECOND INTERVALS      <br />&#8211; AND 60 TIMES THAT PER MINUTE SO INT8 DIVIDED BY (60 * 10MILLION) IS THE NUMBER OF       <br />&#8211; MINUTES THAT HAVE ELAPSED SINCE 12:00AM 1/1/1601      <br />DECLARE @MinutesElapsed BIGINT      <br />SET @MinutesElapsed = @Int8 / 600000000</p>
<p>&#8211; NOW, BECAUSE THE DATEADD FN USES A &quot;BASE DATE&quot; OF 1/1/1900, WE NEED TO TAKE THE MINUTES     <br />&#8211; ABOVE AND SUBTRACT NUMBER OF MINUTES THAT HAVE ELAPSED BETWEEN 1/1/1601 TO 1/1/1900      <br />DECLARE @BaseDateOffset BIGINT;      <br />SET @BaseDateOffset = 157258080</p>
<p>&#8211; NOW WE CALCULATE THE OFFSET FROM GMT/UTC THAT OUR TIMEZONE GIVES US SO THE OUTPUT IS IN LOCAL TIME     <br />declare @TimezoneBias INT;      <br />SET @TimezoneBias = DATEDIFF(Minute,GetUTCDate(),GetDate())</p>
<p>&#8211; LASTLY, LET&#8217;S TAKE THE NUMBER OF MINUTES ELAPSED, WITH THE BASE-DATE OFFSET AND THE LOCAL TIME BIAS     <br />&#8211; AND FIGURE OUT WHAT END-DATE THAT GIVES US      <br />SELECT DATEADD(mi,@MinutesElapsed &#8211; @BaseDateOffset + @TimezoneBias,0)      <br />GO</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;     <br />&#8211; OR TO PUT ALL OF THAT IN ONE STATEMENT      <br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;      <br />DECLARE @Int8 BIGINT      <br />SET @Int8 = 128462210724001300      <br />SELECT DATEADD(mi,(@Int8 / 600000000) &#8211; 157258080 + DATEDIFF(Minute,GetUTCDate(),GetDate()),0)      <br />GO</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-     <br />&#8211; OR PUT IT INTO A FUNCTION      <br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-      <br />CREATE FUNCTION dbo.udf_Int8_to_DateTime(      <br />&#160;&#160; @Int8 BIGINT      <br />)      <br />RETURNS DATETIME      <br />AS      <br />&#160;&#160; BEGIN      <br />&#160;&#160;&#160;&#160;&#160; RETURN (DATEADD(mi,(@Int8 / 600000000) &#8211; 157258080 + DATEDIFF(Minute,GetUTCDate(),GetDate()),0))      <br />&#160;&#160; END      <br />GO</p>
<p>&#8211; AND THEN CALL IT     <br />SELECT dbo.udf_Int8_to_DateTime(128462210724001300)      <br />GO</p>
<p>SQL 2008 </p>
<p>Like we said earlier, SQL 2008 doesn&#8217;t need one of the steps because it can handle DATETIME2 and do date math back to 1/1/1601, as long as you CAST or CONVERT the data to a DATETIME2 in the DATEADD as you see below.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-     <br />&#8211; FULL, STEP-BY-STEP METHOD      <br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>&#8211; Don&#8217;t worry, this is step-by-step to show the logic. It can all be put into      <br />&#8211; one statement or a function like we&#8217;ve done below.&#160; Keep reading.</p>
<p>&#8211; TAKE AN INTEGER8, WHICH IS THE NUMBER OF 100-NANOSECOND INTERVALS SINCE 12:00AM 1/1/1601     <br />DECLARE @Int8 BIGINT      <br />SET @Int8 = 128462210724001300</p>
<p>&#8211; AND FIGURE OUT HOW MANY MINUTES THAT IS&#8230;     <br />&#8211; THERE ARE 1 BILLION NANOSECONDS IN A SECOND, THUS 10MILLION 100-NANOSECOND INTERVALS      <br />&#8211; AND 60 TIMES THAT PER MINUTE SO INT8 DIVIDED BY (60 * 10MILLION) IS THE NUMBER OF       <br />&#8211; MINUTES THAT HAVE ELAPSED SINCE 12:00AM 1/1/1601      <br />DECLARE @MinutesElapsed BIGINT      <br />SET @MinutesElapsed = @Int8 / 600000000      <br />SELECT @MinutesElapsed</p>
<p>&#8211; NOW WE CALCULATE THE OFFSET FROM GMT/UTC THAT OUR TIMEZONE GIVES US SO THE OUTPUT IS IN LOCAL TIME     <br />declare @TimezoneBias INT;      <br />SET @TimezoneBias = DATEDIFF(Minute,GetUTCDate(),GetDate())</p>
<p>&#8211; LASTLY, LET&#8217;S TAKE THE NUMBER OF MINUTES ELAPSED SINCE 1/1/1601, WITH THE LOCAL TIME BIAS     <br />&#8211; AND FIGURE OUT WHAT END-DATE THAT GIVES US. NEED TO CAST/CONVERT THE DATE TO DATETIME2 IN      <br />&#8211; ORDER TO ADD MINUTES FROM ALL THE WAY BACK ON 1/1/1601, OTHERWISE IT ASSUMES DATETIME WHICH      <br />&#8211; ONLY GOES BACK TO 1/1/1900.      <br />SELECT DATEADD(mi,@MinutesElapsed + @TimezoneBias,CAST(&#8217;1/1/1601&#8242; AS DATETIME2))      <br />GO</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;     <br />&#8211; OR TO PUT ALL OF THAT IN ONE STATEMENT      <br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;      <br />DECLARE @Int8 BIGINT      <br />SET @Int8 = 128462210724001300      <br />SELECT DATEADD(mi,(@Int8 / 600000000) + DATEDIFF(Minute,GetUTCDate(),GetDate()),CAST(&#8217;1/1/1601&#8242; AS DATETIME2))      <br />GO</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-     <br />&#8211; OR PUT IT INTO A FUNCTION      <br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-      <br />CREATE FUNCTION dbo.udf_Int8_to_DateTime(      <br />&#160;&#160; @Int8 BIGINT      <br />)      <br />RETURNS DATETIME2      <br />AS      <br />&#160;&#160; BEGIN      <br />&#160;&#160;&#160;&#160;&#160; RETURN (DATEADD(mi,@Int8 / 600000000 + DATEDIFF(Minute,GetUTCDate(),GetDate()),CAST(&#8217;1/1/1601&#8242; AS DATETIME2)))      <br />&#160;&#160; END      <br />GO</p>
<p>&#8211; AND THEN CALL IT     <br />SELECT dbo.udf_Int8_to_DateTime(128462210724001300)      <br />GO</p>
<p><strong>SUMMARY</strong></p>
<p>So that&#8217;s really it.&#160; It&#8217;s all about converting the 100-nanosecond intervals to minutes and doing some math.&#160; So we&#8217;ve got TSQL that will convert an Integer8 value (from Active Directory) into a DateTime/DateTime2 value.</p>
<p>Some notes:</p>
<ul>
<li>If you want it in UTC/GMT, then you can just skip the TimezoneBias part. </li>
<li>This may not be perfect, I don&#8217;t know how all of the leap seconds that have been added over the years play into this&#8230;do the DATEDIFF/DATEADD functions handle that? Dunno. </li>
<li>The <em>number</em> argument of the DATEADD function cannot exceed the range of INT (2147483647) so if the INTEGER8 number is obscenely huge (spans more than 4084 years, 24 days, 2 hours &amp; 7 minutes) then you&#8217;ll likely get an overflow error.&#160; But we shouldn&#8217;t hit that for more than a thousand years, right? </li>
</ul>
<p>This has been tested on SQL 2005 and SQL 2008, but you should always test on lab systems before moving any code to production.&#160; This is released &quot;AS IS&quot; and confers no rights.</p>
<p><strong>Number2 (John Nelson)&#160; <br /></strong><a href="http://posts.number2blog.com/">MyITForum &#8211; Forum Posts</a>      <br /><a href="http://www.number2blog.com/">MyITForum &#8211; Blog</a></p>
</blockquote>
<p><a href="http://myitforum.com/cs2/blogs/jnelson/archive/2009/08/25/140938.aspx">SMS/ConfigMgr &#8211; SQL Function to Convert Integer8 (from Active Directory) to Datetime/Local Time &#8211; Number2 Blog &#8211; myITforum</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/09/09/smsconfigmgr-sql-function-to-convert-integer8-from-active-directory-to-datetimelocal-time-number2-blog-myitforum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Todd McDermid&#8217;s Blog: An Alternative to SSIS&#8217;s SCD Wizard</title>
		<link>http://www.whitworth.org/2009/04/14/todd-mcdermids-blog-an-alternative-to-ssiss-scd-wizard/</link>
		<comments>http://www.whitworth.org/2009/04/14/todd-mcdermids-blog-an-alternative-to-ssiss-scd-wizard/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 18:08:21 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/04/14/todd-mcdermids-blog-an-alternative-to-ssiss-scd-wizard/</guid>
		<description><![CDATA[&#160;
An Alternative to SSIS&#8217;s SCD Wizard
This will be the last time I plug this for a while &#8211; I promise! I just wanted to make sure this page would come up in Google for those who are struggling with the Slowly Changing Dimension Wizard in SSIS.     If you want an SCD [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<blockquote><h5><a href="http://toddmcdermid.blogspot.com/2008/10/alternative-to-ssiss-scd-wizard.html">An Alternative to SSIS&#8217;s SCD Wizard</a></h5>
<p>This will be the last time I plug this for a while &#8211; I promise! I just wanted to make sure this page would come up in Google for those who are struggling with the Slowly Changing Dimension Wizard in SSIS.     <br />If you want an SCD component for SQL Server Integration Services that is a single component and doesn&#8217;t take hours and hours to execute, you ought to try out this alternative. It&#8217;s available (open-source) on CodePlex &#8211; the <a href="http://www.codeplex.com/kimballscd">KimballSCD project</a>. It&#8217;s modeled on the Kimball Method of dimension processing, which ought to make some of it&#8217;s more advanced features recognizable and very useful.      <br />Here&#8217;s a short list of the advantages this component has over the stock SCD Wizard:</p>
</blockquote>
<p><a href="http://toddmcdermid.blogspot.com/2008/10/alternative-to-ssiss-scd-wizard.html">Todd McDermid&#8217;s Blog: An Alternative to SSIS&#8217;s SCD Wizard</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/04/14/todd-mcdermids-blog-an-alternative-to-ssiss-scd-wizard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New White Paper on Hyper-V and SQL Server Consolidation at Microsoft</title>
		<link>http://www.whitworth.org/2009/03/13/new-white-paper-on-hyper-v-and-sql-server-consolidation-at-microsoft/</link>
		<comments>http://www.whitworth.org/2009/03/13/new-white-paper-on-hyper-v-and-sql-server-consolidation-at-microsoft/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 21:36:24 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/03/13/new-white-paper-on-hyper-v-and-sql-server-consolidation-at-microsoft/</guid>
		<description><![CDATA[Very timely. We were just having this discussion the other day. 
New White Paper on Hyper-V and SQL Server Consolidation at Microsoft 
A new white paper on how Microsoft IT is combining Hyper-V and SQL Server has just been published. This comes from a team that provides thousands of SQL Server instances for internal applications. [...]]]></description>
			<content:encoded><![CDATA[<p>Very timely. We were just having this discussion the other day. </p>
<blockquote><h4>New White Paper on Hyper-V and SQL Server Consolidation at Microsoft </h4>
<p>A new white paper on how Microsoft IT is combining Hyper-V and SQL Server has just been published. This comes from a team that provides thousands of SQL Server instances for internal applications. It includes a lot of interesting new information, including results of specific tests they performed to evaluate their options. This is something that I first saw on an internal-only presentation a few weeks back and I&#8217;m glad they posted it publicly.&#160; </p>
<p>Here&#8217;s are the topics covered in this 26-page white paper:</p>
<ul>
<li>Executive Overview </li>
<li>Introduction </li>
<li>Considerations for Consolidation and Virtualization
<ul>
<li>Identification of Underutilized Servers </li>
<li>Server temperature </li>
<li>Consolidation Approaches </li>
<li>Virtualization Platform: WSRM vs. Hyper-V</li>
</ul>
</li>
<li>Implementation of the SQL Utility
<ul>
<li>Service Offerings </li>
<li>Identification of Candidates for Migration</li>
</ul>
</li>
<li>Attributes of System Quality
<ul>
<li>Availability and Business Continuity </li>
<li>Environmental Sustainability </li>
<li>Manageability </li>
<li>Performance </li>
<li>Predictability and Repeatability </li>
<li>Reliability </li>
<li>Scalability </li>
<li>Security </li>
<li>Monitoring </li>
<li>Supportability</li>
</ul>
</li>
<li>Conclusion</li>
</ul>
<p>It also includes lots of interesting diagrams, including details on their specific hardward configuration. While not evident on the outline above, the white paper compares the options to use multiple instances of SQL without Hyper-V with having multiple virtual machines with single instances of SQL Server. Not only it looks at the different pros and cons, but also provides interesting performance information.</p>
<p> Download the white paper from <a href="http://technet.microsoft.com/en-us/library/dd557540.aspx">http://technet.microsoft.com/en-us/library/dd557540.aspx</a></p>
<p>Filed under: <a href="http://blogs.technet.com/josebda/archive/tags/Windows+Server+2008/default.aspx">Windows Server 2008</a>, <a href="http://blogs.technet.com/josebda/archive/tags/SQL+Server/default.aspx">SQL Server</a>, <a href="http://blogs.technet.com/josebda/archive/tags/Storage/default.aspx">Storage</a>, <a href="http://blogs.technet.com/josebda/archive/tags/Hyper-V/default.aspx">Hyper-V</a></p>
</blockquote>
<p><a href="http://blogs.technet.com/josebda/archive/2009/03/11/new-white-paper-on-hyper-v-and-sql-server-consolidation-at-microsoft.aspx">Jose Barreto&#8217;s Blog : New White Paper on Hyper-V and SQL Server Consolidation at Microsoft</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/03/13/new-white-paper-on-hyper-v-and-sql-server-consolidation-at-microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beginning SQL Server 2005 Reporting Services Part 2</title>
		<link>http://www.whitworth.org/2008/08/10/beginning-sql-server-2005-reporting-services-part-2/</link>
		<comments>http://www.whitworth.org/2008/08/10/beginning-sql-server-2005-reporting-services-part-2/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 21:38:50 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://blog.whitworth.org/?p=428</guid>
		<description><![CDATA[ A good primer I ran across about SQL Server 2005 Reporting Services.
In Part 1 of this article, we looked at the basics of SQL Server Reporting Services 2005 (SSRS). We built one report with the Report Wizard, and one report using the Report Designer. In Part 2, we are going to look in more [...]]]></description>
			<content:encoded><![CDATA[<p> A good primer I ran across about SQL Server 2005 Reporting Services.</p>
<blockquote><p>In <a href="http://www.simple-talk.com/sql/learn-sql-server/beginning-sql-server-2005-reporting-services-part-1/">Part 1</a> of this article, we looked at the basics of SQL Server Reporting Services 2005 (SSRS). We built one report with the Report Wizard, and one report using the Report Designer. In Part 2, we are going to look in more depth at the features that you can use everyday as an SSRS developer. </p>
<p>We will investigate:</p>
<ul>
<li>Use of <b>expressions </b>that allow you to dynamically control nearly every aspect of reporting from control properties to data binding </li>
<li><b>Common functions </b>that allow run calculations and manipulate data within the report itself<b> </b></li>
<li><strong>Custom code, </strong>used to build your own library of functions within the report.</li>
</ul>
<p><b></b></p>
<p>We&#8217;ll also set up a <b>Matrix control</b> and create a <strong>sub-report. </strong>Lastly, we will add some flair to the report by adding dynamic drills and sorting.</p>
</blockquote>
<p><a href="http://www.simple-talk.com/sql/learn-sql-server/beginning-sql-server-2005-reporting-services-part-2/">Beginning SQL Server 2005 Reporting Services Part 2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2008/08/10/beginning-sql-server-2005-reporting-services-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessing SharePoint List Items with SQL Server 2005 Reporting Services &#8211; Colin Bowern &#8211; RockstarGuys.com</title>
		<link>http://www.whitworth.org/2007/10/19/accessing-sharepoint-list-items-with-sql-server-2005-reporting-services-colin-bowern-rockstarguyscom/</link>
		<comments>http://www.whitworth.org/2007/10/19/accessing-sharepoint-list-items-with-sql-server-2005-reporting-services-colin-bowern-rockstarguyscom/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 15:22:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Sharepoint Code]]></category>
		<category><![CDATA[SQL Reporting Services]]></category>
		<category><![CDATA[SQL Server 2005]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/Blog/PermaLink,guid,f4e1ab5d-dffd-47e7-b71d-143d997f4ac3.aspx</guid>
		<description><![CDATA[Â Found this post on Printing Sharepoint List items with SQL 2005 Reporting services:
Recently I had to connect to a SharePoint List to access some data.Â  While there
is a data extension
available from Enesys (including a free Community edition) to do this I though
I would first make an attempt using the out-of-the-box options.
The first step was getting [...]]]></description>
			<content:encoded><![CDATA[<p>Â Found this post on Printing Sharepoint List items with SQL 2005 Reporting services:</p>
<blockquote><p>Recently I had to connect to a SharePoint List to access some data.Â  While there<br />
is a <a href="http://www.enesyssoftware.com/Default.aspx?tabid=66">data extension<br />
available</a> from Enesys (including a free Community edition) to do this I though<br />
I would first make an attempt using the out-of-the-box options.</p>
<p>The first step was getting connected to any of the list services.Â  I chose to<br />
start with GetListCollection because it required no parameters (aka it was simple<br />
to use).Â  Here is what I did to get connected:</p></blockquote>
<p><a href="http://rockstarguys.com/blogs/colin/archive/2006/11/10/accessing-sharepoint-list-items-with-sql-server-2005-reporting-services.aspx">Accessing<br />
SharePoint List Items with SQL Server 2005 Reporting Services &#8211; Colin Bowern &#8211; RockstarGuys.com</a></p>
<p><img src="http://www.whitworth.org/Blog/aggbug.ashx?id=f4e1ab5d-dffd-47e7-b71d-143d997f4ac3" alt="" width="0" height="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2007/10/19/accessing-sharepoint-list-items-with-sql-server-2005-reporting-services-colin-bowern-rockstarguyscom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2005: Regular Expressions Make Pattern Matching And Data Extraction Easier &#8212; MSDN Magazine, February 2007</title>
		<link>http://www.whitworth.org/2007/09/28/sql-server-2005-regular-expressions-make-pattern-matching-and-data-extraction-easier-msdn-magazine-february-2007/</link>
		<comments>http://www.whitworth.org/2007/09/28/sql-server-2005-regular-expressions-make-pattern-matching-and-data-extraction-easier-msdn-magazine-february-2007/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 14:47:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2005]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/Blog/PermaLink,guid,f8d59f0b-134d-4527-9112-6605c2f66d25.aspx</guid>
		<description><![CDATA[
&#160;



This article discusses: 


Efficient SQL querying using regular expressions 

Support in SQL Server 2005 for regular expressions 

Using .NET Regex classes from SQL Server 

Effective uses for regular expressions in a database



SQL
Server 2005: Regular Expressions Make Pattern Matching And Data Extraction Easier
&#8211; MSDN Magazine, February 2007


]]></description>
			<content:encoded><![CDATA[<p>
&nbsp;
</p>
<blockquote>
<p>
This article discusses: </p>
<ul>
<li>
Efficient SQL querying using regular expressions </p>
<li>
Support in SQL Server 2005 for regular expressions </p>
<li>
Using .NET Regex classes from SQL Server </p>
<li>
Effective uses for regular expressions in a database</li>
</ul>
</blockquote>
<p>
<a href="http://msdn.microsoft.com/msdnmag/issues/07/02/SQLRegex/default.aspx">SQL<br />
Server 2005: Regular Expressions Make Pattern Matching And Data Extraction Easier<br />
&#8211; MSDN Magazine, February 2007</a>
</p>
<p><img width="0" height="0" src="http://www.whitworth.org/Blog/aggbug.ashx?id=f8d59f0b-134d-4527-9112-6605c2f66d25" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2007/09/28/sql-server-2005-regular-expressions-make-pattern-matching-and-data-extraction-easier-msdn-magazine-february-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft SQL Server 2005 SP2 Reporting Services integration with WSS 3.0 and MOSS 2007</title>
		<link>http://www.whitworth.org/2007/06/25/microsoft-sql-server-2005-sp2-reporting-services-integration-with-wss-30-and-moss-2007/</link>
		<comments>http://www.whitworth.org/2007/06/25/microsoft-sql-server-2005-sp2-reporting-services-integration-with-wss-30-and-moss-2007/#comments</comments>
		<pubDate>Mon, 25 Jun 2007 15:27:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[MOSS 2007]]></category>
		<category><![CDATA[SQL Server 2005]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/Blog/PermaLink,guid,8813061a-0ed0-4452-8528-a4dc2aba1719.aspx</guid>
		<description><![CDATA[
There are numerous benefits and advantages to integrating Reporting Services with
Office SharePoint Server 2007. Prior to SP2, Reporting Services reports were published
to a report server and were executed solely in that environment. The integration point
between Reporting Services and SharePoint was two separate Web Parts: Report Explorer
and Report Viewer.


Using
Reporting Services 2005 in SharePoint Integration Mode enables [...]]]></description>
			<content:encoded><![CDATA[<p>
There are numerous benefits and advantages to integrating Reporting Services with<br />
Office SharePoint Server 2007. Prior to SP2, Reporting Services reports were published<br />
to a report server and were executed solely in that environment. The integration point<br />
between Reporting Services and SharePoint was two separate Web Parts: Report Explorer<br />
and Report Viewer.
</p>
<p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto">
<span lang=EN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN"><font color=#000000><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />Using<br />
Reporting Services 2005 in SharePoint Integration Mode enables some significant benefits<br />
to the end-user and the organization as a whole, as follows:<br />
<o:p></o:p><br />
</font></span>
</p>
<ul type=disc>
<li class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in">
<span lang=EN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN"><font color=#000000>Uses<br />
SharePoint document libraries to store reports, data sources, and report models.<br />
<o:p></o:p><br />
</font></span> </p>
<li class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in">
<span lang=EN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN"><font color=#000000>Enables<br />
publishing, viewing, management, and delivery of Reporting Services reports from the<br />
same user interface used for managing Office documents.<br />
<o:p></o:p><br />
</font></span> </p>
<li class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in">
<span lang=EN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN"><font color=#000000>Enables<br />
organizations to construct BI dashboards with rich reports.<br />
<o:p></o:p><br />
</font></span> </p>
<li class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in">
<span lang=EN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN"><font color=#000000>Leverages<br />
workflow and collaboration capabilities that are already available in Office SharePoint<br />
Server 2007.<o:p></o:p><br />
</font></span>
</li>
</ul>
<p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto">
<span lang=EN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN"><font color=#000000>When<br />
using SharePoint Integration Mode, some features that are available in Native Mode<br />
are replaced with comparable functionality in Office SharePoint Server 2007 or are<br />
no longer available. The Reporting Services features that are not available in Integration<br />
Mode are:<br />
<o:p></o:p><br />
</font></span>
</p>
<ul type=disc>
<li class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l1 level1 lfo2; tab-stops: list .5in">
<span lang=EN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN"><font color=#000000>Report<br />
Manager<br />
<o:p></o:p><br />
</font></span> </p>
<li class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l1 level1 lfo2; tab-stops: list .5in">
<span lang=EN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN"><font color=#000000>Management<br />
Studio<br />
<o:p></o:p><br />
</font></span> </p>
<li class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l1 level1 lfo2; tab-stops: list .5in">
<span lang=EN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN"><font color=#000000>My<br />
Reports<br />
<o:p></o:p><br />
</font></span> </p>
<li class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l1 level1 lfo2; tab-stops: list .5in">
<span lang=EN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN"><font color=#000000>Linked<br />
Reports<br />
<o:p></o:p><br />
</font></span> </p>
<li class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l1 level1 lfo2; tab-stops: list .5in">
<span lang=EN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN"><font color=#000000>Job<br />
Management<o:p></o:p><br />
</font></span>
</li>
</ul>
<p>
<a href="http://blogs.msdn.com/sharepoint/archive/2007/02/19/microsoft-sql-server-2005-sp2-reporting-services-integration-with-wss-3-0-and-moss-2007.aspx">Link<br />
Here</a>
</p>
<p>
&nbsp;
</p>
<p><img width="0" height="0" src="http://www.whitworth.org/Blog/aggbug.ashx?id=8813061a-0ed0-4452-8528-a4dc2aba1719" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2007/06/25/microsoft-sql-server-2005-sp2-reporting-services-integration-with-wss-30-and-moss-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.597 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-07-12 23:58:01 -->
