<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>SQL DMVStats</title><link>http://sqldmvstats.codeplex.com/project/feeds/rss</link><description>A SQL Server 2005 Dynamic Management View Performance Data Warehouse</description><item><title>Closed Issue: Bad stored procedure reference on report "Index Definitions" [78]</title><link>http://sqldmvstats.codeplex.com/workitem/78</link><description>Installed DMV Stats on SQL Server 2005&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;productversion --&amp;#62;9.00.3054.00&lt;br /&gt;productlevel --&amp;#62; SP2&lt;br /&gt;edition --&amp;#62;Developer Edition &amp;#40;64-bit&amp;#41;&lt;br /&gt;&amp;#160;&lt;br /&gt;Executing directly the report &amp;#34;Index Definition&amp;#34; or linked by &amp;#34;Index Operational Stats&amp;#34; it&amp;#39;s raised this SQL Server error&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#64;object_id is not a parameter for procedure sp_GetDatabaseObjectIndexes. &lt;br /&gt;&amp;#160;&lt;br /&gt;sp_GetDatabaseObjectIndexes stored procedure except the &amp;#64;object_id parameter.&lt;br /&gt;</description><author>thomasda</author><pubDate>Thu, 16 May 2013 07:12:46 GMT</pubDate><guid isPermaLink="false">Closed Issue: Bad stored procedure reference on report "Index Definitions" [78] 20130516071246A</guid></item><item><title>Closed Issue: DMVstats: Purge DMV Samples &amp; Alerts [79]</title><link>http://sqldmvstats.codeplex.com/workitem/79</link><description>Installed DMV Stats on SQL Server 2005&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;productversion --&amp;#62;9.00.3054.00&lt;br /&gt;productlevel --&amp;#62; SP2&lt;br /&gt;edition --&amp;#62;Developer Edition &amp;#40;64-bit&amp;#41;&lt;br /&gt;&amp;#160;&lt;br /&gt;Trying to execute manually the job&amp;#58;&lt;br /&gt;&amp;#91;SQLSTATE 01000&amp;#93; &amp;#40;Message 50000&amp;#41;  Invalid object name &amp;#39;DMVsample.query_stats&amp;#39;. &amp;#91;SQLSTATE 42S02&amp;#93; &amp;#40;Error 208&amp;#41;  Transaction count after EXECUTE indicates that a COMMIT or ROLLBACK TRANSACTION statement is missing. Previous count &amp;#61; 0, current count &amp;#61; 1. &amp;#91;SQLSTATE 25000&amp;#93; &amp;#40;Error 266&amp;#41;.  The step failed.&lt;br /&gt;</description><author>thomasda</author><pubDate>Thu, 16 May 2013 07:12:45 GMT</pubDate><guid isPermaLink="false">Closed Issue: DMVstats: Purge DMV Samples &amp; Alerts [79] 20130516071245A</guid></item><item><title>Source code checked in, #96133</title><link>http://sqldmvstats.codeplex.com/SourceControl/changeset/changes/96133</link><description>Upgrade&amp;#58; New Version of LabDefaultTemplate.xaml. To upgrade your build definitions, please visit the following link&amp;#58; http&amp;#58;&amp;#47;&amp;#47;go.microsoft.com&amp;#47;fwlink&amp;#47;&amp;#63;LinkId&amp;#61;254563</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:40:31 GMT</pubDate><guid isPermaLink="false">Source code checked in, #96133 20121001094031P</guid></item><item><title>Source code checked in, #96132</title><link>http://sqldmvstats.codeplex.com/SourceControl/changeset/changes/96132</link><description>Checked in by server upgrade</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:33:03 GMT</pubDate><guid isPermaLink="false">Source code checked in, #96132 20121001093303P</guid></item><item><title>New Post: Monitoring multiple SQL servers</title><link>http://sqldmvstats.codeplex.com/discussions/32622</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Judging by the date of this posting, either you got your answer or gave up.&amp;nbsp; It appears OTB, that the DMVStats application requires a separate SSRS for each server monitored.&lt;/p&gt;
&lt;p&gt;But I thought I'd post what I did to get the DMVStats to use a single report server to monitor multiple servers in case someone like myself stumbles across this question and posting.&amp;nbsp; The following steps were performed on an non-clustered, default instance of SQL Server 2008 R2 with SSRS installed with defaults.&lt;/p&gt;
&lt;p&gt;I performed the following steps &lt;strong&gt;(NOTE: make a backup copy of all the files mentioned below prior to making any edits).&amp;nbsp; &amp;lt;dmvstats location&amp;gt; is the location of the unzipped DMVStats download.&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;See Issue Tracker topic &lt;strong&gt;&lt;span id="TitleLabel" class="CodePlexPageHeader"&gt;Install error AgentJobs log &lt;/span&gt;&lt;/strong&gt;&lt;span id="TitleLabel" class="CodePlexPageHeader"&gt;to address the problem in the creation of DMVStats jobs and 'owner_sid' reported problem.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Edit&amp;nbsp;&amp;lt;dmvstats location&amp;gt;\DatabaseScripts\ConfigDMVstatsDB.sql--on SQL 2008, the "MISCELLANOUS" wait_type conflicts with the PK on the DMVConfig.wait_stats_categories table.&amp;nbsp; I believe this may be unique to SQL 2008.&amp;nbsp; Find the statement&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;insert into DMVconfig.wait_stats_categories &lt;br /&gt;(wait_type, wait_category)&lt;br /&gt;select wait_type, NULL&lt;br /&gt;from sys.dm_os_wait_stats&lt;/p&gt;
&lt;p&gt;and change to&lt;/p&gt;
&lt;p&gt;insert into DMVconfig.wait_stats_categories &lt;br /&gt;(wait_type, wait_category)&lt;br /&gt;select distinct wait_type, NULL &lt;br /&gt;from sys.dm_os_wait_stats&lt;br /&gt;where wait_type not like&amp;nbsp; 'MISCELLANEOUS'&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Run &amp;lt;dmvstats location&amp;gt;\InstallDMVStatsDBProcs.cmd and manually add a record for MISCELLANEOUS to DMVconfig.wait_stats_categories (wait_type = MISCELLANEOUS, wait_category = MISC)&lt;/li&gt;
&lt;li&gt;Edit&amp;nbsp;&amp;lt;dmvstats location&amp;gt;\Reports\DeployReports.cmd--change&amp;nbsp;the variable TargetServerURL from&amp;nbsp;http://localhost/reportserver&amp;nbsp;to http://&amp;lt;your report server&amp;gt;/reportserver where &amp;lt;your report server&amp;gt; is the designated server all DMVStats reports are to be run.&lt;/li&gt;
&lt;li&gt;Edit&amp;nbsp;&amp;lt;dmvstats location&amp;gt;\Reports\DeployDMVreports.rss--Note: The following steps customize the SSRS server with a folder hierarchy of DMVStats\&amp;lt;monitored computer name&amp;gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;ol&gt;
&lt;li&gt;Add a new variable to get current system nameDim strComputerName as String = My.Computer.Name.ToString&lt;/li&gt;
&lt;li&gt;Change contant Const FolderName As String =&amp;nbsp;"DMVStats"&amp;nbsp;to a variable&amp;nbsp;Dim FolderName As String =&amp;nbsp; strComputerName ' cannot contain "/"--this will create a new folder under which the DMVStats reports, data connections and other code will be placed.&amp;nbsp; Define according to your own hierarchical structure but as the instructions state, this string cannot contain a folder separator (/).&lt;/li&gt;
&lt;li&gt;Create the DMVStats "root" folder and subfolders on the SSRS server--The DMVStats report installation requires that the root folder exist on the report server.&amp;nbsp; As indicated by the text within DeployDMVReports, this structure can have multiple layers of subfolders--in my installation, I created a single root folder named "DMVStats"&lt;/li&gt;
&lt;li&gt;Change the line Const FolderPath As String = "/"&amp;nbsp;&amp;nbsp;to Const FolderPath As String = &amp;lt;your DMVStats root and subfolder path&amp;gt;-- this is the "root" folder (and subfolders) created in the previous step.&amp;nbsp; In my installation it was set to Const FolderPath As String = "/DMVStats".&lt;/li&gt;
&lt;li&gt;Change the constant Const connectionString As String = "data source=localhost;initial catalog=DMVstatsDB;Integrated Security=SSPI" to the variable Dim connectionString As String = "data source=" &amp;amp; strComputerName &amp;amp; ";initial catalog=DMVstatsDB;Integrated Security=SSPI"--this will create the DMVStatsDB data connection for the&amp;nbsp;server on which the DeployReports.cmd is executed.&amp;nbsp; The DMVstatsDB data connection can be further edited on the report server.&lt;/li&gt;
&lt;li&gt;Copy the full contents of &amp;lt;dmvstats location&amp;gt; to various servers and execute the InstallDMVStatsDBProcs.cmd and DeployReports.cmd&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>danielhowell</author><pubDate>Wed, 29 Jun 2011 22:28:43 GMT</pubDate><guid isPermaLink="false">New Post: Monitoring multiple SQL servers 20110629102843P</guid></item><item><title>New Post: SQL 2008 and DMVStats</title><link>http://sqldmvstats.codeplex.com/Thread/View.aspx?ThreadId=34884</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I got it running and data matches the MDW result, I had to modify at two location&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;1. DMVSAMPLE.SP_SAMPLEWAITSTATS&lt;/p&gt;
&lt;p&gt;2. cONFIGdmvsTATSdb.SQL installation script to Exclude &amp;quot;Wait Type&amp;quot; Miscellaneous from the query to sys.sm_os_wait_stats&lt;/p&gt;
&lt;p&gt;It works fine for our installation now.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>Vikasakshaydharia</author><pubDate>Wed, 11 Aug 2010 21:52:53 GMT</pubDate><guid isPermaLink="false">New Post: SQL 2008 and DMVStats 20100811095253P</guid></item><item><title>Source code checked in, #63489</title><link>http://sqldmvstats.codeplex.com/SourceControl/changeset/changes/63489</link><description>Checked in by server upgrade</description><author>_TFSSERVICE</author><pubDate>Tue, 27 Jul 2010 20:28:19 GMT</pubDate><guid isPermaLink="false">Source code checked in, #63489 20100727082819P</guid></item><item><title>Commented Issue: Install error AgentJobs log [366]</title><link>http://sqldmvstats.codeplex.com/WorkItem/View.aspx?WorkItemId=366</link><description>I just tried to run the  InstallDMVStatsDBProcs.cmd  and got an error in CreateDMVstatsSQLAgentJobs.log.&lt;br /&gt;Has anyone else experienced this&amp;#63; &lt;br /&gt;&lt;br /&gt;Changed database context to &amp;#39;msdb&amp;#39;.&lt;br /&gt;Msg 515, Level 16, State 2, Server MYSERVER, Procedure sp_add_job, Line 137&lt;br /&gt;Cannot insert the value NULL into column &amp;#39;owner_sid&amp;#39;, table &amp;#39;msdb.dbo.sysjobs&amp;#39;&amp;#59; column does not allow nulls. INSERT fails.&lt;br /&gt;The statement has been terminated.&lt;br /&gt;&lt;br /&gt;Brian&lt;br /&gt;Comments: ** Comment from web user: srini_TDXGROUP ** &lt;p&gt;Hi ,&lt;/p&gt;&lt;p&gt;check while gettign script from which server and&lt;br /&gt;ex&amp;#58;&amp;#64;owner_login_name&amp;#61;N&amp;#39;Wipro&amp;#39;&lt;/p&gt;&lt;p&gt;on whihc server you running.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&amp;#64;owner_login_name&amp;#61;N&amp;#39;Wipro1&amp;#39;&lt;/p&gt;&lt;p&gt;then it iwll work no doubt. on that.&lt;/p&gt;</description><author>srini_TDXGROUP</author><pubDate>Fri, 02 Oct 2009 13:55:13 GMT</pubDate><guid isPermaLink="false">Commented Issue: Install error AgentJobs log [366] 20091002015513P</guid></item><item><title>New Post: Error trying to run config report</title><link>http://sqldmvstats.codeplex.com/Thread/View.aspx?ThreadId=60535</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;After installing the database and publishing the reports.&amp;nbsp; The next step listed in the documentation is to configure DMVStats.&amp;nbsp; When I try and run the report (Configure DMVStats.rdl) I get an error message:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The value of command parameter @category_name specified for database UpdateJobs is not supported when rendering a report in Management Studio.&amp;nbsp; The value is =DMVStats History.&amp;nbsp; The only supported value for a command parameter is an expression that references a single report parameter.&amp;nbsp; And example is =Parameters!MyParameterName.Value.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Any help or info on this is appreciated.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Gary&lt;/p&gt;&lt;/div&gt;</description><author>GaryMazzone</author><pubDate>Wed, 24 Jun 2009 15:10:00 GMT</pubDate><guid isPermaLink="false">New Post: Error trying to run config report 20090624031000P</guid></item><item><title>New Post: SQL 2008 and DMVStats</title><link>http://sqldmvstats.codeplex.com/Thread/View.aspx?ThreadId=34884</link><description>&lt;div style="line-height: normal;"&gt;I was able to correct the Insert-select by trimming spaces from wait_type.  However, the sampling job fails because of PK violations and out of wack transcounts.  I gave up on this for SQL2008 and will probably used MDW assuming it works on my x64 servers.  I've had all sorts of trouble with x64 behavior versus 32-bit but I don't forsee an issue here since it's using standard SQL mechanisms like data collectors, jobs, ssis, etc.&lt;br&gt;
&lt;br&gt;
Executed as user: AMI\Tphillippe. Sample DMV collection: time=Apr 29 2009  4:18:41:147PM [SQLSTATE 01000] (Message 50000)  Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 1, current count = 0. [SQLSTATE 25000] (Error 266)  procid=1234103437 procname=sp_SampleRequests_Waiters @rows=1 @duration=3 milliseconds [SQLSTATE 01000] (Error 50000)  procid=1330103779 procname=sp_SampleBlockInfo @rows=0 @duration=6 milliseconds [SQLSTATE 01000] (Error 50000)  catch procid=1266103551, procname=(null), trancount=1 [SQLSTATE 01000] (Error 50000)  sp_InsertErrorInfo: procid=1266103551 name=sp_SampleWaitStats RetCode=0 errno=2627 errsev=14 errstate=1 errproc=sp_SampleWaitStats errline=26 errmsg=Error %d, Level %d, State %d, Procedure %s, Line %d, Message: Violation of PRIMARY KEY constraint 'PK__wait_sta__D0CDAB226B24EA82'. Cannot insert duplicate key in object 'DMVsample.wait_stats'. [SQLSTATE 01000] (Error 50000).  The step failed.
&lt;/div&gt;</description><author>whyamiadba</author><pubDate>Wed, 29 Apr 2009 21:42:20 GMT</pubDate><guid isPermaLink="false">New Post: SQL 2008 and DMVStats 20090429094220P</guid></item><item><title>New Post: SQL 2008 and DMVStats</title><link>http://www.codeplex.com/sqldmvstats/Thread/View.aspx?ThreadId=34884</link><description>&lt;div style="line-height: normal;"&gt;Greetings,&lt;br&gt;
&lt;br&gt;
I tried to install DMVStats on a X64 machine w/ SQL Server 2008 on it.&lt;br&gt;
The install fails as the&amp;nbsp;&lt;span style="font-size:11pt;color:#0f243e;font-family:'Cambria','serif'"&gt;the [master].[sys].[dm_os_wait_stats] contains 2 apparently identical entries w/ the ‘wait_type’ column == ‘MISCELLANEOUS’ and this causes a primary key constraint violation for PK_CF_wait_stats_cats on the DMVConfig.wait_stats_categories.&lt;br&gt;
&lt;br&gt;
Is this a known issue? Are there any workarounds to it?&lt;br&gt;
&lt;br&gt;
Any related references/pointers are appreciated.&lt;br&gt;
&lt;br&gt;
Thank you,&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; Adrian C.&lt;/span&gt;
&lt;/div&gt;</description><author>adrianc</author><pubDate>Thu, 04 Sep 2008 02:18:47 GMT</pubDate><guid isPermaLink="false">New Post: SQL 2008 and DMVStats 20080904021847A</guid></item><item><title>New Post: Monitoring multiple SQL server</title><link>http://www.codeplex.com/sqldmvstats/Thread/View.aspx?ThreadId=32622</link><description>&lt;div style="line-height: normal;"&gt;Does anyone know if it is possible to monitor nultiple databases on multiple servers using DMV Stats.&lt;br&gt;
I want to collectall the info in the DB in my PC .
&lt;/div&gt;</description><author>pkrapf</author><pubDate>Thu, 31 Jul 2008 09:43:15 GMT</pubDate><guid isPermaLink="false">New Post: Monitoring multiple SQL server 20080731094315A</guid></item><item><title>New Post: DMVStats report very slow</title><link>http://www.codeplex.com/sqldmvstats/Thread/View.aspx?ThreadId=29802</link><description>&lt;div style="line-height: normal;"&gt;Hi! I installed DMVstats on my Dev enviornment and collected data for couple of weeks and created 2 baseline (each baseline has only 1 day worth of data). Now, when I try to query top IO query, it just takes long time (3-5 minutes) to give the result. And the result set also has thousands of duplicate records. When I ask for give me top IO query, I expect to see distinct sql statements and their average execution times and number of execution. I don't want to see 1000s lines of same sql statements even if they were actually executed that many times.&lt;br&gt;
Has anyone else run into this problem?&lt;br&gt;
&lt;br&gt;
And by the way this is a great free tool and love to put it on production, if the problem mentioned above can be fixed.&lt;br&gt;
&lt;br&gt;
thanks,&lt;br&gt;
kush
&lt;/div&gt;</description><author>kdhakal</author><pubDate>Tue, 17 Jun 2008 16:30:11 GMT</pubDate><guid isPermaLink="false">New Post: DMVStats report very slow 20080617043011P</guid></item><item><title>NEW POST: Question on DMVstats</title><link>http://www.codeplex.com/sqldmvstats/Thread/View.aspx?ThreadId=28080</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
&lt;br&gt;
I have the following questions on DMVStats:&lt;br&gt;
&lt;br&gt;
1.  If I configure DMVstats to collect data only for a specific database, will it still continue to collect data for all the databases?&lt;br&gt;
&lt;br&gt;
Reason:  When I look for the data related to different waits(Like I/O etc), it is showing the data even for the DMVStats database which is not added to the list of configured databases.&lt;br&gt;
&lt;br&gt;
2.  When I look at the resource waits graph, I see that there was lot of waiting for service broker.  There is nothing on sql server which makes use of service broker.  &lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Please advice.  Your help is highly appreciated.&lt;br&gt;
&lt;br&gt;
-Shiva
&lt;/div&gt;</description><author>shivakonduru</author><pubDate>Tue, 20 May 2008 15:18:34 GMT</pubDate><guid isPermaLink="false">NEW POST: Question on DMVstats 20080520031834P</guid></item><item><title>CREATED ISSUE: DeployReports Errors</title><link>http://www.codeplex.com/sqldmvstats/WorkItem/View.aspx?WorkItemId=4742</link><description>We are using SSMS 2005 SSAS, SSRS, SSIS, ProCLarity and SharePoint 3.0 and we deploy all reports to SHarePoint  3.0 for integration.&lt;br /&gt;&lt;br /&gt;We are using the DeployReports.cmd and trying to use the following URL to deploy reports to SharePoint due to we are using SharePoint 3.0 Integration not reporting services and we receive the error below at botton of this description and we really need help not personel but help just with this issue. Thank you Scoop.&lt;br /&gt;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;owa2k3dwdev02&amp;#58;16216&amp;#47;sites&amp;#47;PPS&amp;#47;Report&lt;br /&gt;&lt;br /&gt;We deploy reports through BIDS using the following URL&amp;#39;s&lt;br /&gt;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;owa2k3dwdev02&amp;#58;16216&amp;#47;sites&amp;#47;PPS&amp;#47;Sources&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;owa2k3dwdev02&amp;#58;16216&amp;#47;sites&amp;#47;PPS&amp;#47;Report&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;owa2k3dwdev02&amp;#58;16216&amp;#47;sites&amp;#47;PPS&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&lt;br /&gt; This script will deploy DMVstats reports to the&lt;br /&gt; SQL Server Reporting Services instance at&lt;br /&gt;         http&amp;#58;&amp;#47;&amp;#47;owa2k3dwdev02&amp;#58;16216&amp;#47;sites&amp;#47;PPS&amp;#47;Report&lt;br /&gt;&lt;br /&gt; Press any key to continue or CTRL-C to abort ....&lt;br /&gt;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&lt;br /&gt;Beginning report deployment...&lt;br /&gt;System.Exception&amp;#58; Could not connect to server&amp;#58; http&amp;#58;&amp;#47;&amp;#47;owa2k3dwdev02&amp;#58;16216&amp;#47;sites&amp;#47;&lt;br /&gt;PPS&amp;#47;Report&amp;#47;ReportService2005.asmx ---&amp;#62; System.InvalidOperationException&amp;#58; Client&lt;br /&gt;found response content type of &amp;#39;text&amp;#47;html&amp;#59; charset&amp;#61;utf-8&amp;#39;, but expected &amp;#39;text&amp;#47;xm&lt;br /&gt;l&amp;#39;.&lt;br /&gt;The request failed with the error message&amp;#58;&lt;br /&gt;--&lt;br /&gt;&amp;#60;HTML dir&amp;#61;&amp;#34;ltr&amp;#34;&amp;#62;&lt;br /&gt;&amp;#60;HEAD&amp;#62;&amp;#60;meta name&amp;#61;&amp;#34;GENERATOR&amp;#34; content&amp;#61;&amp;#34;Microsoft SharePoint&amp;#34; &amp;#47;&amp;#62;&amp;#60;meta name&amp;#61;&amp;#34;progid&lt;br /&gt;&amp;#34; content&amp;#61;&amp;#34;SharePoint.WebPartPage.Document&amp;#34; &amp;#47;&amp;#62;&amp;#60;meta HTTP-EQUIV&amp;#61;&amp;#34;Content-Type&amp;#34; co&lt;br /&gt;ntent&amp;#61;&amp;#34;text&amp;#47;html&amp;#59; charset&amp;#61;utf-8&amp;#34; &amp;#47;&amp;#62;&amp;#60;meta HTTP-EQUIV&amp;#61;&amp;#34;Expires&amp;#34; content&amp;#61;&amp;#34;0&amp;#34; &amp;#47;&amp;#62;&amp;#60;met&lt;br /&gt;a name&amp;#61;&amp;#34;ROBOTS&amp;#34; content&amp;#61;&amp;#34;NOHTMLINDEX&amp;#34; &amp;#47;&amp;#62;&amp;#60;title&amp;#62;&lt;br /&gt;</description><author>Scoop</author><pubDate>Wed, 14 May 2008 13:54:08 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: DeployReports Errors 20080514015408P</guid></item><item><title>COMMENTED ISSUE: System.Exception: Could not connect to server</title><link>http://www.codeplex.com/sqldmvstats/WorkItem/View.aspx?WorkItemId=2262</link><description>Hi&amp;#33;&lt;br /&gt;&lt;br /&gt;I am getting an error when I try to install the reports. Im not that familar with the sql reporting services so it could be a very basic error. &lt;br /&gt;Or could it be that I am on a 64-bit machine&amp;#63; &lt;br /&gt;&lt;br /&gt;Anyway, what I get is pasted below when I try to run DeployReports.cmd. &lt;br /&gt;&lt;br /&gt;I have tried to change the loclahost to our servername but still same error. IIS is up and running. Any hints on troubleshooting&amp;#63;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&lt;br /&gt; This script will deploy DMVstats reports to the&lt;br /&gt; SQL Server Reporting Services instance at&lt;br /&gt;         http&amp;#58;&amp;#47;&amp;#47;localhost&amp;#47;reportserver&lt;br /&gt;&lt;br /&gt; Press any key to continue or CTRL-C to abort ....&lt;br /&gt;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&lt;br /&gt;Beginning report deployment...&lt;br /&gt;System.Exception&amp;#58; Could not connect to server&amp;#58; http&amp;#58;&amp;#47;&amp;#47;localhost&amp;#47;reportserver&amp;#47;ReportService2005.asmx ---&amp;#62; System.Net.WebE&lt;br /&gt;xception&amp;#58; The request failed with HTTP status 404&amp;#58; Not Found.&lt;br /&gt;   at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse&amp;#40;SoapClientMessage message, WebResponse response,&lt;br /&gt; Stream responseStream, Boolean asyncCall&amp;#41;&lt;br /&gt;   at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke&amp;#40;String methodName, Object&amp;#91;&amp;#93; parameters&amp;#41;&lt;br /&gt;   at Microsoft.SqlServer.ReportingServices2005.ReportingService2005.ListSecureMethods&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.ReportingServices.ScriptHost.Management2005Endpoint.PingService&amp;#40;String url, String userName, String pass&lt;br /&gt;word, String domain, Int32 timeout&amp;#41;&lt;br /&gt;   at Microsoft.ReportingServices.ScriptHost.ScriptHost.DetermineServerUrlSecurity&amp;#40;&amp;#41;&lt;br /&gt;   --- End of inner exception stack trace ---&lt;br /&gt;   at Microsoft.ReportingServices.ScriptHost.ScriptHost.DetermineServerUrlSecurity&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.ReportingServices.ScriptHost.ScriptHost.InstanceMain&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.ReportingServices.BaseCmdLine.CommandLineMain&amp;#40;String&amp;#91;&amp;#93; args, BaseCmdLine instance&amp;#41;&lt;br /&gt;&amp;#61;&amp;#61; An error occurred.  See P&amp;#58;&amp;#92;Microsoft&amp;#92;SQLServer&amp;#92;dmvstats 1.01&amp;#92;DeployReports.log for details&lt;br /&gt;Press any key to continue . . .&lt;br /&gt;&lt;br /&gt;The DeployReports.log is empty. &lt;br /&gt;&lt;br /&gt;Thanks &lt;br /&gt;Ola&lt;br /&gt;Comments: ** Comment from web user: Scoop ** &lt;p&gt;What was the resolution for this issue you were having if you do not mind sharing&amp;#63;&amp;#63;&lt;/p&gt;&lt;p&gt;We are trying to Deploy the deployreports.cmd also but to sharepoint 3.0 report server URL and are receiving the same error. &lt;/p&gt;&lt;p&gt;Help anyone&amp;#63;&amp;#63;&amp;#47;&lt;/p&gt;</description><author>Scoop</author><pubDate>Tue, 13 May 2008 18:09:17 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: System.Exception: Could not connect to server 20080513060917P</guid></item><item><title>CREATED ISSUE: Installation issue</title><link>http://www.codeplex.com/sqldmvstats/WorkItem/View.aspx?WorkItemId=3861</link><description>I would like to know if i can install this application in a Clustered environment.&lt;br /&gt;</description><author>spenumatsa</author><pubDate>Thu, 28 Feb 2008 19:16:54 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Installation issue 20080228071654P</guid></item><item><title>NEW POST: are the management views actually reliable?</title><link>http://www.codeplex.com/sqldmvstats/Thread/View.aspx?ThreadId=17859</link><description>&lt;div class="wikidoc"&gt;
I use the DMV sys.dm&lt;i&gt;db&lt;/i&gt;index&lt;i&gt;usage&lt;/i&gt;stats and as far as I see all used indexes are recorded. The DMV's are cleared when you restart the server. So you have to make a snanpshot of sys.dm&lt;i&gt;db&lt;/i&gt;index&lt;i&gt;usage&lt;/i&gt;stats just before you shut down the server.&lt;br /&gt; &lt;br /&gt;You also have to keep in mind that maybe not every process runs in 71 days. In this case a longer period would be needed to see all used indexes.&lt;br /&gt;
&lt;/div&gt;</description><author>ijeb</author><pubDate>Wed, 02 Jan 2008 16:54:52 GMT</pubDate><guid isPermaLink="false">NEW POST: are the management views actually reliable? 20080102045452P</guid></item><item><title>Project License Changed</title><link>http://www.codeplex.com/sqldmvstats/Project/License.aspx?LicenseHistoryId=7052</link><description>Microsoft Public License &amp;#40;Ms-PL&amp;#41;&amp;#13;&amp;#10;&amp;#13;&amp;#10;This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.&amp;#13;&amp;#10;&amp;#13;&amp;#10;1. Definitions&amp;#13;&amp;#10;&amp;#13;&amp;#10;The terms &amp;#34;reproduce,&amp;#34; &amp;#34;reproduction,&amp;#34; &amp;#34;derivative works,&amp;#34; and &amp;#34;distribution&amp;#34; have the same meaning here as under U.S. copyright law.&amp;#13;&amp;#10;&amp;#13;&amp;#10;A &amp;#34;contribution&amp;#34; is the original software, or any additions or changes to the software.&amp;#13;&amp;#10;&amp;#13;&amp;#10;A &amp;#34;contributor&amp;#34; is any person that distributes its contribution under this license.&amp;#13;&amp;#10;&amp;#13;&amp;#10;&amp;#34;Licensed patents&amp;#34; are a contributor&amp;#39;s patent claims that read directly on its contribution.&amp;#13;&amp;#10;&amp;#13;&amp;#10;2. Grant of Rights&amp;#13;&amp;#10;&amp;#13;&amp;#10;&amp;#40;A&amp;#41; Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create.&amp;#13;&amp;#10;&amp;#13;&amp;#10;&amp;#40;B&amp;#41; Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and&amp;#47;or otherwise dispose of its contribution in the software or derivative works of the contribution in the software.&amp;#13;&amp;#10;&amp;#13;&amp;#10;3. Conditions and Limitations&amp;#13;&amp;#10;&amp;#13;&amp;#10;&amp;#40;A&amp;#41; No Trademark License- This license does not grant you rights to use any contributors&amp;#39; name, logo, or trademarks.&amp;#13;&amp;#10;&amp;#13;&amp;#10;&amp;#40;B&amp;#41; If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically.&amp;#13;&amp;#10;&amp;#13;&amp;#10;&amp;#40;C&amp;#41; If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software.&amp;#13;&amp;#10;&amp;#13;&amp;#10;&amp;#40;D&amp;#41; If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license.&amp;#13;&amp;#10;&amp;#13;&amp;#10;&amp;#40;E&amp;#41; The software is licensed &amp;#34;as-is.&amp;#34; You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.</description><author></author><pubDate>Fri, 30 Nov 2007 19:26:25 GMT</pubDate><guid isPermaLink="false">Project License Changed 20071130072625P</guid></item><item><title>NEW POST: What SQL Server versions are supported/required?</title><link>http://www.codeplex.com/sqldmvstats/Thread/View.aspx?ThreadId=18128</link><description>&lt;div class="wikidoc"&gt;
 &lt;br /&gt;I've got this installed on an RTM (9.0.1399) standard edition server and the snapshot job keeps hanging with 100% of 1 CPU utilised. I note that the SQL Server 2005 Performance Dashboard stipulates the SP2 is required because of both new features and bug fixes. &lt;br /&gt; &lt;br /&gt;&lt;u&gt;From the PerfDash.chm:&lt;/u&gt;&lt;br /&gt;&lt;i&gt;&amp;quot;The report themselves also utilize new server side functionality added in Service Pack 2, notably sys.dm&lt;/i&gt;exec&lt;i&gt;text&lt;/i&gt;query&lt;i&gt;plan and an extension to the OBJECT_NAME() function to accept an optional dbid parameter, and also rely on several bug fixes related to the data reported in the dynamic management views (DMVs).   Consequently, the SQL Server instance being monitored via the dashboard reports must also be running Service Pack 2 or higher.&amp;quot;&lt;/i&gt;&lt;br /&gt; &lt;br /&gt;How about DMVstats?&lt;br /&gt;
&lt;/div&gt;</description><author>alasdaircs</author><pubDate>Wed, 21 Nov 2007 14:40:32 GMT</pubDate><guid isPermaLink="false">NEW POST: What SQL Server versions are supported/required? 20071121024032P</guid></item></channel></rss>