<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>PolyMon</title><link>http://www.codeplex.com/polymon/Project/ProjectRss.aspx</link><description>PolyMon is a .NET&amp;#47;SQL Server based system to monitor, measure, analyze and alert on a variety of network resources including CPU, Ping, WMI, PowerShell, SNMP, SQL, Disk, File, URL, TCP Port, etc. A...</description><item><title>New Post: does this sound possible</title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=34785</link><description>&lt;div style="line-height: normal;"&gt;ok this is cool and scary at the same time I have polymon running as system!&amp;nbsp; please note this was not my original request!&lt;br&gt;
ran&amp;nbsp;powershell &amp;nbsp;as system via the at command&amp;nbsp;&lt;br&gt;
AT sometime /interactive &amp;quot;path\ps.exe&amp;quot;&lt;br&gt;
$Credential = Get-Credential&lt;br&gt;
$credential.Password | ConvertFrom-SecureString | Set-Content c:\drv\pw.txt&lt;br&gt;
this store an encrypted hash within the pw.txt file, yes there are some wierd security issues here!&amp;nbsp;&lt;br&gt;
&lt;br&gt;
then within polymon I have a powershell monitor&amp;nbsp;doing the following (sanitized for security sake)&lt;br&gt;
$credential.Password | ConvertFrom-SecureString | Set-Content c:\drv\pw.txt&lt;br&gt;
$password = Get-Content c:\drv\pw.txt | ConvertTo-SecureString &lt;br&gt;
$credential = New-Object System.Management.Automation.PsCredential(&amp;quot;remotedomain\username&amp;quot;,$password)&lt;br&gt;
if (&lt;br&gt;
(gwmi win32_logicaldisk -computer webs.remotedomain.com -cred&amp;nbsp; $credential -filter &amp;quot;deviceid='c:' and freespace&amp;lt;'100000000000'&amp;quot;).freespace&lt;br&gt;
&amp;nbsp; ) &lt;br&gt;
{&lt;br&gt;
$Status.StatusText=&amp;quot;OK.&amp;quot;&lt;br&gt;
$Status.StatusID=1&lt;br&gt;
$Counters.Add(&amp;quot;Counter 1&amp;quot;, (gwmi win32_logicaldisk -computer sp.johnstonesupply.com -cred&amp;nbsp; $credential -filter &amp;quot;deviceid='c:' and freespace&amp;lt;'100000000000'&amp;quot;).freespace)&lt;br&gt;
}&lt;br&gt;
&lt;br&gt;
the damn thing worked!&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>trothcp</author><pubDate>Fri, 05 Sep 2008 20:53:57 GMT</pubDate><guid isPermaLink="false">New Post: does this sound possible 20080905085357P</guid></item><item><title>New Post: does this sound possible</title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=34785</link><description>&lt;div style="line-height: normal;"&gt;Possibly, I haven't tried running PowerShell as the Local System account (or Network Service account).  Or you could use a specified encryption key to encrypt the file you are writing to disk and use that to read the password.  It really depends on where your security concerns are with that machine.&lt;/div&gt;</description><author>smurawski</author><pubDate>Tue, 02 Sep 2008 23:10:32 GMT</pubDate><guid isPermaLink="false">New Post: does this sound possible 20080902111032P</guid></item><item><title>New Post: does this sound possible</title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=34785</link><description>&lt;div style="line-height: normal;"&gt;need to monitor a non domain joined https site.&amp;nbsp; I was thinking that I could use powershells get-credential save to file trick.&amp;nbsp; The get-credential would be the the credentials of a given limited permission user on the https web site.&amp;nbsp; The save file can only be decrypted by the user that created it.&amp;nbsp; So in that case I can run powershell as &amp;quot;system&amp;quot; create the text file.&amp;nbsp; Then hopefully my powershell script that runs as system will be able to read/decrypt the encrypted text file then access the remote https site.&amp;nbsp; Does that seem reasonable?&lt;br&gt;
thanks&lt;br&gt;
tr&lt;br&gt;
&lt;/div&gt;</description><author>trothcp</author><pubDate>Tue, 02 Sep 2008 22:48:55 GMT</pubDate><guid isPermaLink="false">New Post: does this sound possible 20080902104855P</guid></item><item><title>New Post: the disk cleanup example might be dangerous!</title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=34308</link><description>&lt;div style="line-height: normal;"&gt;yep in hindsight I was a little harsh on the wording of the subject!&amp;nbsp; sorry about that.&lt;br&gt;
tr&lt;br&gt;
&lt;/div&gt;</description><author>trothcp</author><pubDate>Tue, 02 Sep 2008 14:37:36 GMT</pubDate><guid isPermaLink="false">New Post: the disk cleanup example might be dangerous! 20080902023736P</guid></item><item><title>New Post: the disk cleanup example might be dangerous!</title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=34308</link><description>&lt;div style="line-height: normal;"&gt;Depends on what rules you want to follow to delete files. If you wanted to simply delete files that are no longer accessed, then using the last accessed date does make more sense.&lt;br&gt;
This sample was pulled from a production environment on a web server to clean up temporary files created by various apps on the web server. For that purpose, last write time = create date and hence the criteria in the sample.&lt;br&gt;
Of course, you should always review any scripts you download from the web and double check to make sure it does exactly what you expect it to do!!&lt;br&gt;
&amp;nbsp;Either that or very good reliable backups :-)
&lt;/div&gt;</description><author>fbaptiste</author><pubDate>Sat, 30 Aug 2008 15:37:10 GMT</pubDate><guid isPermaLink="false">New Post: the disk cleanup example might be dangerous! 20080830033710P</guid></item><item><title>New Post: the disk cleanup example might be dangerous!</title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=34308</link><description>&lt;div style="line-height: normal;"&gt;correct me if I'm wrong but by using the&amp;nbsp;LastWriteTime you might delete files that are still actively being used.&amp;nbsp; Using&amp;nbsp;lastaccessedtime might be a better alternative.&lt;br&gt;
tr&lt;br&gt;
&lt;/div&gt;</description><author>trothcp</author><pubDate>Tue, 26 Aug 2008 16:12:59 GMT</pubDate><guid isPermaLink="false">New Post: the disk cleanup example might be dangerous! 20080826041259P</guid></item><item><title>New Post: Always get  'SNMP Value=NULL'</title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=34201</link><description>&lt;div style="line-height: normal;"&gt;I try to use the SNMP monitor but I always get 'SNMP Value=NULL'. There is definitely a number value in the specified OID (e.g. '.1.3.6.1.2.1.2.1' or '.1.3.6.1.2.1.1.7').&lt;br&gt;
I appreciate any help.&lt;br&gt;
&lt;br&gt;
yesa&lt;br&gt;
&lt;/div&gt;</description><author>yesa</author><pubDate>Mon, 25 Aug 2008 09:56:15 GMT</pubDate><guid isPermaLink="false">New Post: Always get  'SNMP Value=NULL' 20080825095615A</guid></item><item><title>New Post: Error while saving operator</title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=34039</link><description>&lt;div style="line-height: normal;"&gt;I recently upgraded to the latest version of Poymon.&amp;nbsp; I love the new features, but I'm having issues with editing Operators.&amp;nbsp; It seems that there is a new field for sending Summary Notifications (Heartbeat).&amp;nbsp; If I don't have that field checked I receive the following error and am unable to save the changes to the Operator:&lt;br&gt;
&lt;br&gt;
Error Occured while saving Operator: Cannot insert the value NULL into column 'SummaryNextNofigyDT', table 'PolyMon.dbo.Operator';&lt;br&gt;
Column does not allow nulls. UPDATE fails.&lt;br&gt;
This statement has been terminated.&lt;br&gt;
&lt;br&gt;
Is there any fix someone can suggest to this error?
&lt;/div&gt;</description><author>JHouck</author><pubDate>Thu, 21 Aug 2008 23:48:46 GMT</pubDate><guid isPermaLink="false">New Post: Error while saving operator 20080821114846P</guid></item><item><title>New Post: Reporting Services</title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=33365</link><description>&lt;div style="line-height: normal;"&gt;&lt;br&gt;
&lt;br&gt;
Has anyone written any Reporting Services [1] reports for PolyMon, they'd be willing to share?&lt;br&gt;
&lt;br&gt;
Fred, have you given any thought in to hosting RDL reports in PolyMon?&lt;br&gt;
&lt;br&gt;
http://www.microsoft.com/sql/technologies/reporting/default.mspx&lt;br&gt;
&lt;/div&gt;</description><author>TreeStryder</author><pubDate>Tue, 12 Aug 2008 15:09:53 GMT</pubDate><guid isPermaLink="false">New Post: Reporting Services 20080812030953P</guid></item><item><title>Created Issue: Monitor Fails until Executive restarted</title><link>http://www.codeplex.com/polymon/WorkItem/View.aspx?WorkItemId=17667</link><description>I&amp;#39;ve noticed that sometimes Polymon will start to have monitors that fails until the PolyMon Executive service is restarted.  At that point it works fine again.  If I run the monitor manually running as the same user as the Executive service, it also works fine.  It seems to be related to systems &amp;#40;hosts&amp;#41; or services being restarted.  Sometimes when a server&amp;#47;service is restarted it can&amp;#39;t monitor it properly until the executive service is restarted.&lt;br /&gt;&lt;br /&gt;This is status of one of the times I&amp;#39;ve seen this.  Unfortunately I didn&amp;#39;t record the others.  It is monitoring Type&amp;#58;&amp;#34;Performance Monitor&amp;#34;, Category&amp;#58;&amp;#34;SQLServer&amp;#58;SQL Statistics&amp;#34;, Counter&amp;#58;&amp;#34;Batch Requests&amp;#47;sec&amp;#34;.  This box has very low usage and this counter is frequently 0.  Running it manually works fine and gets the current counter.  It started failing after restarting the system a couple of days ago.&lt;br /&gt;&amp;#34;Fail. The Counter layout for the Category specified is invalid, a counter of the type&amp;#58;  AverageCount64, AverageTimer32, CounterMultiTimer, CounterMultiTimerInverse, CounterMultiTimer100Ns, CounterMultiTimer100NsInverse, RawFraction, or SampleFraction has to be immediately followed by any of the base counter types&amp;#58; AverageBase, CounterMultiBase, RawBase or SampleBase.&amp;#34;&lt;br /&gt;&lt;br /&gt;I restart the Execute service and it works for a while, but it takes about 30 minutes for it to start monitoring everything again.  Any help with this would be appreciated.&lt;br /&gt;</description><author>SQLGuru</author><pubDate>Mon, 04 Aug 2008 18:43:23 GMT</pubDate><guid isPermaLink="false">Created Issue: Monitor Fails until Executive restarted 20080804064323P</guid></item><item><title>New Post: Feature request. Notify only on x consecutive failures.</title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=32492</link><description>&lt;div style="line-height: normal;"&gt;&lt;p style="margin:0in 0in 0pt"&gt;&lt;span style="font-size:11pt;color:#1f497d;font-family:'Calibri','sans-serif'"&gt;Nice&lt;/span&gt;&lt;span style="font-size:10pt;color:#1f497d;font-family:'Verdana','sans-serif'"&gt;… &lt;/span&gt;&lt;/p&gt;
&lt;p style="margin:0in 0in 0pt"&gt;&lt;span style="font-size:10pt;color:#1f497d;font-family:'Verdana','sans-serif'"&gt;I swear that second checkbox was unavailable if the first one was unchecked. I am however, very glad to be wrong!&lt;/span&gt;&lt;/p&gt;
&lt;span style="font-size:10pt;color:#1f497d;font-family:'Verdana','sans-serif'"&gt;Thanks,&lt;/span&gt;
&lt;/div&gt;</description><author>SpeedG33k</author><pubDate>Wed, 30 Jul 2008 21:49:01 GMT</pubDate><guid isPermaLink="false">New Post: Feature request. Notify only on x consecutive failures. 20080730094901P</guid></item><item><title>New Post: Feature request. Notify only on x consecutive failures.</title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=32492</link><description>&lt;div style="line-height: normal;"&gt;You can do this currently by configuring your monitor notification rules as follows:&lt;br&gt;
&lt;ol&gt;
    &lt;li&gt;Select the &amp;quot;Alert after&amp;quot; radion button&lt;/li&gt;
    &lt;li&gt;Uncheck the &amp;quot;Every OK/Warning to Failure&amp;quot; checkbox&lt;/li&gt;
    &lt;li&gt;Check the &amp;quot;and every n consecutive Failure(s) threafter&amp;quot; setting the value for n to whatever number of times the monitor should fail before alerting you.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Hopefully this is what you were looking for.&lt;/p&gt;
&lt;/div&gt;</description><author>fbaptiste</author><pubDate>Wed, 30 Jul 2008 19:26:57 GMT</pubDate><guid isPermaLink="false">New Post: Feature request. Notify only on x consecutive failures. 20080730072657P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/polymon/Wiki/View.aspx?title=Home&amp;version=71</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;&lt;a href="http://polymon.wordpress.com" class="externalLink"&gt;PolyMon Blog&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;  &amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=RC3Screenshots&amp;amp;referringTitle=Home"&gt;Screenshots&lt;/a&gt;&lt;/b&gt;  &amp;nbsp;&amp;nbsp;&amp;nbsp;   &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=Samples&amp;amp;referringTitle=Home"&gt;Sample Solutions&lt;/a&gt;&lt;/b&gt;  &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=Roadmap&amp;amp;referringTitle=Home"&gt;Roadmap&lt;/a&gt;&lt;/b&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=Development%20and%20Runtime%20Environments&amp;amp;referringTitle=Home"&gt;System Requirements&lt;/a&gt;&lt;/b&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;   &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=News%20Feeds&amp;amp;referringTitle=Home"&gt;News Feeds&lt;/a&gt;&lt;/b&gt;&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;h4&gt;
New PolyMonRT!
&lt;/h4&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/polymonrt" class="externalLink"&gt;PolyMonRT&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt; is a real-time monitoring system. Unlike PolyMon it does not persist historical monitoring information and therefore does not require a database.&lt;br /&gt;PolyMonRT provides either gauge or chart representations of various monitors that can be moved and resized on the dashboard surface to create a customizable dashboard.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Recent News
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;i&gt;(5/16/2008)&lt;/i&gt;  &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=6121"&gt;Version 1.1.0&lt;/a&gt;&lt;/b&gt; has been released. This release addresses various issues as well as new functionality for post-event custom scripting (using PowerShell or VBScript), Heartbeat email notifications and various options for how to handle alert notifications that have queued up during Operator offline times.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;i&gt;(4/16/2008)&lt;/i&gt; New &lt;b&gt;PoShMon&lt;/b&gt; PowerShell snap-in provided by Steven M. This PowerShell snap-in allows you to interact with the PolyMon back-end system, allowing you to create monitors, associate operators, etc. You can find more info about it here: &lt;a href="http://powershell-basics.com/category/poshmon/" class="externalLink"&gt;http://powershell-basics.com/category/poshmon/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Thanks Steve!&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
Past News
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;i&gt;(9/27/2007)&lt;/i&gt; If you are following PolyMon's development, don't forget to check out the &lt;b&gt;PolyMon blog&lt;/b&gt; here: &lt;a href="http://polymon.wordpress.com" class="externalLink"&gt;PolyMon Blog&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Includes posts on upcoming releases and various PolyMon related issues.&lt;/li&gt;&lt;li&gt;&lt;i&gt;(6/19/2007)&lt;/i&gt; &lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=4926"&gt;Version 1.0.0&lt;/a&gt;  has been released.&lt;/li&gt;&lt;li&gt;&lt;i&gt;(5/14/2007)&lt;/i&gt; &lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=4144"&gt;TCP Port Monitor - 0.9.0.1 (SP)&lt;/a&gt;  has been released.&lt;/li&gt;&lt;li&gt;&lt;i&gt;(5/3/2007)&lt;/i&gt; Sample solutions leveraging PowerShell and SQL Monitors are available in &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=Samples&amp;amp;referringTitle=Home"&gt;Sample Solutions&lt;/a&gt;&lt;/b&gt; &lt;/li&gt;&lt;li&gt;&lt;i&gt;(5/2/2007)&lt;/i&gt; &lt;b&gt;Service Pack 0.9.0.1&lt;/b&gt; A service pack has been released that fixes various issues and adds some additional functionality. For additional details and to download, please see &lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=3890"&gt;Service Pack 0.9.0.1&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;&lt;i&gt;(3/27/2007)&lt;/i&gt; &lt;b&gt;CPU Monitor&lt;/b&gt; CPU Monitor (uses Windows Performance Counters) that monitors all CPU instances/cores with warn/fail thresholds and standard historical performance logging. &lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=2702"&gt;CPU Monitor Release Candidate&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;i&gt;(3/23/2007)&lt;/i&gt; &lt;b&gt;Disk Monitor&lt;/b&gt; Disk Monitor (alternative to WMI or PerfMon) contributed by Avian Waves. Thx! &lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=2701"&gt;Disk Monitor Release Candidate&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;i&gt;(3/21/2007)&lt;/i&gt; &lt;b&gt;PowerShell Integration!&lt;/b&gt; A new monitor has been released that allows PowerShell integration. &lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=2524"&gt;PowerShell Monitor Release Candidate&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;span class="codeInline"&gt;  &lt;/span&gt;&lt;br /&gt;&lt;h2&gt;
Welcome
&lt;/h2&gt;PolyMon is an open source system monitoring solution that can be used to generate email alerts and analyze historical trends of monitor counters and monitor statuses. It is based on the .NET 2.0 framework and SQL Server 2005.&lt;br /&gt; &lt;br /&gt;It is simple to use and run but flexible enough for many circumstances. &lt;br /&gt; &lt;br /&gt;It is made up of three primary components: &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;A &lt;i&gt;SQL Server database&lt;/i&gt; to store monitor statuses, alerts and general settings. &lt;/li&gt;&lt;li&gt;A windows service (&lt;i&gt;PolyMon Executive&lt;/i&gt;) that runs monitors on a periodic basis, logs results to the database and sends out email notifications.&lt;/li&gt;&lt;li&gt;A management/monitoring front-end (&lt;i&gt;PolyMon Manager&lt;/i&gt;) that is used to manage general settings, monitor definitions, operators, alert rules, etc. and analyze historical trends (both monitor counters and statuses). &lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Current monitor plug-ins: &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;CPU&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;&lt;b&gt;Disk&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;&lt;b&gt;File&lt;/b&gt; (Age and Counts)&lt;/li&gt;&lt;li&gt;Windows &lt;b&gt;Performance Counters&lt;/b&gt; Monitor (built-in Performance Counter browser)&lt;/li&gt;&lt;li&gt;&lt;b&gt;Ping&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;PowerShell&lt;/b&gt; Scripting&lt;/li&gt;&lt;li&gt;&lt;b&gt;SQL&lt;/b&gt; Monitor (Can run any stored procedure that returns resultsets in a specific format)&lt;/li&gt;&lt;li&gt;&lt;b&gt;SNMP&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;&lt;b&gt;TCP Port&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;&lt;b&gt;URL (HTML)&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;&lt;b&gt;URL (XML)&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;Windows &lt;b&gt;Service&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;&lt;b&gt;WMI&lt;/b&gt; Monitor (built-in WMI browser and query builder)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt; &lt;br /&gt;Monitors are built using a plug-in architecture and can be added to PolyMon without requiring a recompile of the application. New plug-ins simply need to inherit from a base class. Once compiled and placed in the appropriate directories, new monitors are registered with PolyMon using a plug-in registration form in PolyMon Manager. &lt;br /&gt; &lt;br /&gt;In addition, users can create completely custom monitors by using &lt;b&gt;PowerShell&lt;/b&gt; scripts. PolyMon now integrates PowerShell scripting allowing Status and Counter information to be passed back from a PowerShell script to the PolyMon PowerShell Monitor. This essentially provides PolyMon a complete integrated scripting language for custom monitoring. Furthermore, because these monitors are created using PowerShell you have full control over what actions to take in the event of a Warning or Failure state. &lt;br /&gt; &lt;br /&gt;&lt;b&gt;All questions and suggestions are welcome! Also more than welcome would be suggestions for new monitor types.&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;Thanks and please let me know if you find PolyMon useful!&lt;br /&gt;&lt;b&gt;Fred Baptiste&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;Note that the latest release of PolyMon is available for direct download through the nice people at &lt;b&gt;&lt;a href="http://www.fwnetwork.com" class="externalLink"&gt;Freeware Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>fbaptiste</author><pubDate>Wed, 30 Jul 2008 12:45:53 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20080730124553P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/polymon/Wiki/View.aspx?title=Home&amp;version=70</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;&lt;a href="http://polymon.wordpress.com" class="externalLink"&gt;PolyMon Blog&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;  &amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=RC3Screenshots&amp;amp;referringTitle=Home"&gt;Screenshots&lt;/a&gt;&lt;/b&gt;  &amp;nbsp;&amp;nbsp;&amp;nbsp;   &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=Samples&amp;amp;referringTitle=Home"&gt;Sample Solutions&lt;/a&gt;&lt;/b&gt;  &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=Roadmap&amp;amp;referringTitle=Home"&gt;Roadmap&lt;/a&gt;&lt;/b&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=Development%20and%20Runtime%20Environments&amp;amp;referringTitle=Home"&gt;System Requirements&lt;/a&gt;&lt;/b&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;   &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=News%20Feeds&amp;amp;referringTitle=Home"&gt;News Feeds&lt;/a&gt;&lt;/b&gt;&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;h4&gt;
New PolyMonRT!
&lt;/h4&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/polymonrt" class="externalLink"&gt;PolyMonRT&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt; is a real-time monitoring system. Unlike PolyMon it does not persist historical monitoring information and therefore does not require a database.&lt;br /&gt;PolyMonRT provides either gauge or chart representations of various monitors that can be moved and resized on the dahsboard surface to create a customizable dashboard.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Recent News
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;i&gt;(5/16/2008)&lt;/i&gt;  &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=6121"&gt;Version 1.1.0&lt;/a&gt;&lt;/b&gt; has been released. This release addresses various issues as well as new functionality for post-event custom scripting (using PowerShell or VBScript), Heartbeat email notifications and various options for how to handle alert notifications that have queued up during Operator offline times.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;i&gt;(4/16/2008)&lt;/i&gt; New &lt;b&gt;PoShMon&lt;/b&gt; PowerShell snap-in provided by Steven M. This PowerShell snap-in allows you to interact with the PolyMon back-end system, allowing you to create monitors, associate operators, etc. You can find more info about it here: &lt;a href="http://powershell-basics.com/category/poshmon/" class="externalLink"&gt;http://powershell-basics.com/category/poshmon/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Thanks Steve!&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
Past News
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;i&gt;(9/27/2007)&lt;/i&gt; If you are following PolyMon's development, don't forget to check out the &lt;b&gt;PolyMon blog&lt;/b&gt; here: &lt;a href="http://polymon.wordpress.com" class="externalLink"&gt;PolyMon Blog&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Includes posts on upcoming releases and various PolyMon related issues.&lt;/li&gt;&lt;li&gt;&lt;i&gt;(6/19/2007)&lt;/i&gt; &lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=4926"&gt;Version 1.0.0&lt;/a&gt;  has been released.&lt;/li&gt;&lt;li&gt;&lt;i&gt;(5/14/2007)&lt;/i&gt; &lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=4144"&gt;TCP Port Monitor - 0.9.0.1 (SP)&lt;/a&gt;  has been released.&lt;/li&gt;&lt;li&gt;&lt;i&gt;(5/3/2007)&lt;/i&gt; Sample solutions leveraging PowerShell and SQL Monitors are available in &lt;b&gt;&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=Samples&amp;amp;referringTitle=Home"&gt;Sample Solutions&lt;/a&gt;&lt;/b&gt; &lt;/li&gt;&lt;li&gt;&lt;i&gt;(5/2/2007)&lt;/i&gt; &lt;b&gt;Service Pack 0.9.0.1&lt;/b&gt; A service pack has been released that fixes various issues and adds some additional functionality. For additional details and to download, please see &lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=3890"&gt;Service Pack 0.9.0.1&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;&lt;i&gt;(3/27/2007)&lt;/i&gt; &lt;b&gt;CPU Monitor&lt;/b&gt; CPU Monitor (uses Windows Performance Counters) that monitors all CPU instances/cores with warn/fail thresholds and standard historical performance logging. &lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=2702"&gt;CPU Monitor Release Candidate&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;i&gt;(3/23/2007)&lt;/i&gt; &lt;b&gt;Disk Monitor&lt;/b&gt; Disk Monitor (alternative to WMI or PerfMon) contributed by Avian Waves. Thx! &lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=2701"&gt;Disk Monitor Release Candidate&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;i&gt;(3/21/2007)&lt;/i&gt; &lt;b&gt;PowerShell Integration!&lt;/b&gt; A new monitor has been released that allows PowerShell integration. &lt;a href="http://www.codeplex.com/polymon/Release/ProjectReleases.aspx?ReleaseId=2524"&gt;PowerShell Monitor Release Candidate&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;span class="codeInline"&gt;  &lt;/span&gt;&lt;br /&gt;&lt;h2&gt;
Welcome
&lt;/h2&gt;PolyMon is an open source system monitoring solution that can be used to generate email alerts and analyze historical trends of monitor counters and monitor statuses. It is based on the .NET 2.0 framework and SQL Server 2005.&lt;br /&gt; &lt;br /&gt;It is simple to use and run but flexible enough for many circumstances. &lt;br /&gt; &lt;br /&gt;It is made up of three primary components: &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;A &lt;i&gt;SQL Server database&lt;/i&gt; to store monitor statuses, alerts and general settings. &lt;/li&gt;&lt;li&gt;A windows service (&lt;i&gt;PolyMon Executive&lt;/i&gt;) that runs monitors on a periodic basis, logs results to the database and sends out email notifications.&lt;/li&gt;&lt;li&gt;A management/monitoring front-end (&lt;i&gt;PolyMon Manager&lt;/i&gt;) that is used to manage general settings, monitor definitions, operators, alert rules, etc. and analyze historical trends (both monitor counters and statuses). &lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;Current monitor plug-ins: &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;CPU&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;&lt;b&gt;Disk&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;&lt;b&gt;File&lt;/b&gt; (Age and Counts)&lt;/li&gt;&lt;li&gt;Windows &lt;b&gt;Performance Counters&lt;/b&gt; Monitor (built-in Performance Counter browser)&lt;/li&gt;&lt;li&gt;&lt;b&gt;Ping&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;PowerShell&lt;/b&gt; Scripting&lt;/li&gt;&lt;li&gt;&lt;b&gt;SQL&lt;/b&gt; Monitor (Can run any stored procedure that returns resultsets in a specific format)&lt;/li&gt;&lt;li&gt;&lt;b&gt;SNMP&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;&lt;b&gt;TCP Port&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;&lt;b&gt;URL (HTML)&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;&lt;b&gt;URL (XML)&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;Windows &lt;b&gt;Service&lt;/b&gt; Monitor&lt;/li&gt;&lt;li&gt;&lt;b&gt;WMI&lt;/b&gt; Monitor (built-in WMI browser and query builder)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt; &lt;br /&gt;Monitors are built using a plug-in architecture and can be added to PolyMon without requiring a recompile of the application. New plug-ins simply need to inherit from a base class. Once compiled and placed in the appropriate directories, new monitors are registered with PolyMon using a plug-in registration form in PolyMon Manager. &lt;br /&gt; &lt;br /&gt;In addition, users can create completely custom monitors by using &lt;b&gt;PowerShell&lt;/b&gt; scripts. PolyMon now integrates PowerShell scripting allowing Status and Counter information to be passed back from a PowerShell script to the PolyMon PowerShell Monitor. This essentially provides PolyMon a complete integrated scripting language for custom monitoring. Furthermore, because these monitors are created using PowerShell you have full control over what actions to take in the event of a Warning or Failure state. &lt;br /&gt; &lt;br /&gt;&lt;b&gt;All questions and suggestions are welcome! Also more than welcome would be suggestions for new monitor types.&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;Thanks and please let me know if you find PolyMon useful!&lt;br /&gt;&lt;b&gt;Fred Baptiste&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;Note that the latest release of PolyMon is available for direct download through the nice people at &lt;b&gt;&lt;a href="http://www.fwnetwork.com" class="externalLink"&gt;Freeware Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>fbaptiste</author><pubDate>Wed, 30 Jul 2008 12:44:39 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20080730124439P</guid></item><item><title>New Post: Feature request. Notify only on x consecutive failures.</title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=32492</link><description>&lt;div style="line-height: normal;"&gt;Great project, nice architecture, very well thought out. I did not see a place for feature requests so I just made my own.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
It would be nice if you could notify only after a preset number of failures. &lt;br&gt;
&lt;br&gt;
The ping monitor has this, but there are a lot of other situations where that would be useful.&lt;br&gt;
As an example :&lt;br&gt;
I have a powershell monitor that uses telnet to test a remote smtp server.&amp;nbsp;I don't want to know if it fails 1 time, if it fails 3 times I probably ought to go look though.&lt;br&gt;
I could build this into my script but it seems like the notification rules should be a little more flexible.&lt;br&gt;
&lt;br&gt;
And again, I really like the project. &lt;br&gt;
I have not considered writing code for a project like this in quite a while, but yours is very tempting.
&lt;/div&gt;</description><author>SpeedG33k</author><pubDate>Tue, 29 Jul 2008 19:05:05 GMT</pubDate><guid isPermaLink="false">New Post: Feature request. Notify only on x consecutive failures. 20080729070505P</guid></item><item><title>New Post: Multiple monitoring executives</title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=31840</link><description>&lt;div style="line-height: normal;"&gt;First thanks for your great product! I've never seen so much monitors in a solution. :)&lt;br&gt;
We use wmi to monitor windows server,and snmp for linux server, about 30 servers (20 counters per server). Now&amp;nbsp;we are suffering the perfromance of&amp;nbsp;monitoring executive.&amp;nbsp; In the document , you mentioned the &amp;quot;Multiple monitoring executives&amp;quot; .This is the&amp;nbsp;point which we have been expecting.
&lt;/div&gt;</description><author>tianqi</author><pubDate>Sat, 19 Jul 2008 15:45:15 GMT</pubDate><guid isPermaLink="false">New Post: Multiple monitoring executives 20080719034515P</guid></item><item><title>New Post: installation error </title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=23155</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi Ed:&lt;/p&gt;
&lt;p&gt;I have SQL Server 2005 Standard Edition.&amp;nbsp; I tried installing on 2000 but I saw the error there also.&amp;nbsp; I then upgraded the server to 2005 STD.&lt;/p&gt;
&lt;p&gt;The text of the error message is:&lt;/p&gt;
&lt;p style="margin:0in 0in 0pt"&gt;&lt;span style="font-size:10pt;font-family:Arial"&gt;Error- 2147217900: faile to execute SQL string, error&lt;/span&gt;&lt;/p&gt;
&lt;p style="margin:0in 0in 0pt"&gt;&lt;span style="font-size:10pt;font-family:Arial"&gt;detail: Line 7: Incorrect syntax near '('., SQL key:&lt;/span&gt;&lt;/p&gt;
&lt;p style="margin:0in 0in 0pt"&gt;&lt;span style="font-size:10pt;font-family:Arial"&gt;DBSetup_Integrated SQL string: CREATE TABLE&lt;/span&gt;&lt;/p&gt;
&lt;p style="margin:0in 0in 0pt"&gt;&lt;span style="font-size:10pt;font-family:Arial"&gt;[dbo].[OperatorRole](&lt;/span&gt;&lt;/p&gt;
&lt;p style="margin:0in 0in 0pt"&gt;&lt;span style="font-size:10pt;font-family:Arial"&gt;[RoleID] [tinyint] NOT NULL,&lt;/span&gt;&lt;/p&gt;
&lt;p style="margin:0in 0in 0pt"&gt;&lt;span style="font-size:10pt;font-family:Arial"&gt;[Role] [varchar](100) NOT NULL, (Two sqaure boxes) CONSTRAINT [...&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
ed300900 wrote:&lt;br&gt;
&lt;p&gt;what vcersion of SQL 2005 are yuo using ..express or standard ??&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
tholp wrote:&lt;br&gt;
Hi Ed:&lt;br&gt;
Thank you for getting back to me on this.&amp;nbsp; I tried a reinstall over the existing installation and I did not see an option to set the&amp;nbsp;case insentitive option.&amp;nbsp; Do you need to perform this installation from the Command Prompt, or from the Add Remove Programs?&amp;nbsp; I am surprised that this is an issue for me.&amp;nbsp; I have not seen many other issues, so I am wondering if this is some type of a conflict with my configuration.&amp;nbsp; &lt;br&gt;
&lt;br&gt;
I am hesitant to do a complete ininstall and reinstall of SQL because I have several other databases running in this instance.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
ed300900 wrote:&lt;br&gt;
&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
tholp wrote:&lt;br&gt;
I a having the same issue.&amp;nbsp; Can this&amp;nbsp;case insentitive option&amp;nbsp;after installation?&lt;br&gt;
&amp;nbsp;&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
ed300900 wrote:&lt;br&gt;
&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
groucho007 wrote:&lt;br&gt;
Situation:&lt;br&gt;
Windows 2003, SQL 2005, MDAC 2.8, .Net 2.0 and 3.0&lt;br&gt;
installing with all default settings&lt;br&gt;
Error Message during &amp;quot;executing SQL strings:&lt;br&gt;
Error -2147217900: failed to execute SQL string, error detail: Must declare the scalar variable &amp;quot;@Uptime&amp;quot;., SQL key: DBSetup_Integrated SQL string: CREATE PROCEDURE &lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=dbo"&gt;dbo&lt;/a&gt;.&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=agg_UpdateStatusTables"&gt;agg_UpdateStatusTables&lt;/a&gt;&lt;br&gt;
@MonitorID int,&lt;br&gt;
@EventDT datetime, etc.&lt;br&gt;
&lt;br&gt;
After pressing OK, the installation rolls back.&lt;br&gt;
&lt;br&gt;
Any clue what I do wrong?&lt;br&gt;
Tnx in advance&lt;br&gt;
&lt;br&gt;
----------------------------------------------------------------------------------------------------------------&lt;br&gt;
&lt;br&gt;
Had a similar problem ..mine was looking for an invalid column TimeSpan....&lt;br&gt;
&lt;br&gt;
Ensure you choose the case insentitive option in SQL 2005 install&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Hope this helps&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Cheers&lt;br&gt;
&lt;br&gt;
Ed300900&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
Hi really you are better re-installing SQL2005 and ensuring you DO NOT choose the CASE SENSITIVE option.&lt;br&gt;
&lt;br&gt;
The sql script its trying to run has a variation of entries..Timespan , TimeSpan .. so if you choose case insensitive..its all good&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>tholp</author><pubDate>Sun, 13 Jul 2008 18:12:51 GMT</pubDate><guid isPermaLink="false">New Post: installation error  20080713061251P</guid></item><item><title>New Post: installation error </title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=23155</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;what vcersion of SQL 2005 are yuo using ..express or standard ??&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
tholp wrote:&lt;br&gt;
Hi Ed:&lt;br&gt;
Thank you for getting back to me on this.&amp;nbsp; I tried a reinstall over the existing installation and I did not see an option to set the&amp;nbsp;case insentitive option.&amp;nbsp; Do you need to perform this installation from the Command Prompt, or from the Add Remove Programs?&amp;nbsp; I am surprised that this is an issue for me.&amp;nbsp; I have not seen many other issues, so I am wondering if this is some type of a conflict with my configuration.&amp;nbsp; &lt;br&gt;
&lt;br&gt;
I am hesitant to do a complete ininstall and reinstall of SQL because I have several other databases running in this instance.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
ed300900 wrote:&lt;br&gt;
&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
tholp wrote:&lt;br&gt;
I a having the same issue.&amp;nbsp; Can this&amp;nbsp;case insentitive option&amp;nbsp;after installation?&lt;br&gt;
&amp;nbsp;&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
ed300900 wrote:&lt;br&gt;
&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
groucho007 wrote:&lt;br&gt;
Situation:&lt;br&gt;
Windows 2003, SQL 2005, MDAC 2.8, .Net 2.0 and 3.0&lt;br&gt;
installing with all default settings&lt;br&gt;
Error Message during &amp;quot;executing SQL strings:&lt;br&gt;
Error -2147217900: failed to execute SQL string, error detail: Must declare the scalar variable &amp;quot;@Uptime&amp;quot;., SQL key: DBSetup_Integrated SQL string: CREATE PROCEDURE &lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=dbo"&gt;dbo&lt;/a&gt;.&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=agg_UpdateStatusTables"&gt;agg_UpdateStatusTables&lt;/a&gt;&lt;br&gt;
@MonitorID int,&lt;br&gt;
@EventDT datetime, etc.&lt;br&gt;
&lt;br&gt;
After pressing OK, the installation rolls back.&lt;br&gt;
&lt;br&gt;
Any clue what I do wrong?&lt;br&gt;
Tnx in advance&lt;br&gt;
&lt;br&gt;
----------------------------------------------------------------------------------------------------------------&lt;br&gt;
&lt;br&gt;
Had a similar problem ..mine was looking for an invalid column TimeSpan....&lt;br&gt;
&lt;br&gt;
Ensure you choose the case insentitive option in SQL 2005 install&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Hope this helps&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Cheers&lt;br&gt;
&lt;br&gt;
Ed300900&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
Hi really you are better re-installing SQL2005 and ensuring you DO NOT choose the CASE SENSITIVE option.&lt;br&gt;
&lt;br&gt;
The sql script its trying to run has a variation of entries..Timespan , TimeSpan .. so if you choose case insensitive..its all good&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>ed300900</author><pubDate>Fri, 11 Jul 2008 05:52:12 GMT</pubDate><guid isPermaLink="false">New Post: installation error  20080711055212A</guid></item><item><title>New Post: installation error </title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=23155</link><description>&lt;div style="line-height: normal;"&gt;Hi Ed:&lt;br&gt;
Thank you for getting back to me on this.&amp;nbsp; I tried a reinstall over the existing installation and I did not see an option to set the&amp;nbsp;case insentitive option.&amp;nbsp; Do you need to perform this installation from the Command Prompt, or from the Add Remove Programs?&amp;nbsp; I am surprised that this is an issue for me.&amp;nbsp; I have not seen many other issues, so I am wondering if this is some type of a conflict with my configuration.&amp;nbsp; &lt;br&gt;
&lt;br&gt;
I am hesitant to do a complete ininstall and reinstall of SQL because I have several other databases running in this instance.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
ed300900 wrote:&lt;br&gt;
&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
tholp wrote:&lt;br&gt;
I a having the same issue.&amp;nbsp; Can this&amp;nbsp;case insentitive option&amp;nbsp;after installation?&lt;br&gt;
&amp;nbsp;&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
ed300900 wrote:&lt;br&gt;
&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
groucho007 wrote:&lt;br&gt;
Situation:&lt;br&gt;
Windows 2003, SQL 2005, MDAC 2.8, .Net 2.0 and 3.0&lt;br&gt;
installing with all default settings&lt;br&gt;
Error Message during &amp;quot;executing SQL strings:&lt;br&gt;
Error -2147217900: failed to execute SQL string, error detail: Must declare the scalar variable &amp;quot;@Uptime&amp;quot;., SQL key: DBSetup_Integrated SQL string: CREATE PROCEDURE &lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=dbo"&gt;dbo&lt;/a&gt;.&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=agg_UpdateStatusTables"&gt;agg_UpdateStatusTables&lt;/a&gt;&lt;br&gt;
@MonitorID int,&lt;br&gt;
@EventDT datetime, etc.&lt;br&gt;
&lt;br&gt;
After pressing OK, the installation rolls back.&lt;br&gt;
&lt;br&gt;
Any clue what I do wrong?&lt;br&gt;
Tnx in advance&lt;br&gt;
&lt;br&gt;
----------------------------------------------------------------------------------------------------------------&lt;br&gt;
&lt;br&gt;
Had a similar problem ..mine was looking for an invalid column TimeSpan....&lt;br&gt;
&lt;br&gt;
Ensure you choose the case insentitive option in SQL 2005 install&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Hope this helps&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Cheers&lt;br&gt;
&lt;br&gt;
Ed300900&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
Hi really you are better re-installing SQL2005 and ensuring you DO NOT choose the CASE SENSITIVE option.&lt;br&gt;
&lt;br&gt;
The sql script its trying to run has a variation of entries..Timespan , TimeSpan .. so if you choose case insensitive..its all good&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>tholp</author><pubDate>Fri, 11 Jul 2008 00:01:59 GMT</pubDate><guid isPermaLink="false">New Post: installation error  20080711120159A</guid></item><item><title>New Post: installation error </title><link>http://www.codeplex.com/polymon/Thread/View.aspx?ThreadId=23155</link><description>&lt;div style="line-height: normal;"&gt;&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
tholp wrote:&lt;br&gt;
I a having the same issue.&amp;nbsp; Can this&amp;nbsp;case insentitive option&amp;nbsp;after installation?&lt;br&gt;
&amp;nbsp;&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
ed300900 wrote:&lt;br&gt;
&lt;br&gt;
&lt;div style="border-right:medium none;padding-right:0.2em;border-top:#aaa 0.1em dotted;padding-left:0.2em;padding-bottom:0.2em;margin:1em 0em 2.5em 3em;border-left:medium none;padding-top:0.2em;border-bottom:#aaa 0.1em dotted;font-style:italic"&gt;&lt;br&gt;
groucho007 wrote:&lt;br&gt;
Situation:&lt;br&gt;
Windows 2003, SQL 2005, MDAC 2.8, .Net 2.0 and 3.0&lt;br&gt;
installing with all default settings&lt;br&gt;
Error Message during &amp;quot;executing SQL strings:&lt;br&gt;
Error -2147217900: failed to execute SQL string, error detail: Must declare the scalar variable &amp;quot;@Uptime&amp;quot;., SQL key: DBSetup_Integrated SQL string: CREATE PROCEDURE &lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=dbo"&gt;dbo&lt;/a&gt;.&lt;a href="http://www.codeplex.com/polymon/Wiki/View.aspx?title=agg_UpdateStatusTables"&gt;agg_UpdateStatusTables&lt;/a&gt;&lt;br&gt;
@MonitorID int,&lt;br&gt;
@EventDT datetime, etc.&lt;br&gt;
&lt;br&gt;
After pressing OK, the installation rolls back.&lt;br&gt;
&lt;br&gt;
Any clue what I do wrong?&lt;br&gt;
Tnx in advance&lt;br&gt;
&lt;br&gt;
----------------------------------------------------------------------------------------------------------------&lt;br&gt;
&lt;br&gt;
Had a similar problem ..mine was looking for an invalid column TimeSpan....&lt;br&gt;
&lt;br&gt;
Ensure you choose the case insentitive option in SQL 2005 install&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Hope this helps&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Cheers&lt;br&gt;
&lt;br&gt;
Ed300900&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
Hi really you are better re-installing SQL2005 and ensuring you DO NOT choose the CASE SENSITIVE option.&lt;br&gt;
&lt;br&gt;
The sql script its trying to run has a variation of entries..Timespan , TimeSpan .. so if you choose case insensitive..its all good&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>ed300900</author><pubDate>Thu, 10 Jul 2008 15:02:06 GMT</pubDate><guid isPermaLink="false">New Post: installation error  20080710030206P</guid></item></channel></rss>