<?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>TechColumnist &#187; reporting</title>
	<atom:link href="http://www.techcolumnist.com/wp/tag/reporting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techcolumnist.com/wp</link>
	<description>Storage Information Blog</description>
	<lastBuildDate>Tue, 17 Jan 2012 08:13:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Response Buffer Limit Exceeded</title>
		<link>http://www.techcolumnist.com/wp/2007/08/23/response-buffer-limit-exceeded/</link>
		<comments>http://www.techcolumnist.com/wp/2007/08/23/response-buffer-limit-exceeded/#comments</comments>
		<pubDate>Thu, 23 Aug 2007 09:39:33 +0000</pubDate>
		<dc:creator>TomLasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[sms2003]]></category>

		<guid isPermaLink="false">http://techcolumnist.com/wp/?p=11</guid>
		<description><![CDATA[Ever get this error: Response object error 'ASP 0251 : 80004005' Response Buffer Limit Exceeded Here's the fix: To resolve this issue: Browse to (on the reporting point): C:WINDOWSsystem32inetsrv Open: MetaBase.xml Find the variable: AspBufferingLimit Change the default value to something higher, I chose 51200000 AspBufferingLimit="51200000" Stop IIS Save the MetaBase.xml file Start IIS Check [...]]]></description>
		<wfw:commentRss>http://www.techcolumnist.com/wp/2007/08/23/response-buffer-limit-exceeded/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WinZip count with version</title>
		<link>http://www.techcolumnist.com/wp/2007/08/06/winzip-count-with-version/</link>
		<comments>http://www.techcolumnist.com/wp/2007/08/06/winzip-count-with-version/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 09:43:57 +0000</pubDate>
		<dc:creator>TomLasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[sms2003]]></category>

		<guid isPermaLink="false">http://techcolumnist.com/wp/?p=13</guid>
		<description><![CDATA[SELECT ProductName0 AS Product, VersionMajor0 AS Version, COUNT(*) AS Count FROM dbo.v_GS_INSTALLED_SOFTWARE GROUP BY ProductName0, VersionMajor0 HAVING (ProductName0 = 'winzip')]]></description>
		<wfw:commentRss>http://www.techcolumnist.com/wp/2007/08/06/winzip-count-with-version/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VMware / MS VM / Real / Total Count</title>
		<link>http://www.techcolumnist.com/wp/2007/08/01/vmware-ms-vm-real-total-count/</link>
		<comments>http://www.techcolumnist.com/wp/2007/08/01/vmware-ms-vm-real-total-count/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 09:48:58 +0000</pubDate>
		<dc:creator>TomLasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[sms2003]]></category>

		<guid isPermaLink="false">http://techcolumnist.com/wp/?p=17</guid>
		<description><![CDATA[Garth writes some very useful SMS web reports so I copy them here sometimes: http://smsug.ca/blogs/garth_jones/archive/2007/08/01/528.aspx Declare @MS as int Declare @VM as int Declare @Real as int Declare @Total as int set @Total = (select count(*) from v_GS_COMPUTER_SYSTEM) set @MS = (select count(*) from v_GS_COMPUTER_SYSTEM where Manufacturer0 = 'Microsoft Corporation' ) set @VM = (select [...]]]></description>
		<wfw:commentRss>http://www.techcolumnist.com/wp/2007/08/01/vmware-ms-vm-real-total-count/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMS Site Status</title>
		<link>http://www.techcolumnist.com/wp/2007/08/01/sms-site-status/</link>
		<comments>http://www.techcolumnist.com/wp/2007/08/01/sms-site-status/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 09:45:50 +0000</pubDate>
		<dc:creator>TomLasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[sms2003]]></category>

		<guid isPermaLink="false">http://techcolumnist.com/wp/?p=15</guid>
		<description><![CDATA[This is a "dashboard" report that shows the current SMS site status. SELECT TOP (100) PERCENT SiteCode, CASE Status WHEN 0 THEN 'OK' WHEN 1 THEN 'Warning' WHEN 2 THEN 'Critical' ELSE 'False' END AS [Level], Updated FROM dbo.v_SummarizerSiteStatus ORDER BY Status DESC, SiteCode]]></description>
		<wfw:commentRss>http://www.techcolumnist.com/wp/2007/08/01/sms-site-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title># of updates per month</title>
		<link>http://www.techcolumnist.com/wp/2007/08/01/of-updates-per-month/</link>
		<comments>http://www.techcolumnist.com/wp/2007/08/01/of-updates-per-month/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 09:44:46 +0000</pubDate>
		<dc:creator>TomLasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[sms2003]]></category>

		<guid isPermaLink="false">http://techcolumnist.com/wp/?p=14</guid>
		<description><![CDATA[This report shows you the number of updates that were released each month for each product. SELECT TOP (100) PERCENT CAST(DATEPART(YYYY, DateRevised0) AS CHAR(4)) + '/' + RIGHT(CAST(100 + DATEPART(MM, DateRevised0) AS CHAR(3)), 2) AS [Year/Month], Product0 AS Product, COUNT(*) AS Count FROM dbo.v_HS_PATCHSTATEEX WHERE (Severity0 > '5') GROUP BY CAST(DATEPART(YYYY, DateRevised0) AS CHAR(4)) + [...]]]></description>
		<wfw:commentRss>http://www.techcolumnist.com/wp/2007/08/01/of-updates-per-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

