<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Return to LifeAsBob - Polyserve</title>
    <link>http://www.lifeasbob.com/</link>
    <description>Horkay Blog</description>
    <language>en-us</language>
    <copyright>Robert J. Horkay</copyright>
    <lastBuildDate>Tue, 01 Dec 2009 19:54:25 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.0.7226.0</generator>
    <managingEditor>bobh@lifeasbob.com</managingEditor>
    <webMaster>bobh@lifeasbob.com</webMaster>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=084b34ac-7b00-491c-8ba2-4582bda484d4</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,084b34ac-7b00-491c-8ba2-4582bda484d4.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,084b34ac-7b00-491c-8ba2-4582bda484d4.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=084b34ac-7b00-491c-8ba2-4582bda484d4</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Migrating from one cluster technology to another or even with-in the same technology
is fairly easy.  Recently I'm run into an issue where we need to migrate a SQL
Server Instance from a HP Polyserve Cluster to a Microsoft Cluster.
</p>
        <p>
There were two issues I found in setting this up:
</p>
        <ul>
          <li>
Installing SQL Server on a Microsoft Cluster requires a virtual name 
</li>
          <li>
Keeping the exact same Port Number</li>
        </ul>
        <p>
The reason for the above two issues was to keep the down time to an absolute minimum
and ensure there were no changes necessary to the application or infrastructure (firewalls).
</p>
        <p>
Fortunately both HP Polyserve and Microsoft Clustering use virtual names, this is
what makes this possible.
</p>
        <p>
I found the following two links helpful:
</p>
        <p>
          <a href="http://msdn.microsoft.com/en-us/library/ms178083(SQL.90).aspx">How to: Rename
a SQL Server 2005 Virtual Server</a>
          <br />
          <a href="http://support.microsoft.com/kb/244980">How to change the network IP addresses
of SQL Server failover cluster instances<br /></a>
        </p>
        <p>
The key to making this happen is to install SQL Server using a temporary Virtual name
and IP Address and ensure to use the EXACT Same instance name.  Instance names
can not be changed with SQL Server 2005 (or at least it's not supported to change
them).  Changing the port number is pretty standard stuff.
</p>
        <p>
Now you can pre-test your migration of databases and user logins, and load test the
new hardware.  
</p>
        <p>
At the designated change time we performed the following.
</p>
        <ul>
          <li>
Take the Microsoft Cluster Off line 
</li>
          <li>
Take the Instance on HP Polyserve and delete the Instance and virtual name (binaries
and data files will be kept as a backout plan) 
</li>
          <li>
Using the SQL Server Configuration editor, change the IP address <strong>on all nodes</strong> in
the Microsoft Cluster: 
</li>
          <li>
Using the Cluster Administrator change the SQL Server IP Address 
</li>
          <li>
Using the Cluster Administrator change the SQL Server network name 
</li>
          <li>
Bring the Cluster on-line 
</li>
          <li>
Test</li>
        </ul>
        <p>
The one issue we ran into was with logical networks and VLANS, I don't have a complete
understanding of network topology, but only certain logical networks with-in our environment
can host different ranges of IP Addresses.  Initiall we built the new cluster
on a logical network that was unable to host the existing virtual name and the switch
failed, ensure to talk to your network, windows and DNS engineers about exactly what
your wanting to do so they can build things properly the first time, as they don't
like switching and changing things twice any more than DBA's do !
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/sql_network_switch.JPG" border="0" />
        </p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/sql_ip_switch.JPG" border="0" />
        </p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/sql_network_name_switch.JPG" border="0" />
        </p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=084b34ac-7b00-491c-8ba2-4582bda484d4" />
      </body>
      <title>Migrating from one Cluster to Another (Polyserve to Microsoft)</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,084b34ac-7b00-491c-8ba2-4582bda484d4.aspx</guid>
      <link>http://www.lifeasbob.com/2009/12/01/MigratingFromOneClusterToAnotherPolyserveToMicrosoft.aspx</link>
      <pubDate>Tue, 01 Dec 2009 19:54:25 GMT</pubDate>
      <description>&lt;p&gt;
Migrating from one cluster technology to another or even with-in the same technology
is fairly easy.&amp;nbsp; Recently I'm run into an issue where we need to migrate a SQL
Server Instance from a HP Polyserve Cluster to a Microsoft Cluster.
&lt;/p&gt;
&lt;p&gt;
There were two issues I found in setting this up:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
Installing SQL Server on a Microsoft Cluster requires a virtual name 
&lt;li&gt;
Keeping the exact same Port Number&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
The reason for the above two issues was to keep the down time to an absolute minimum
and ensure there were no changes necessary to the application or infrastructure (firewalls).
&lt;/p&gt;
&lt;p&gt;
Fortunately both HP Polyserve and Microsoft Clustering use virtual names, this is
what makes this possible.
&lt;/p&gt;
&lt;p&gt;
I found the following two links helpful:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://msdn.microsoft.com/en-us/library/ms178083(SQL.90).aspx"&gt;How to: Rename
a SQL Server 2005 Virtual Server&lt;/a&gt;
&lt;br&gt;
&lt;a href="http://support.microsoft.com/kb/244980"&gt;How to change the network IP addresses
of SQL Server failover cluster instances&lt;br&gt;
&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
The key to making this happen is to install SQL Server using a temporary Virtual name
and IP Address and ensure to use the EXACT Same instance name.&amp;nbsp; Instance names
can not be changed with SQL Server 2005 (or at least it's not supported to change
them).&amp;nbsp; Changing the port number is pretty standard stuff.
&lt;/p&gt;
&lt;p&gt;
Now you can pre-test your migration of databases and user logins, and load test the
new hardware.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
At the designated change time we performed the following.
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
Take the Microsoft Cluster Off line 
&lt;li&gt;
Take the Instance on HP Polyserve and delete the Instance and virtual name (binaries
and data files will be kept as a backout plan) 
&lt;li&gt;
Using the SQL Server Configuration editor, change the IP address &lt;strong&gt;on all nodes&lt;/strong&gt; in
the Microsoft Cluster: 
&lt;li&gt;
Using the Cluster Administrator change the SQL Server IP Address 
&lt;li&gt;
Using the Cluster Administrator change the SQL Server network name 
&lt;li&gt;
Bring the Cluster on-line 
&lt;li&gt;
Test&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
The one issue we ran into was with logical networks and VLANS, I don't have a complete
understanding of network topology, but only certain logical networks with-in our environment
can host different ranges of IP Addresses.&amp;nbsp; Initiall we built the new cluster
on a logical network that was unable to host the existing virtual name and the switch
failed, ensure to talk to your network, windows and DNS engineers about exactly what
your wanting to do so they can build things properly the first time, as they don't
like switching and changing things twice any more than DBA's do !
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/sql_network_switch.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/sql_ip_switch.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/sql_network_name_switch.JPG" border=0&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=084b34ac-7b00-491c-8ba2-4582bda484d4" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,084b34ac-7b00-491c-8ba2-4582bda484d4.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=bd41d6b5-c15d-4fb2-92dd-00ebed7da000</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,bd41d6b5-c15d-4fb2-92dd-00ebed7da000.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,bd41d6b5-c15d-4fb2-92dd-00ebed7da000.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=bd41d6b5-c15d-4fb2-92dd-00ebed7da000</wfw:commentRss>
      <title>HP SIM Manual Discovery causes issues</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,bd41d6b5-c15d-4fb2-92dd-00ebed7da000.aspx</guid>
      <link>http://www.lifeasbob.com/2009/09/10/HPSIMManualDiscoveryCausesIssues.aspx</link>
      <pubDate>Thu, 10 Sep 2009 17:05:55 GMT</pubDate>
      <description>&lt;p&gt;
Recently we upgraded to a new version of HP SIM (systems insight manager), of course
not testing it or letting the DBA's know.&amp;nbsp; Suddenly some things crash.&amp;nbsp;
The new version of HP Sim provides a "richer discovery model"; oh it's rich!
&lt;/p&gt;
&lt;p&gt;
Seems the new version performs some type of scan on the scsi bus, which causes our
multi-path software (EMC Powerpath) to loose connectivity to the SAN, this causes
the file system to "Panic", and all filesystems unmount.&amp;nbsp; Nice.
&lt;/p&gt;
&lt;p&gt;
SIM is a hardware monitoring solution from HP for HP servers.&amp;nbsp; The server administration
team loves it, the SQL DBA's don't mind it.&amp;nbsp; It of course uses SQL Server for
a back-end database, so it helps keep us employed as well !&amp;nbsp; Basically SIM provides
hardware inventory and monitoring of the servers. 
&lt;/p&gt;
&lt;p&gt;
Specifically:&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Version:&amp;nbsp; Systems Insight Manager 5.3 with SP1 - Windows&lt;br&gt;
Build version:&amp;nbsp; C.05.03.01.00&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Using the Manual Discovery Task that ships with the product.
&lt;/p&gt;
&lt;p&gt;
The issue was most notable with our clustered servers, especially Polyserve.&amp;nbsp;
Below were the error messages:
&lt;/p&gt;
&lt;div dir=ltr align=left&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;
&lt;o:p&gt;
&lt;span class=680095415-10092009&gt;&lt;font face=Arial color=#0000ff size=2&gt;I/O error in
nodelist_get for filesystem on psv30: nlblocknr=10, blocknr=10, nlsize=8192, size=8192,
count=16.&lt;/font&gt;&lt;/span&gt;
&lt;/o:p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;o:p&gt;
&lt;span class=680095415-10092009&gt;&lt;font face=Arial color=#0000ff size=2&gt;umount: unmounting
filesystem from psv30. &lt;/font&gt;&lt;/span&gt;
&lt;/o:p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;o:p&gt;
&lt;span class=680095415-10092009&gt;&lt;font face=Arial color=#0000ff size=2&gt;Filesystem on
psv30 has finished disabling itself, and has no more writes to drain.&lt;/font&gt;&lt;/span&gt;
&lt;/o:p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;o:p&gt;
&lt;span class=680095415-10092009&gt;&lt;font face=Arial color=#0000ff size=2&gt;A psv-bound subdevice
(psv7 - 0x8001) has been removed from the system.&lt;/font&gt;&lt;/span&gt;
&lt;/o:p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;o:p&gt;
&lt;span class=680095415-10092009&gt;&lt;font face=Arial color=#0000ff size=2&gt;Filesystem on
psv39 has suffered a critical I/O error, and will be disabled to protect filesystem
integrity.&lt;/font&gt;&lt;/span&gt;
&lt;/o:p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;o:p&gt;
&lt;span class=680095415-10092009&gt;&lt;font face=Arial color=#0000ff size=2&gt;The device, \Device\Harddisk140\DR645,
is not ready for access yet.&lt;/font&gt;&lt;/span&gt;
&lt;/o:p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;o:p&gt;
&lt;span class=680095415-10092009&gt;&lt;font face=Arial color=#0000ff size=2&gt;\Device\MPIODisk398
is currently in a degraded state. One or more paths have failed, though the process
is now complete.&lt;/font&gt;&lt;/span&gt;
&lt;/o:p&gt;
&lt;/div&gt;
&lt;p&gt;
Work closely with your administrators and be careful of how these monitoring solutions
will affect your production servers.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=bd41d6b5-c15d-4fb2-92dd-00ebed7da000" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,bd41d6b5-c15d-4fb2-92dd-00ebed7da000.aspx</comments>
      <category>General Technology</category>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=fef9c77b-382b-4fda-9445-702fd675133f</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,fef9c77b-382b-4fda-9445-702fd675133f.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,fef9c77b-382b-4fda-9445-702fd675133f.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=fef9c77b-382b-4fda-9445-702fd675133f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <br />
SQL Server SAN Migration
</p>
        <p>
I think this is my 3rd or 4th SAN Migration casued by:<br />
 - completely moving data centers 
<br />
 - changing the storage backends to different vendors<br />
 - consolidating SANS<br />
 - growing to a bigger san to consolidate more
</p>
        <p>
There are several different scenarios to consider<br />
 1.  Stand alone SQL Servers Instances on Internal Disk to SAN<br />
 2.  Stand alone SQL Servers on SAN Disk (changing sans).<br />
 3.  VM Ware SQL Servers (required to be on SAN)<br />
 4.  Microsoft Clustered SQL Servers<br />
 5.  Polyserve Clustered SQL Servers<br />
 6.  BCV's / SAN Mirroring / replication technologies<br />
---------------------------<br /><strong>The most important thing to remember is to backup.</strong>  The next
most important thing, no matter what the SAN Engineers, Windows Engineers or Vendors
tell you about SAN Migration, <strong>YOU AS THE DBA ARE RESPONSIBLE.</strong> 
Understand the migration plan for each scenario, regardless of what anyone says, the
DBA is always left holding the bag.  If you don't understand the migration plan
/ scenario, make them explain it, learn it, try and practice it.  I'll explain
with an example.  
</p>
        <p>
One of the important items in most scenarios is updating to latest drivers and versions
of software, even this step can be dangerous.  In a recent effort to patch servers
to the latest version of drivers the SAN disk just "disappeared", when it came back,
there was NO DATA.  No amount of research could yield what happenned to the data. 
Refer back to the most important thing!<br />
----------------------------
</p>
        <p>
All of the different scenarios are simple, with careful preperation and a good windows
and SAN team.  
</p>
        <p>
          <u>1.  Stand alone SQL Servers instance on Internal Disk to SAN.</u>
        </p>
        <p>
Usually the most difficult thing here is that you are taking an existing stable server
and adding a lot of new complexity to it.  Drivers and hardware for the SAN,
sometimes this does not always go well, if possible I try and get new hardware and
completely swap the machines, configuring the new machine in advance for the SAN and
installing sql; taking several dry runs to ensure it's stable.  The next issue
is the down time in copying the data from the internal disk to the san.  Than
switch the drive letters and start SQL.  Don't forget the most important thing.
</p>
        <p>
          <u>2.  Stand alone SQL Servers on SAN Disk (changing sans).</u>
        </p>
        <p>
Here is where having a good windows and san team can help you.  Most of the migrations
I've been involved with the Windows and SAN team will setup a mirror between the SANS. 
Than on migration day we stop SQL Server, the windows and san team ensure the mirror
is up to date, than split the mirror and hook the server up to the new storage and
ensure the drive letters and mount points come up.  SQL DBA restarts sql, boom,
your done.
</p>
        <p>
Sometimes if your switching san vendors, you can't setup a mirror.  Now things
get dicey.  Can you get "hooked" up to both sans simultaneously, of so than your
ok, stop sql, copy the data to the new san, reset drive letters and mount points,
restart SQL.  
</p>
        <p>
If you can not get "hooked" up to both sans simultaneously than you need to default
to some type of backup and restore mechanism, tapes or copying sql files to local
disk (if you have room).  I'm usually not a fan of this, as I find that different
vendors use different drivers, switching vendors means now you have both vendors drivers
on the machine, the machine decays and becomes unstable, NOT FUN.  Don't forget
the most important thing.
</p>
        <p>
          <u>3.  VM Ware SQL Servers (required to be on SAN).</u>
        </p>
        <p>
These have been my easiest san migrations.  That's because we have awesome dedicated
VM Ware administrators.  They do it all, just schedule the outage.  But
trust me, Don't forget the most important thing, check your backups went to tape,
double check your Disaster Recovery plan.
</p>
        <p>
          <u>4.  Microsoft Clustered SQL Servers</u>
        </p>
        <p>
I've only done Microsoft Cluster migrations with SAN Mirrors, and it has been uneventful. 
This is because the "mirrors" end result is the preservation of clustered resources
(quorum), drive letters etc.  But don't forget the most important thing. 
Again a great windows and san team makes this easier.  I'd fret to switch vendors
on the Clusters, but if I ever do I'll update this post.
</p>
        <p>
          <u>5.  Polyserve Clustered SQL Servers</u>
        </p>
        <p>
This is the SAN Migration worst case scenario, "The clustered file system". 
Below are the steps we followed for migrating sans with Polyserve.  Don't forget
the most important thing.
</p>
        <blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
          <p>
-Dump vsql and vsqlinstance information from cluster<br />
 -mx vsql dump &gt;&gt; vsql.txt<br />
 -mx vsqlinstance dump &gt;&gt; vsqlinstance.txt<br />
-Get a listing of all storage by copying the grid on storage summary to excel 
<br />
-stop and disable all SQL instances and VSQLs<br />
-copy the virtual root for each sql server instance to another server (outside the
cluster)<br />
-deport ALL dynamic volumes (paths are automatically unassigned)<br />
-stop cluster services on all cluster nodes<br />
-copy the entire c:\polyserve directory to another server (outside the cluster) for
each machine (CYA)<br />
-manage the storage to unpresent all LUNs from the old array<br />
-break the mirror relationships and then present all of the mirrored LUNs<br />
-create three new 1GB LUNs on the new array and present them for new mem parts<br />
-put partitions on the three new LUNs<br />
-go into the config utility on node 1 and delete old membership partitions and add
the three new membership partitions<br />
-start cluster services on this node<br />
-export the config to other nodes and start the service on the rest of the nodes<br />
-import all importable dynamic volumes<br />
-assign paths<br />
-enable instances and vsqls<br />
-done<br /><a href="http://www.lifeasbob.com/content/binary/Polyserve%20SAN%20Switch.doc">Polyserve
SAN Switch.doc (29.5 KB)</a></p>
          <p>
 
</p>
        </blockquote>
        <p>
          <u>6.  BCV's / SAN Mirroring / replication technologies</u>
        </p>
        <p>
Administring the advanced SAN technologies is different for each vendor and quite
proprietary.  You definetly want to test and work with each one individually
and ensure it all works.  The details of this are far outside the scope of a
simple blog post, but having great SAN engineers will make this easy, as they generally
setup the mirrors, clones and movement of them to different machines or remote locations.
</p>
        <p>
          <strong>Don't forget the most important thing.</strong>
        </p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=fef9c77b-382b-4fda-9445-702fd675133f" />
      </body>
      <title>SQL Server SAN Migration</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,fef9c77b-382b-4fda-9445-702fd675133f.aspx</guid>
      <link>http://www.lifeasbob.com/2009/08/25/SQLServerSANMigration.aspx</link>
      <pubDate>Tue, 25 Aug 2009 16:16:01 GMT</pubDate>
      <description>&lt;p&gt;
&lt;br&gt;
SQL Server SAN Migration
&lt;/p&gt;
&lt;p&gt;
I think this is my 3rd or 4th SAN Migration casued by:&lt;br&gt;
&amp;nbsp;- completely moving data centers 
&lt;br&gt;
&amp;nbsp;- changing the storage backends to different vendors&lt;br&gt;
&amp;nbsp;- consolidating SANS&lt;br&gt;
&amp;nbsp;- growing to a bigger san to consolidate more
&lt;/p&gt;
&lt;p&gt;
There are several different scenarios to consider&lt;br&gt;
&amp;nbsp;1.&amp;nbsp; Stand alone SQL Servers Instances on Internal Disk to SAN&lt;br&gt;
&amp;nbsp;2.&amp;nbsp; Stand alone SQL Servers on SAN Disk (changing sans).&lt;br&gt;
&amp;nbsp;3.&amp;nbsp; VM Ware SQL Servers (required to be on SAN)&lt;br&gt;
&amp;nbsp;4.&amp;nbsp; Microsoft Clustered SQL Servers&lt;br&gt;
&amp;nbsp;5.&amp;nbsp; Polyserve Clustered SQL Servers&lt;br&gt;
&amp;nbsp;6.&amp;nbsp; BCV's / SAN Mirroring / replication technologies&lt;br&gt;
---------------------------&lt;br&gt;
&lt;strong&gt;The most important thing to remember is to backup.&lt;/strong&gt;&amp;nbsp; The next
most important thing, no matter what the SAN Engineers, Windows Engineers or Vendors
tell you about SAN Migration, &lt;strong&gt;YOU AS THE DBA ARE RESPONSIBLE.&lt;/strong&gt;&amp;nbsp;
Understand the migration plan for each scenario, regardless of what anyone says, the
DBA is always left holding the bag.&amp;nbsp; If you don't understand the migration plan
/ scenario, make them explain it, learn it, try and practice it.&amp;nbsp; I'll explain
with an example.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
One of the important items in most scenarios is updating to latest drivers and versions
of software, even this step can be dangerous.&amp;nbsp; In a recent effort to patch servers
to the latest version of drivers the SAN disk just "disappeared", when it came back,
there was NO DATA.&amp;nbsp; No amount of research could yield what happenned to the data.&amp;nbsp;
Refer back to the most important thing!&lt;br&gt;
----------------------------
&lt;/p&gt;
&lt;p&gt;
All of the different scenarios are simple, with careful preperation and a good windows
and SAN team.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
&lt;u&gt;1.&amp;nbsp; Stand alone SQL Servers instance on Internal Disk to SAN.&lt;/u&gt;
&lt;/p&gt;
&lt;p&gt;
Usually the most difficult thing here is that you are taking an existing stable server
and adding a lot of new complexity to it.&amp;nbsp; Drivers and hardware for the SAN,
sometimes this does not always go well, if possible I try and get new hardware and
completely swap the machines, configuring the new machine in advance for the SAN and
installing sql; taking several dry runs to ensure it's stable.&amp;nbsp; The next issue
is the down time in copying the data from the internal disk to the san.&amp;nbsp; Than
switch the drive letters and start SQL.&amp;nbsp; Don't forget the most important thing.
&lt;/p&gt;
&lt;p&gt;
&lt;u&gt;2.&amp;nbsp; Stand alone SQL Servers on SAN Disk (changing sans).&lt;/u&gt;
&lt;/p&gt;
&lt;p&gt;
Here is where having a good windows and san team can help you.&amp;nbsp; Most of the migrations
I've been involved with the Windows and SAN team will setup a mirror between the SANS.&amp;nbsp;
Than on migration day we stop SQL Server, the windows and san team ensure the mirror
is up to date, than split the mirror and hook the server up to the new storage and
ensure the drive letters and mount points come up.&amp;nbsp; SQL DBA restarts sql, boom,
your done.
&lt;/p&gt;
&lt;p&gt;
Sometimes if your switching san vendors, you can't setup a mirror.&amp;nbsp; Now things
get dicey.&amp;nbsp; Can you get "hooked" up to both sans simultaneously, of so than your
ok, stop sql, copy the data to the new san, reset drive letters and mount points,
restart SQL.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
If you can not get "hooked" up to both sans simultaneously than you need to default
to some type of backup and restore mechanism, tapes or copying sql files to local
disk (if you have room).&amp;nbsp; I'm usually not a fan of this, as I find that different
vendors use different drivers, switching vendors means now you have both vendors drivers
on the machine, the machine decays and becomes unstable, NOT FUN.&amp;nbsp; Don't forget
the most important thing.
&lt;/p&gt;
&lt;p&gt;
&lt;u&gt;3.&amp;nbsp; VM Ware SQL Servers (required to be on SAN).&lt;/u&gt;
&lt;/p&gt;
&lt;p&gt;
These have been my easiest san migrations.&amp;nbsp; That's because we have awesome dedicated
VM Ware administrators.&amp;nbsp; They do it all, just schedule the outage.&amp;nbsp; But
trust me, Don't forget the most important thing, check your backups went to tape,
double check your Disaster Recovery plan.
&lt;/p&gt;
&lt;p&gt;
&lt;u&gt;4.&amp;nbsp; Microsoft Clustered SQL Servers&lt;/u&gt;
&lt;/p&gt;
&lt;p&gt;
I've only done Microsoft Cluster migrations with SAN Mirrors, and it has been uneventful.&amp;nbsp;
This is because the "mirrors" end result is the preservation of clustered resources
(quorum), drive letters etc.&amp;nbsp; But don't forget the most important thing.&amp;nbsp;
Again a great windows and san team makes this easier.&amp;nbsp; I'd fret to switch vendors
on the Clusters, but if I ever do I'll update this post.
&lt;/p&gt;
&lt;p&gt;
&lt;u&gt;5.&amp;nbsp; Polyserve Clustered SQL Servers&lt;/u&gt;
&lt;/p&gt;
&lt;p&gt;
This is the SAN Migration worst case scenario, "The clustered file system".&amp;nbsp;
Below are the steps we followed for migrating sans with Polyserve.&amp;nbsp; Don't forget
the most important thing.
&lt;/p&gt;
&lt;blockquote dir=ltr style="MARGIN-RIGHT: 0px"&gt; 
&lt;p&gt;
-Dump vsql and vsqlinstance information from cluster&lt;br&gt;
&amp;nbsp;-mx vsql dump &amp;gt;&amp;gt; vsql.txt&lt;br&gt;
&amp;nbsp;-mx vsqlinstance dump &amp;gt;&amp;gt; vsqlinstance.txt&lt;br&gt;
-Get a listing of all storage by copying the grid on storage summary to excel 
&lt;br&gt;
-stop and disable all SQL instances and VSQLs&lt;br&gt;
-copy the virtual root for each sql server instance to another server (outside the
cluster)&lt;br&gt;
-deport ALL dynamic volumes (paths are automatically unassigned)&lt;br&gt;
-stop cluster services on all cluster nodes&lt;br&gt;
-copy the entire c:\polyserve directory to another server (outside the cluster) for
each machine (CYA)&lt;br&gt;
-manage the storage to unpresent all LUNs from the old array&lt;br&gt;
-break the mirror relationships and then present all of the mirrored LUNs&lt;br&gt;
-create three new 1GB LUNs on the new array and present them for new mem parts&lt;br&gt;
-put partitions on the three new LUNs&lt;br&gt;
-go into the config utility on node 1 and delete old membership partitions and add
the three new membership partitions&lt;br&gt;
-start cluster services on this node&lt;br&gt;
-export the config to other nodes and start the service on the rest of the nodes&lt;br&gt;
-import all importable dynamic volumes&lt;br&gt;
-assign paths&lt;br&gt;
-enable instances and vsqls&lt;br&gt;
-done&lt;br&gt;
&lt;a href="http://www.lifeasbob.com/content/binary/Polyserve%20SAN%20Switch.doc"&gt;Polyserve
SAN Switch.doc (29.5 KB)&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;u&gt;6.&amp;nbsp; BCV's / SAN Mirroring / replication technologies&lt;/u&gt;
&lt;/p&gt;
&lt;p&gt;
Administring the advanced SAN technologies is different for each vendor and quite
proprietary.&amp;nbsp; You definetly want to test and work with each one individually
and ensure it all works.&amp;nbsp; The details of this are far outside the scope of a
simple blog post, but having great SAN engineers will make this easy, as they generally
setup the mirrors, clones and movement of them to different machines or remote locations.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Don't forget the most important thing.&lt;/strong&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=fef9c77b-382b-4fda-9445-702fd675133f" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,fef9c77b-382b-4fda-9445-702fd675133f.aspx</comments>
      <category>General Technology</category>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=db381bf4-69a5-42b9-b1db-bf3e9593bd30</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,db381bf4-69a5-42b9-b1db-bf3e9593bd30.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,db381bf4-69a5-42b9-b1db-bf3e9593bd30.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=db381bf4-69a5-42b9-b1db-bf3e9593bd30</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Installing vendor databases on SQL Server is usually pretty straight forward. 
Not many DBA's like the process, but the proliferation of 3rd party products that
use SQL Server is continuing to grow.
</p>
        <p>
Recently this particular vendor, of course insisting their product was 64 bit and
SQL Server 2005 compatible, ran into problems for me.  It's only compatible after
you manually add registry entries that make the installshield program think there
is a 32 bit instance of MSDE !  Yah, that's compatible (oh by the way, those
registry entries also break the sql browser service so you whole instance becomes
unavailable unless it is accessed directly through a port number).  NICE !
</p>
        <p>
Getting through the above process was painful enough, than the installshield installer
errors out with a SQL Server error on creating a view, indicating that a dependent
object is missing.
</p>
        <p>
Technical support, while helpful is clueless.  "Never seen that before!" 
After 3 days of issues, i'm basically troubleshooting for them, taking traces from
our lab environment and comparing them.  Finally we stumble on to the fact that
installshield is creating a _setup directory where it is putting the SQL Server scripts. 
This folder (_setup), happens to be under the data directory where the MDF's
are being created (NICE).  This data directory happens to be a mount point!
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/GirlLightBulb.jpg" border="0" />
        </p>
        <p>
Ahhh, for whatever reason, Installshield runs the scripts differently from a mount
point vs. a drive letter.   We think it's either a bug in Installshield
or an issue with the permissions on the mount point.  We were not able to find
any differences in permissions, but sure enough when we changed the location of the
data files (which changes the location of the _setup directory), objects
in the database were created in the correct order.   3 days of my life gone.
</p>
        <p>
This vendor could have done many things differently.  Providing some type of
manual work around, scripts to create the database (this was not an option so I was
screwed), backups to manually restore, something, someway to escape the installshield
install (which was like version 5 !).
</p>
        <p>
And this was not a small dippy vendor, this is compliance software used by many
of the big banking and financial institutions.  No wonder so many found
them selves in danger of collapse !
</p>
        <p>
Watch those mount points. 
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=db381bf4-69a5-42b9-b1db-bf3e9593bd30" />
      </body>
      <title>Installshield, mount points and permissions</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,db381bf4-69a5-42b9-b1db-bf3e9593bd30.aspx</guid>
      <link>http://www.lifeasbob.com/2009/07/17/InstallshieldMountPointsAndPermissions.aspx</link>
      <pubDate>Fri, 17 Jul 2009 14:57:04 GMT</pubDate>
      <description>&lt;p&gt;
Installing vendor databases on SQL Server is usually pretty straight forward.&amp;nbsp;
Not many DBA's like the process, but the proliferation of 3rd party products that
use SQL Server is continuing to grow.
&lt;/p&gt;
&lt;p&gt;
Recently this particular vendor, of course insisting their product was 64 bit&amp;nbsp;and
SQL Server 2005 compatible, ran into problems for me.&amp;nbsp; It's only compatible after
you manually add registry entries that make the installshield program think there
is a 32 bit instance of MSDE !&amp;nbsp; Yah, that's compatible (oh by the way, those
registry entries also break the sql browser service so you whole instance becomes
unavailable unless it is accessed directly through a port number).&amp;nbsp; NICE !
&lt;/p&gt;
&lt;p&gt;
Getting through the above process was painful enough, than the installshield installer
errors out with a SQL Server error on&amp;nbsp;creating a view, indicating that a dependent
object is missing.
&lt;/p&gt;
&lt;p&gt;
Technical support, while helpful is clueless.&amp;nbsp; "Never seen that before!"&amp;nbsp;
After 3 days of issues, i'm basically troubleshooting for them, taking traces from
our lab environment and comparing them.&amp;nbsp; Finally we stumble on to the fact that
installshield is creating a _setup directory where it is putting the SQL Server scripts.&amp;nbsp;
This folder&amp;nbsp;(_setup), happens to be under the data directory where the MDF's
are being created (NICE).&amp;nbsp; This data directory happens to be a mount point!
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/GirlLightBulb.jpg" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Ahhh, for whatever reason, Installshield runs the scripts differently from a mount
point vs. a&amp;nbsp;drive letter.&amp;nbsp;&amp;nbsp;&amp;nbsp;We think it's&amp;nbsp;either a bug in&amp;nbsp;Installshield
or an issue with the permissions on the mount point.&amp;nbsp; We were not able to find
any differences in permissions, but sure enough when we changed the location of the
data files (which&amp;nbsp;changes the location of the _setup directory),&amp;nbsp;objects
in the database were created in the correct order.&amp;nbsp;&amp;nbsp; 3 days of my life gone.
&lt;/p&gt;
&lt;p&gt;
This vendor could have done many things differently.&amp;nbsp; Providing some type of
manual work around, scripts to create the database (this was not an option so I was
screwed), backups to manually restore, something, someway to escape the installshield
install (which was like version 5 !).
&lt;/p&gt;
&lt;p&gt;
And this was not&amp;nbsp;a small dippy vendor, this is compliance software used by many
of the big banking and financial institutions.&amp;nbsp; No wonder&amp;nbsp;so many found
them selves in danger of collapse !
&lt;/p&gt;
&lt;p&gt;
Watch those mount points.&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=db381bf4-69a5-42b9-b1db-bf3e9593bd30" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,db381bf4-69a5-42b9-b1db-bf3e9593bd30.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=09081e3c-12a4-444b-85dc-d90ab7cca192</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,09081e3c-12a4-444b-85dc-d90ab7cca192.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,09081e3c-12a4-444b-85dc-d90ab7cca192.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=09081e3c-12a4-444b-85dc-d90ab7cca192</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Affinity mask keeping SQL Server Agent from starting.
</p>
        <img src="http://www.lifeasbob.com/content/binary/one_more_beer2.jpg" border="0" />
        <p>
Recently had a unique issue in one of our HP Polyserve clustered environments. 
One of the unique aspects of HP Polyserve is that you can cluster different types
of hardware.  This can reduce costs and risks (as a bug in firmware or hardware
on one machine is also most likely going to exist in the other node, especially if
they are the same make, model, and usually purchased together).
</p>
        <br />
        <p>
We had an affinity mask set on a 16 processor machine, the instance was intentionally
re-hosted to another server in the cluster, which was an 8 way machine.  The
instance did start, but SQL Agent would not.
</p>
        <br />
        <p>
The following error messages were found in the sql errorlog:
</p>
        <blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
          <p>
            <font color="#ff0000">initconfig: Warning: affinity mask specified is not valid. Defaulting
to no affinity. Use sp_configure 'affinity mask' or 'affinity64 mask' to configure
the system to be compatible with the CPU mask on the system. You can also configure
the system based on the number of licensed CPUs.</font>
          </p>
          <br />
          <p>
            <font color="#ff0000">SQL Server blocked access to procedure 'dbo.sp_sqlagent_has_server_access'
of component 'Agent XPs' because this component is turned off as part of the security
configuration for this server. A system administrator can enable the use of 'Agent
XPs' by using sp_configure. For more information about enabling 'Agent XPs', see "Surface
Area Configuration" in SQL Server Books Online.</font>
          </p>
        </blockquote>
        <p>
A quick bit of research showed a similiar issue in a Microsoft Cluster, where the
one node did not have the correct permissions for the "lock pages in memory" setting,
causing the same result of SQL Agent not starting, you can see a great write up of
this in <a href="http://blogs.msdn.com/suhde/archive/2009/03/14/sql-server-agent-is-unable-to-failover-on-a-cluster.aspx">Suhas'
blog</a>.
</p>
        <br />
        <p>
Seems if the "start up" process for a SQL Server instance is interupted that the settings
changed from the defaults in sp_configure are not set and the process does not continue. 
From what I can determine this "start up" process is the settings contained in sp_configure,
if any of these fail along the way the process just stops or rolls them back and the
other settings like "Agent XPs" (required to start sql agent), will not occur.
</p>
        <br />
        <p>
I think this is a behavior that should not exist in SQL Server, why does an incorrect
affinity mask keep SQL Server from finishing running the other settings set by sp_configure
?  These options should be mutually exclusive and one failure should not preclude
others from running.
</p>
        <p>
I've had similar issues with how SQL Server starts up affecting SQL Agent, and it
does not appear to be a priority to fix, see my post on <a href="http://www.lifeasbob.com/2008/02/06/SQLAgentWillNotStartWhenAUserDatabaseIsInRecovery.aspx">SQL
Agent will not start when a user database is in recovery</a>. 
</p>
        <br />
        <p>
This was easy to fix, but required setting a correct affinity mask and stopping and
starting the service.  Generally we don't use an affinity mask on many instances. 
HP Polyserve provides pre and post start up scripts which we'll use to address the
issue in the future, though in extreme cases of failure no pre shutdown script will
be effective.  Plan your failover capacity carefully.<br /></p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=09081e3c-12a4-444b-85dc-d90ab7cca192" />
      </body>
      <title>Some Days you need one of these...</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,09081e3c-12a4-444b-85dc-d90ab7cca192.aspx</guid>
      <link>http://www.lifeasbob.com/2009/05/20/SomeDaysYouNeedOneOfThese.aspx</link>
      <pubDate>Wed, 20 May 2009 20:26:52 GMT</pubDate>
      <description>&lt;p&gt;
Affinity mask keeping SQL Server Agent from starting.
&lt;/p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/one_more_beer2.jpg" border=0&gt; 
&lt;p&gt;
Recently had a unique issue in one of our HP Polyserve clustered environments.&amp;nbsp;
One of the unique aspects of HP Polyserve is that you can cluster different types
of hardware.&amp;nbsp; This can reduce costs and risks (as a bug in firmware or hardware
on one machine is also most likely going to exist in the other node, especially if
they are the same make, model, and usually purchased together).
&lt;/p&gt;
&lt;br&gt;
&lt;p&gt;
We had an affinity mask set on a 16 processor machine, the instance was intentionally
re-hosted to another server in the cluster, which was an 8 way machine.&amp;nbsp; The
instance did start, but SQL Agent would not.
&lt;/p&gt;
&lt;br&gt;
&lt;p&gt;
The following error messages were found in the sql errorlog:
&lt;/p&gt;
&lt;blockquote dir=ltr style="MARGIN-RIGHT: 0px"&gt; 
&lt;p&gt;
&lt;font color=#ff0000&gt;initconfig: Warning: affinity mask specified is not valid. Defaulting
to no affinity. Use sp_configure 'affinity mask' or 'affinity64 mask' to configure
the system to be compatible with the CPU mask on the system. You can also configure
the system based on the number of licensed CPUs.&lt;/font&gt;
&lt;/p&gt;
&lt;br&gt;
&lt;p&gt;
&lt;font color=#ff0000&gt;SQL Server blocked access to procedure 'dbo.sp_sqlagent_has_server_access'
of component 'Agent XPs' because this component is turned off as part of the security
configuration for this server. A system administrator can enable the use of 'Agent
XPs' by using sp_configure. For more information about enabling 'Agent XPs', see "Surface
Area Configuration" in SQL Server Books Online.&lt;/font&gt;
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
A quick bit of research showed a similiar issue in a Microsoft Cluster, where the
one node did not have the correct permissions for the "lock pages in memory" setting,
causing the same result of SQL Agent not starting, you can see a great write up of
this in &lt;a href="http://blogs.msdn.com/suhde/archive/2009/03/14/sql-server-agent-is-unable-to-failover-on-a-cluster.aspx"&gt;Suhas'
blog&lt;/a&gt;.
&lt;/p&gt;
&lt;br&gt;
&lt;p&gt;
Seems if the "start up" process for a SQL Server instance is interupted that the settings
changed from the defaults in sp_configure are not set and the process does not continue.&amp;nbsp;
From what I can determine this "start up" process is the settings contained in sp_configure,
if any of these fail along the way the process just stops or rolls them back and the
other settings like "Agent XPs" (required to start sql agent), will not occur.
&lt;/p&gt;
&lt;br&gt;
&lt;p&gt;
I think this is a behavior that should not exist in SQL Server, why does an incorrect
affinity mask keep SQL Server from finishing running the other settings set by sp_configure
?&amp;nbsp; These options should be mutually exclusive and one failure should not preclude
others from running.
&lt;/p&gt;
&lt;p&gt;
I've had similar issues with how SQL Server starts up affecting SQL Agent, and it
does not appear to be a priority to fix, see my post on &lt;a href="http://www.lifeasbob.com/2008/02/06/SQLAgentWillNotStartWhenAUserDatabaseIsInRecovery.aspx"&gt;SQL
Agent will not start when a user database is in recovery&lt;/a&gt;.&amp;nbsp;
&lt;/p&gt;
&lt;br&gt;
&lt;p&gt;
This was easy to fix, but required setting a correct affinity mask and stopping and
starting the service.&amp;nbsp; Generally we don't use an affinity mask on many instances.&amp;nbsp;
HP Polyserve provides pre and post start up scripts which we'll use to address the
issue in the future, though in extreme cases of failure no pre shutdown script will
be effective.&amp;nbsp; Plan your failover capacity carefully.&lt;br&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=09081e3c-12a4-444b-85dc-d90ab7cca192" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,09081e3c-12a4-444b-85dc-d90ab7cca192.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
      <category>SQL Server / SQL Agent</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=27088201-ae49-4ae7-9a2b-92353d2b5da4</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,27088201-ae49-4ae7-9a2b-92353d2b5da4.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,27088201-ae49-4ae7-9a2b-92353d2b5da4.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=27088201-ae49-4ae7-9a2b-92353d2b5da4</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Recently I had a nice experience of working an outage of a SQL Server caused by a
SAN Issue.  Here is where clustering breaks down.  Fortunately I work in
a big shop which uses Microsoft, Veritas, Polyserve and VM Ware clustering technologies;
but all of them have a single point of failure, the SAN.
</p>
        <p>
The official response to the problem was:
</p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <b>
            <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">We
are experiencing intermittent {vendor here} issues causing some SAN storage to become
read only. Server team is closely monitoring for this condition and putting the setting
back to read/write. A fix is available and being planned for Saturday night, unless
the issue becomes more prevalent that it is now. </span>
          </b>
        </p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <b>
            <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">
            </span>
          </b> 
</p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">Lovely. 
What is missing from the statement above is depending on which clustering technology
you are using, it may require a reboot to bring the storage back for windows (sometimes
all nodes !).  Veritas, Polyserve and VMWare seem to handle san / fiber hickups
the best.</span>
        </p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">
          </span> 
</p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">It
may be time to research a stretch cluster with different sans and some type of replication
or mirroring.  The uptime of 9's (pick your number) is a difficult task to reach
and in my opinion not truly possible with one SAN.  I've seen too many SAN Failures. 
SANS are supposed to be built in redundant everything, but somehow almost all my outages
on High Availability SQL Implementations are the SAN. </span>
        </p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">
          </span> 
</p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">Of
course it has to be something, i'm not inferring that a SAN is no good or poorly designed,
just that as every point of failure is addressed, another one appears.  </span>
        </p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">
          </span> 
</p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">How
the vendor could know about this issue and not let us know, is confusing in itself. 
The vendor is responsible for maintenance and patching of the SAN, seems they wanted
to keep this bug "close to the vest" and maybe just "roll" it in with some other firmware
patching.....i'm not impressed.</span>
        </p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">
          </span> 
</p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">Keep
your vendors accountable and ask them how often they patch the san, and what patches
are missing from your environment.  Work with the vendor so they know that you
are willing to accept patches and get them applied, don't wait for the bug to affect
you before applying it.</span>
        </p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">
          </span> 
</p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">This
may apply to SQL Server as well, how often do we patch to a specific level and try
and stay steady there, not wanting to apply all the cumulative updates, unless it
affects something.  It may be an affect you don't like.</span>
        </p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">
          </span> 
</p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">Be
more pro-active.</span>
        </p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none">
          <span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'">
          </span> 
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=27088201-ae49-4ae7-9a2b-92353d2b5da4" />
      </body>
      <title>SAN Patching, you'd better !</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,27088201-ae49-4ae7-9a2b-92353d2b5da4.aspx</guid>
      <link>http://www.lifeasbob.com/2009/05/15/SANPatchingYoudBetter.aspx</link>
      <pubDate>Fri, 15 May 2009 18:14:28 GMT</pubDate>
      <description>&lt;p&gt;
Recently I had a nice experience of working an outage of a SQL Server caused by a
SAN Issue.&amp;nbsp; Here is where clustering breaks down.&amp;nbsp; Fortunately I work in
a big shop which uses Microsoft, Veritas, Polyserve and VM Ware clustering technologies;
but all of them have a single point of failure, the SAN.
&lt;/p&gt;
&lt;p&gt;
The official response to the problem was:
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;b&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;We
are experiencing intermittent {vendor here} issues causing some SAN storage to become
read only. Server team is closely monitoring for this condition and putting the setting
back to read/write. A fix is available and being planned for Saturday night, unless
the issue becomes more prevalent that it is now. &lt;/span&gt;&lt;/b&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;b&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;&lt;/span&gt;&lt;/b&gt;&amp;nbsp;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;Lovely.&amp;nbsp;
What is missing from the statement above&amp;nbsp;is depending on which clustering technology
you are using, it may require a reboot to bring the storage back for windows (sometimes
all nodes !).&amp;nbsp; Veritas, Polyserve and VMWare seem to handle san / fiber hickups
the best.&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;&lt;/span&gt;&amp;nbsp;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;It
may be time to research a stretch cluster with different sans and some type of replication
or mirroring.&amp;nbsp; The uptime of 9's (pick your number) is a difficult task to reach
and in my opinion not truly possible with one SAN.&amp;nbsp; I've seen too many SAN Failures.&amp;nbsp;
SANS are supposed to be built in redundant everything, but somehow almost all my outages
on High Availability SQL Implementations are the SAN. &lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;&lt;/span&gt;&amp;nbsp;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;Of
course it has to be something, i'm not inferring that a SAN is no good or poorly designed,
just that as every point of failure is addressed, another one appears.&amp;nbsp; &lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;&lt;/span&gt;&amp;nbsp;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;How
the vendor could know about this issue and not let us know, is confusing in itself.&amp;nbsp;
The vendor is responsible for maintenance and patching of the SAN, seems they wanted
to keep this bug "close to the vest" and maybe just "roll" it in with some other firmware
patching.....i'm not impressed.&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;&lt;/span&gt;&amp;nbsp;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;Keep
your vendors accountable and ask them how often they patch the san, and what patches
are missing from your environment.&amp;nbsp; Work with the vendor so they know that you
are willing to accept patches and get them applied, don't wait for the bug to affect
you before applying it.&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;&lt;/span&gt;&amp;nbsp;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;This
may apply to SQL Server as well, how often do we patch to a specific level and try
and stay steady there, not wanting to apply all the cumulative updates, unless it
affects something.&amp;nbsp; It may be an affect you don't like.&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;&lt;/span&gt;&amp;nbsp;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;Be
more pro-active.&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-layout-grid-align: none"&gt;
&lt;span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;&lt;/span&gt;&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=27088201-ae49-4ae7-9a2b-92353d2b5da4" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,27088201-ae49-4ae7-9a2b-92353d2b5da4.aspx</comments>
      <category>General Technology</category>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=87682799-fc1a-4469-9456-9174956cf175</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,87682799-fc1a-4469-9456-9174956cf175.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,87682799-fc1a-4469-9456-9174956cf175.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=87682799-fc1a-4469-9456-9174956cf175</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Mountpoints are fun and easily can solve issues with more than 26 drive letters (don't
ask), but recently we ran into several issues with monitoring the mountpoints. 
In particular we have a report that is based on past growth history of a database,
disk size and disk free space, and it estimates when a drive will be at 80% capacity
and when it will fill up.   With 100's of database servers this report can
prioritize and pro-actively identify which server will encounter a problem next and
when.  Of course the limitation is in bold, <strong>drive.</strong>  
</p>
        <p>
Report Example:
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/DriveSpace.JPG" border="0" />
        </p>
        <p>
When we began using Mountpoints the report was not as accurate and it needed to be
adjusted.  We have some internal services that collect the drive size and
free space to a central DBA database.  Review of this monitoring reveals it is
using a WMI Query, a quick review of the WMI SDK shows another call that will pick
up mountpoints, Select * from WIN32_Volume.  Life is good.
</p>
        <p>
Not so quick after hurdling from drives to drives and mountpoints, a problem was revealed
where the WMI call failed on two servers.  <font color="#ff1493">Englightenment</font>. 
These two sql servers have also been giving us odd issues with SQL Management Studio
(SSMS), which is highly dependent on WMI, SMO, .NET and probably some other stuff. 
Fixing WMI on these two servers fixed the issue and corrected the SSMS issues.
</p>
        <p>
Steps to fix WMI (Thanks to our Windows Team for the steps below):
</p>
        <div dir="ltr" align="left">
          <span class="197175017-29012009">
            <font face="Arial" color="#0000ff" size="2">1.
net stop winmgmt<br />
2. del %SystemRoot%\System32\WBEM\Repository /s /q</font>
          </span>
        </div>
        <div dir="ltr" align="left">
          <span class="197175017-29012009">
            <font face="Arial" color="#0000ff" size="2">
            </font>
          </span> 
</div>
        <div dir="ltr" align="left">
          <span class="197175017-29012009">
            <font face="Arial" color="#0000ff" size="2">If
that does not work, then I</font>
          </span>
        </div>
        <div dir="ltr" align="left">
          <span class="197175017-29012009">
            <font face="Arial" color="#0000ff" size="2">
            </font>
          </span> 
</div>
        <div dir="ltr" align="left">
          <span class="197175017-29012009">
            <font face="Arial" color="#0000ff" size="2">1. remove
all rights from %system32%\wbem\Repository\FS</font>
          </span>
        </div>
        <div dir="ltr" align="left">
          <span class="197175017-29012009">
            <font face="Arial" color="#0000ff" size="2">2. disable
the "Windows Management Instrumentation" service</font>
          </span>
        </div>
        <div dir="ltr" align="left">
          <span class="197175017-29012009">
            <font face="Arial" color="#0000ff" size="2">3.
reboot</font>
          </span>
        </div>
        <div dir="ltr" align="left">
          <span class="197175017-29012009">
            <font face="Arial" color="#0000ff" size="2">4.
add rights back to %system32%\wbem\Repository\FS</font>
          </span>
        </div>
        <div dir="ltr" align="left">
          <span class="197175017-29012009">
            <font face="Arial" color="#0000ff" size="2">5.
delete the contents of %system32%\wbem\Repository\FS</font>
          </span>
        </div>
        <div dir="ltr" align="left">
          <span class="197175017-29012009">
            <font face="Arial" color="#0000ff" size="2">6. set
the "Windows Management Instrumentation" service back to Automatic</font>
          </span>
        </div>
        <div dir="ltr" align="left">
          <span class="197175017-29012009">
            <font face="Arial" color="#0000ff" size="2">7.
start the "Windows Management Instrumentation" service</font>
          </span>
        </div>
        <p>
Here is a short quick Visual Basic Script (VBS) you can save to a text file with a
.VBS Extension to see the call to WMI to check disk space for mount points or drives. 
It filters out certain mount points for Polyserve as we don't want to monitor those,
also for some reason z:\ is mapped in our environment and this wmi script pulls that
with nulls, so you need to test for those.  You can also use Powershell, but
it is using a wmi call underneath the hood as well, and we have yet to install powershell
on all our servers.
</p>
        <pre>
          <span style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">
            <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">Set</span> DiskSet <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">GetObject</span>(<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"winmgmts:{impersonationLevel=impersonate}!//BCCMAPP02"</span>)_
    .ExecQuery(<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"Select
* from Win32_Volume"</span>) <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">For</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">Each</span> objItem <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">In</span> DiskSet
    Ignore <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">False</span>     <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">if</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">len</span>(objitem.name)
&gt;= 51 <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">then</span>         <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">If</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">UCase</span>(<span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">Left</span>(objitem.name,51)) <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span> _
            <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">UCase</span>(<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"C:\Program
Files\PolyServe\MatrixServer\conf\mounts"</span>) <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">Then</span>             Ignore <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">True</span>         <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">End</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">If</span>     <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">End</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">If</span>     <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">If</span> Ignore <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">False</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">Then</span>         <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">msgbox</span>(objItem.Name
&amp; vbCrLf &amp; <span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"Percent
Free = "</span> &amp; _             <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">round</span>((objItem.freespace/objItem.Capacity)*100,2)
&amp; _             <span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"
= "</span> &amp; objItem.freeSpace &amp; <span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"
= "</span> &amp; objItem.Capacity)     <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">End</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">If</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">Next</span></span>
        </pre>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=87682799-fc1a-4469-9456-9174956cf175" />
      </body>
      <title>WMI Mountpoints and enlightenment </title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,87682799-fc1a-4469-9456-9174956cf175.aspx</guid>
      <link>http://www.lifeasbob.com/2009/01/29/WMIMountpointsAndEnlightenment.aspx</link>
      <pubDate>Thu, 29 Jan 2009 18:33:07 GMT</pubDate>
      <description>&lt;p&gt;
Mountpoints are fun and easily can solve issues with more than 26 drive letters (don't
ask), but recently we ran into several issues with&amp;nbsp;monitoring the mountpoints.&amp;nbsp;
In particular we have a report that is based on past growth history of a database,
disk size and disk free space, and it estimates when a drive will be at 80% capacity
and when it will fill up.&amp;nbsp;&amp;nbsp; With 100's of database servers this report can
prioritize and pro-actively identify which server will encounter a problem next and
when.&amp;nbsp; Of course the limitation is in bold, &lt;strong&gt;drive.&lt;/strong&gt;&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Report Example:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/DriveSpace.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
When we began using Mountpoints the report was not as accurate and it needed to be
adjusted.&amp;nbsp; We have some internal services that&amp;nbsp;collect the drive size and
free space to a central DBA database.&amp;nbsp; Review of this monitoring reveals it is
using a WMI Query, a quick review of the WMI SDK shows another call that will pick
up mountpoints, Select * from WIN32_Volume.&amp;nbsp; Life is good.
&lt;/p&gt;
&lt;p&gt;
Not so quick after hurdling from drives to drives and mountpoints, a problem was revealed
where the WMI call failed on two servers.&amp;nbsp; &lt;font color=#ff1493&gt;Englightenment&lt;/font&gt;.&amp;nbsp;
These two sql servers have also been giving us odd issues with SQL Management Studio
(SSMS), which is highly dependent on WMI, SMO, .NET and probably some other stuff.&amp;nbsp;
Fixing WMI on these two servers fixed the issue and corrected the SSMS issues.
&lt;/p&gt;
&lt;p&gt;
Steps to fix WMI (Thanks to our Windows Team for the steps below):
&lt;/p&gt;
&lt;div dir=ltr align=left&gt;&lt;span class=197175017-29012009&gt;&lt;font face=Arial color=#0000ff size=2&gt;1.
net stop winmgmt&lt;br&gt;
2. del %SystemRoot%\System32\WBEM\Repository /s /q&lt;/font&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;div dir=ltr align=left&gt;&lt;span class=197175017-29012009&gt;&lt;font face=Arial color=#0000ff size=2&gt;&lt;/font&gt;&lt;/span&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div dir=ltr align=left&gt;&lt;span class=197175017-29012009&gt;&lt;font face=Arial color=#0000ff size=2&gt;If
that does not work, then I&lt;/font&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;div dir=ltr align=left&gt;&lt;span class=197175017-29012009&gt;&lt;font face=Arial color=#0000ff size=2&gt;&lt;/font&gt;&lt;/span&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div dir=ltr align=left&gt;&lt;span class=197175017-29012009&gt;&lt;font face=Arial color=#0000ff size=2&gt;1.&amp;nbsp;remove
all rights from %system32%\wbem\Repository\FS&lt;/font&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;div dir=ltr align=left&gt;&lt;span class=197175017-29012009&gt;&lt;font face=Arial color=#0000ff size=2&gt;2.&amp;nbsp;disable
the "Windows Management Instrumentation" service&lt;/font&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;div dir=ltr align=left&gt;&lt;span class=197175017-29012009&gt;&lt;font face=Arial color=#0000ff size=2&gt;3.
reboot&lt;/font&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;div dir=ltr align=left&gt;&lt;span class=197175017-29012009&gt;&lt;font face=Arial color=#0000ff size=2&gt;4.
add rights back to %system32%\wbem\Repository\FS&lt;/font&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;div dir=ltr align=left&gt;&lt;span class=197175017-29012009&gt;&lt;font face=Arial color=#0000ff size=2&gt;5.
delete the contents of %system32%\wbem\Repository\FS&lt;/font&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;div dir=ltr align=left&gt;&lt;span class=197175017-29012009&gt;&lt;font face=Arial color=#0000ff size=2&gt;6.&amp;nbsp;set
the "Windows Management Instrumentation" service back to Automatic&lt;/font&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;div dir=ltr align=left&gt;&lt;span class=197175017-29012009&gt;&lt;font face=Arial color=#0000ff size=2&gt;7.
start the "Windows Management Instrumentation" service&lt;/font&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;p&gt;
Here is a short quick Visual Basic Script (VBS) you can save to a text file with a
.VBS Extension to see the call to WMI to check disk space for mount points or drives.&amp;nbsp;
It filters out certain mount points for Polyserve as we don't want to monitor those,
also for some reason z:\ is mapped in our environment and this wmi script pulls that
with nulls, so you need to test for those.&amp;nbsp; You can also use Powershell, but
it is using a wmi call underneath the hood as well, and we have yet to install powershell
on all our servers.
&lt;/p&gt;
&lt;pre&gt;&lt;span style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;Set&lt;/span&gt; DiskSet &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;GetObject&lt;/span&gt;(&lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"winmgmts:{impersonationLevel=impersonate}!//BCCMAPP02"&lt;/span&gt;)_
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.ExecQuery(&lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"Select
* from Win32_Volume"&lt;/span&gt;) &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;For&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;Each&lt;/span&gt; objItem &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;In&lt;/span&gt; DiskSet
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Ignore &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;False&lt;/span&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;if&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;len&lt;/span&gt;(objitem.name)
&amp;gt;= 51 &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;then&lt;/span&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;If&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;UCase&lt;/span&gt;(&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;Left&lt;/span&gt;(objitem.name,51)) &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; _
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;UCase&lt;/span&gt;(&lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"C:\Program
Files\PolyServe\MatrixServer\conf\mounts"&lt;/span&gt;) &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;Then&lt;/span&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Ignore &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;True&lt;/span&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;End&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;If&lt;/span&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;End&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;If&lt;/span&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;If&lt;/span&gt; Ignore &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;False&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;Then&lt;/span&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;msgbox&lt;/span&gt;(objItem.Name
&amp;amp; vbCrLf &amp;amp; &lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"Percent
Free = "&lt;/span&gt; &amp;amp; _ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;round&lt;/span&gt;((objItem.freespace/objItem.Capacity)*100,2)
&amp;amp; _ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"
= "&lt;/span&gt; &amp;amp; objItem.freeSpace &amp;amp; &lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"
= "&lt;/span&gt; &amp;amp; objItem.Capacity) &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;End&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;If&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;Next&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=87682799-fc1a-4469-9456-9174956cf175" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,87682799-fc1a-4469-9456-9174956cf175.aspx</comments>
      <category>General Technology</category>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=95410fe7-2c07-4010-bb80-03f273e04652</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,95410fe7-2c07-4010-bb80-03f273e04652.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,95410fe7-2c07-4010-bb80-03f273e04652.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=95410fe7-2c07-4010-bb80-03f273e04652</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Discovered an issue with netbackup failing when there are more than 64 mount points
on a system.
</p>
        <p>
A Patch is to be delivered.
</p>
        <p>
Workaround implemented:
</p>
        <p>
          <hr />
        </p>
        <p>
ISSUE: 
<br />
GENERAL ERROR: bpbkar32 can experience a Application popup runtime error when attempting
to backup a Polyserve system with more than 64 mount points. 
<br /><br />
ERROR CODE/MESSAGE: 
<br />
Status 41 - network connection timed out 
<br /><br />
ENVIRONMENT/CONDITIONS: 
<br />
After introducing over 64 mount points onto a NetBackup client, you will experience
a limitation. 
<br />
EVIDENCE: 
<br />
Event Viewer: 
<br />
20070228 13:03:52 Application Popup I26 NA Application popup: Microsoft Visual C++
Runtime Library : Runtime Error! 
<br /><br />
Program: C:\Program Files\VERITAS\NetBackup\bin\bpbkar32.exe This application has
requested the Runtime to terminate it in an unusual way. Please contact the application's
support team for more information. 
<br /><br />
SOLUTION/WORKAROUND: 
<br /><br />
ETA of Fix: 
<br />
Symantec Corporation has acknowledged that the above-mentioned issue is present in
the current version(s) of the product(s) mentioned at the end of this article. Symantec
Corporation is committed to product quality and satisfied customers. 
<br /><br />
This issue has already been correct in 6.5GA and 6.0 MP6. However it is currently
being considered by Symantec Corporation to be addressed in a forthcoming Maintenance
Pack of 5.1. Please note that Symantec Corporation reserves the right to remove any
fix from the targeted release if it does not pass quality assurance tests or introduces
new risks to overall code stability. Symantec's plans are subject to change and any
action taken by you based on the above information or your reliance upon the above
information is made at your own risk. Please refer to the maintenance pack readme
or contact NetBackup Enterprise Support to confirm this issue (ET1039189) was included
in the maintenance pack. 
<br /><br />
As future maintenance packs are released, please visit the following link for download
and readme information: 
<br />
http://www.symantec.com/enterprise/support/downloads.jsp?pid=15143 
<br /><br />
WORKAROUND: 
<br />
Force NetBackup to use BackupRead() API by performing the following changes: (This
will not work if you are using Flashbackup to backup the data) 
<br /><br />
1. Click Start | Run, type regedit, and click OK 
<br /><br /><br />
Warning: Incorrect use of the Windows registry editor may prevent the operating system
from functioning properly. Great care should be taken when making changes to a Windows
registry. Registry modifications should only be carried-out by persons experienced
in the use of the registry editor application. It is recommended that a complete backup
of the registry and workstation be made prior to making any registry changes. 
<br /><br /><br />
2. Browse to HKEY_LOCAL_MACHINE\Software\VERITAS\NetBackup\CurrentVersion\Config 
<br /><br />
3. In the Config registry key, create a new key called NTIO 
<br /><br />
4. In the NTIO registry key, create a REG_DWORD value, give it the name UseNTIO, and
the value 0 (zero) 
<br /></p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=95410fe7-2c07-4010-bb80-03f273e04652" />
      </body>
      <title>Netbackup fails with more 64 Mount Points</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,95410fe7-2c07-4010-bb80-03f273e04652.aspx</guid>
      <link>http://www.lifeasbob.com/2008/09/25/NetbackupFailsWithMore64MountPoints.aspx</link>
      <pubDate>Thu, 25 Sep 2008 13:55:45 GMT</pubDate>
      <description>&lt;p&gt;
Discovered an issue with netbackup failing when there are more than 64 mount points
on a system.
&lt;/p&gt;
&lt;p&gt;
A Patch is to be delivered.
&lt;/p&gt;
&lt;p&gt;
Workaround implemented:
&lt;/p&gt;
&lt;p&gt;
&lt;hr&gt;
&lt;/p&gt;
&lt;p&gt;
ISSUE: 
&lt;br&gt;
GENERAL ERROR: bpbkar32 can experience a Application popup runtime error when attempting
to backup a Polyserve system with more than 64 mount points. 
&lt;br&gt;
&lt;br&gt;
ERROR CODE/MESSAGE: 
&lt;br&gt;
Status 41 - network connection timed out 
&lt;br&gt;
&lt;br&gt;
ENVIRONMENT/CONDITIONS: 
&lt;br&gt;
After introducing over 64 mount points onto a NetBackup client, you will experience
a limitation. 
&lt;br&gt;
EVIDENCE: 
&lt;br&gt;
Event Viewer: 
&lt;br&gt;
20070228 13:03:52 Application Popup I26 NA Application popup: Microsoft Visual C++
Runtime Library : Runtime Error! 
&lt;br&gt;
&lt;br&gt;
Program: C:\Program Files\VERITAS\NetBackup\bin\bpbkar32.exe This application has
requested the Runtime to terminate it in an unusual way. Please contact the application's
support team for more information. 
&lt;br&gt;
&lt;br&gt;
SOLUTION/WORKAROUND: 
&lt;br&gt;
&lt;br&gt;
ETA of Fix: 
&lt;br&gt;
Symantec Corporation has acknowledged that the above-mentioned issue is present in
the current version(s) of the product(s) mentioned at the end of this article. Symantec
Corporation is committed to product quality and satisfied customers. 
&lt;br&gt;
&lt;br&gt;
This issue has already been correct in 6.5GA and 6.0 MP6. However it is currently
being considered by Symantec Corporation to be addressed in a forthcoming Maintenance
Pack of 5.1. Please note that Symantec Corporation reserves the right to remove any
fix from the targeted release if it does not pass quality assurance tests or introduces
new risks to overall code stability. Symantec's plans are subject to change and any
action taken by you based on the above information or your reliance upon the above
information is made at your own risk. Please refer to the maintenance pack readme
or contact NetBackup Enterprise Support to confirm this issue (ET1039189) was included
in the maintenance pack. 
&lt;br&gt;
&lt;br&gt;
As future maintenance packs are released, please visit the following link for download
and readme information: 
&lt;br&gt;
http://www.symantec.com/enterprise/support/downloads.jsp?pid=15143 
&lt;br&gt;
&lt;br&gt;
WORKAROUND: 
&lt;br&gt;
Force NetBackup to use BackupRead() API by performing the following changes: (This
will not work if you are using Flashbackup to backup the data) 
&lt;br&gt;
&lt;br&gt;
1. Click Start | Run, type regedit, and click OK 
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Warning: Incorrect use of the Windows registry editor may prevent the operating system
from functioning properly. Great care should be taken when making changes to a Windows
registry. Registry modifications should only be carried-out by persons experienced
in the use of the registry editor application. It is recommended that a complete backup
of the registry and workstation be made prior to making any registry changes. 
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
2. Browse to HKEY_LOCAL_MACHINE\Software\VERITAS\NetBackup\CurrentVersion\Config 
&lt;br&gt;
&lt;br&gt;
3. In the Config registry key, create a new key called NTIO 
&lt;br&gt;
&lt;br&gt;
4. In the NTIO registry key, create a REG_DWORD value, give it the name UseNTIO, and
the value 0 (zero) 
&lt;br&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=95410fe7-2c07-4010-bb80-03f273e04652" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,95410fe7-2c07-4010-bb80-03f273e04652.aspx</comments>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=b63b59b0-e050-4afc-9921-674d2d60162c</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,b63b59b0-e050-4afc-9921-674d2d60162c.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,b63b59b0-e050-4afc-9921-674d2d60162c.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=b63b59b0-e050-4afc-9921-674d2d60162c</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
This post could be titled as:
</p>
        <ol>
          <li>
Moron</li>
          <li>
Don't Jump to conclusions 
</li>
          <li>
Research things appropriately</li>
          <li>
Think</li>
        </ol>
        <p>
Recently I experienced a machine that was running under some cpu pressure.  Seeing
that it was QA and during a load test, we were concerned with what was taking place
on the machine.  The machine was running 20-30%, not bad, but sqlservr.exe was
only using 10%.  Tracking down what else was taking place on the machine was
not easy.
</p>
        <p>
I focused in on DLM.EXE, wow, whats this...well being a moron, not thinking, jumping
to conclusions and doing improper research....caused this....
</p>
        <p>
A quick search in google, showed that DLM.exe shouldn't really be running and is often
used in viruses etc, so I killed it, than of course, the machine immediately crashed,
crap.  Like I said, this was QA and was meant to be the playground, but regardless
it's embarrasing to have a machine crash during a load test.
</p>
        <p>
Now the light bulb goes off...., duh this is "Polyserve", DLM.EXE has absoultely zero
to do with anything found on that google search.  DLM = Distributed Lock Manager,
and is the mechanism polyserve uses to control access to the clustered file system. 
DLM.exe was running high because the cluster was experiencing large amounts of i/o
across many servers due to the fact that we were running the load test during the
maintenance windows of the servers (dbcc's, backups, reindexes etc).
</p>
        <p>
The machine crashed because DLM.exe is part of the polyserve service, killing it caused
the file system to become unstable, so the server was "fenced" from the clustered
environment, exactly as Polyserve is supposed to do.  Nice to see that Polyserve
worked well, even when the operator is not.
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=b63b59b0-e050-4afc-9921-674d2d60162c" />
      </body>
      <title>DLM.EXE</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,b63b59b0-e050-4afc-9921-674d2d60162c.aspx</guid>
      <link>http://www.lifeasbob.com/2008/09/19/DLMEXE.aspx</link>
      <pubDate>Fri, 19 Sep 2008 13:56:05 GMT</pubDate>
      <description>&lt;p&gt;
This post could be titled as:
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
Moron&lt;/li&gt;
&lt;li&gt;
Don't Jump to conclusions 
&lt;/li&gt;
&lt;li&gt;
Research things appropriately&lt;/li&gt;
&lt;li&gt;
Think&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
Recently I experienced a machine that was running under some cpu pressure.&amp;nbsp; Seeing
that it was QA and during a load test, we were concerned with what was taking place
on the machine.&amp;nbsp; The machine was running 20-30%, not bad, but sqlservr.exe was
only using 10%.&amp;nbsp; Tracking down what else was taking place on the machine was
not easy.
&lt;/p&gt;
&lt;p&gt;
I focused in on DLM.EXE, wow, whats this...well being a moron, not thinking, jumping
to conclusions and doing improper research....caused this....
&lt;/p&gt;
&lt;p&gt;
A quick search in google, showed that DLM.exe shouldn't really be running and is often
used in viruses etc, so I killed it, than of course, the machine immediately crashed,
crap.&amp;nbsp; Like I said, this was QA and was meant to be the playground, but regardless
it's embarrasing to have a machine crash during a load test.
&lt;/p&gt;
&lt;p&gt;
Now the light bulb goes off...., duh this is "Polyserve", DLM.EXE has absoultely zero
to do with anything found on that google search.&amp;nbsp; DLM = Distributed Lock Manager,
and is the mechanism polyserve uses to control access to the clustered file system.&amp;nbsp;
DLM.exe was running high because the cluster was experiencing large amounts of i/o
across many servers due to the fact that we were running the load test during the
maintenance windows of the servers (dbcc's, backups, reindexes etc).
&lt;/p&gt;
&lt;p&gt;
The machine crashed because DLM.exe is part of the polyserve service, killing it caused
the file system to become unstable, so the server was "fenced" from the clustered
environment, exactly as Polyserve is supposed to do.&amp;nbsp; Nice to see that Polyserve
worked well, even when the operator is not.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=b63b59b0-e050-4afc-9921-674d2d60162c" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,b63b59b0-e050-4afc-9921-674d2d60162c.aspx</comments>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=eb148262-7c99-4f8a-9579-f4662b0dfbfb</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,eb148262-7c99-4f8a-9579-f4662b0dfbfb.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,eb148262-7c99-4f8a-9579-f4662b0dfbfb.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=eb148262-7c99-4f8a-9579-f4662b0dfbfb</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <hr />
Better known as, "Polyserve is puking and you get to clean it up !".   Technincally
it's not fair to blame Polyserve, as the root cause of this issue looks to be a corrupt
registry from version 3.4 that was never properly corrected.  We've never experienced
an issue like this with SQL Instances installed from version 3.6 originally. 
</p>
        <p>
        </p>
        <p>
When you have a SQL Server instance in Polyserve that will not fail back to it's
primary, you know you have a problem.  Best bet, call technincal support [that's
what maintenance is for!], but here is what happenned to us recently and what
we did to correct this issue [we have seen this before and called technical support
and concurred this is the permanent fix].
</p>
        <p>
Automated patching of the development environment caused some sql instances to fail
over, this is expected.  We do not run the instances in "auto fail back" mode,
preferring to complete this step manually to minimize "ping-ponging" instances. 
After patching we reviewed the environment, and it looks good, with the excpetion
of one instance, it is on it's secondary, it is running, it is available, but notice
the status of "warning".
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/polyserve_failed_instance.JPG" border="0" />
        </p>
        <p>
There is no nice error message in the console.  Right clicking the instance to
"show alerts", displays nothing.  What gives ?
</p>
        <p>
Who cares right, just move the instance back to the primary and let's get working....no
dice.  <strong>The instance won't move, and NO Error or Message is given, crap,
you know your in trouble now....for the newly Polyserve initiated, this is when you
STOP and call technical support.</strong>  The more you play with things, <font color="#ff0000">the
worse it will get</font> and it will cause technincal support consternation in correcting
the issue.  Since this was development I get to play...
</p>
        <p>
The instance will not fail back, if we rehost, that result is no change.  Disabling
the instance is the same result.  I'm pretty sure you could reboot the server
and that would cause it to fail back to the primary, matter of fact, i'm positive....but
what if you have other instances on that same physical server and you can't afford
an outage ?  Also that may temporarily correct the issue, but it doesn't address
the root cause and future scenarios of patching or fail over, may result in the same
condition.
</p>
        <p>
What the hell is happenning ?
</p>
        <p>
Finally digging through all the logs (including Polyserve logs), i find that Polyserve
still thinks the instance is "starting", and since it is in "starting mode", it does
not fail it over when requested.  There needs to be someway of over-riding this
stupid behavior but it is "by design".  See pic:
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/Polyserve_instance_starting.JPG" border="0" />
        </p>
        <p>
What and why ?  Based on past experience and knowing this instance existed from
version 3.4 to 3.6, I know this deals with the registry issues.  A quick
peak of the registry on the server it is currently hosted on shows that some of the
registry entries point to the virtual root (3.6) and some of the registry entries
point to mxshells (3.4), notice the registry entries below, they should all point
to the virtual root:<img src="http://www.lifeasbob.com/content/binary/polyserve_registry_virtual_root.JPG" border="0" /></p>
        <p>
 
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/polyserve_registry_sql_agent.jpg" border="0" />
        </p>
        <p>
          <hr />
        </p>
        <p>
        </p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/polyserve_registry_sql_settings.JPG" border="0" />
        </p>
        <p>
Now the correct way to fix this is to delete the sql instance from Polyserve (not
the machines).  Verify the registry entries and sql instance on each machine. 
Delete any polyserve sql.original, sql.preg etc files (make a copy first).  Re-virtualize
it and re-verify everything.  
</p>
        <p>
Obviously if this is production instance, you might have to wait in doing this, as
it is time consuming.  In which case you can manually stop the services and see
if you can get things to fail back, though you may have to reboot the server. 
At some point, the only way to correct the root cause is find a maintenance window
to allow you to delete the instance from polyserve, correct each individual sql instance
and re-virtualize.  Fun !
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=eb148262-7c99-4f8a-9579-f4662b0dfbfb" />
      </body>
      <title>SQL Instance will not fail back to primary</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,eb148262-7c99-4f8a-9579-f4662b0dfbfb.aspx</guid>
      <link>http://www.lifeasbob.com/2008/09/15/SQLInstanceWillNotFailBackToPrimary.aspx</link>
      <pubDate>Mon, 15 Sep 2008 16:06:17 GMT</pubDate>
      <description>&lt;p&gt;
&lt;hr&gt;
Better known as, "Polyserve is puking and you get to clean it up !".&amp;nbsp;&amp;nbsp; Technincally
it's not fair to blame Polyserve, as the root cause of this issue looks to be a corrupt
registry from version 3.4 that was never properly corrected.&amp;nbsp; We've never experienced
an issue like this with SQL Instances installed from version 3.6 originally. 
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
When you have&amp;nbsp;a SQL Server instance in Polyserve that will not fail back to it's
primary, you know you have a problem.&amp;nbsp; Best bet, call technincal support [that's
what maintenance is for!],&amp;nbsp;but here is what happenned to us recently and what
we did to correct this issue [we have seen this before and called technical support
and concurred this is the permanent fix].
&lt;/p&gt;
&lt;p&gt;
Automated patching of the development environment caused some sql instances to fail
over, this is expected.&amp;nbsp; We do not run the instances in "auto fail back" mode,
preferring to complete this step manually to minimize "ping-ponging" instances.&amp;nbsp;
After patching we reviewed the environment, and it looks good, with the excpetion
of one instance, it is on it's secondary, it is running, it is available, but notice
the status of "warning".
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/polyserve_failed_instance.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
There is no nice error message in the console.&amp;nbsp; Right clicking the instance to
"show alerts", displays nothing.&amp;nbsp; What gives ?
&lt;/p&gt;
&lt;p&gt;
Who cares right, just move the instance back to the primary and let's get working....no
dice.&amp;nbsp; &lt;strong&gt;The instance won't move, and NO Error or Message is given, crap,
you know your in trouble now....for the newly Polyserve initiated, this is when you
STOP and call technical support.&lt;/strong&gt;&amp;nbsp; The more you play with things, &lt;font color=#ff0000&gt;the
worse it will get&lt;/font&gt; and it will cause technincal support consternation in correcting
the issue.&amp;nbsp; Since this was development I get to play...
&lt;/p&gt;
&lt;p&gt;
The instance will not fail back, if we rehost, that result is no change.&amp;nbsp; Disabling
the instance is the same result.&amp;nbsp; I'm pretty sure you could reboot the server
and that would cause it to fail back to the primary, matter of fact, i'm positive....but
what if you have other instances on that same physical server and you can't afford
an outage ?&amp;nbsp; Also that may temporarily correct the issue, but it doesn't address
the root cause and future scenarios of patching or fail over, may result in the same
condition.
&lt;/p&gt;
&lt;p&gt;
What the hell is happenning ?
&lt;/p&gt;
&lt;p&gt;
Finally digging through all the logs (including Polyserve logs), i find that Polyserve
still thinks the instance is "starting", and since it is in "starting mode", it does
not fail it over when requested.&amp;nbsp; There needs to be someway of over-riding this
stupid behavior but it is "by design".&amp;nbsp; See pic:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/Polyserve_instance_starting.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
What and why ?&amp;nbsp; Based on past experience and knowing this instance existed from
version 3.4 to 3.6, I know this deals with the registry&amp;nbsp;issues.&amp;nbsp; A quick
peak of the registry on the server it is currently hosted on shows that some of the
registry entries point to the virtual root (3.6) and some of the registry entries
point to mxshells (3.4), notice the registry entries below, they should all point
to the virtual root:&lt;img src="http://www.lifeasbob.com/content/binary/polyserve_registry_virtual_root.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/polyserve_registry_sql_agent.jpg" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;hr&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/polyserve_registry_sql_settings.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Now the correct way to fix this is to delete the sql instance from Polyserve (not
the machines).&amp;nbsp; Verify the registry entries and sql instance on each machine.&amp;nbsp;
Delete any polyserve sql.original, sql.preg etc files (make a copy first).&amp;nbsp; Re-virtualize
it and re-verify everything.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Obviously if this is production instance, you might have to wait in doing this, as
it is time consuming.&amp;nbsp; In which case you can manually stop the services and see
if you can get things to fail back, though you may have to reboot the server.&amp;nbsp;
At some point, the only way to correct the root cause is find a maintenance window
to allow you to delete the instance from polyserve, correct each individual sql instance
and re-virtualize.&amp;nbsp; Fun !
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=eb148262-7c99-4f8a-9579-f4662b0dfbfb" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,eb148262-7c99-4f8a-9579-f4662b0dfbfb.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=44a4279c-931b-4a5c-976f-9b9f5d929854</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,44a4279c-931b-4a5c-976f-9b9f5d929854.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,44a4279c-931b-4a5c-976f-9b9f5d929854.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=44a4279c-931b-4a5c-976f-9b9f5d929854</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Evaluation of the Polyserve 3.6.1 is underway.
</p>
        <p>
Recently completed the upgrade of our Development cluster.  All went smooth.  
</p>
        <p>
This is another one of those difficult upgrades that requires multiple outages (though
small).  First you have to un-install the software and then install the new software. 
So this causes an outage.  The File systems also have to be upgraded, so you
have to stop using each file system to upgrade it, this causes another outage.  
</p>
        <p>
So far things have been quick and no issues.
</p>
        <p>
Definetly had we not completed the 3.4 to 3.6 upgrade, this would have been very difficult,
as the 3.4 to 3.6 upgrade was more complex.
</p>
        <p>
No word yet on Polyserve support for sql server 2008.  Though based on the sparse
and ADS (Alternative Data Streams) file system options in 3.6.1 they are very close,
and I'd bet you will have to be on 3.6.1 as both the sparse and ADS seem to be necessary
for sql server 2008.
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=44a4279c-931b-4a5c-976f-9b9f5d929854" />
      </body>
      <title>Polyserve 3.6.1 upgrade</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,44a4279c-931b-4a5c-976f-9b9f5d929854.aspx</guid>
      <link>http://www.lifeasbob.com/2008/09/11/Polyserve361Upgrade.aspx</link>
      <pubDate>Thu, 11 Sep 2008 19:06:44 GMT</pubDate>
      <description>&lt;p&gt;
Evaluation of the Polyserve 3.6.1 is underway.
&lt;/p&gt;
&lt;p&gt;
Recently completed the upgrade of our Development cluster.&amp;nbsp; All went smooth.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
This is another one of those difficult upgrades that requires multiple outages (though
small).&amp;nbsp; First you have to un-install the software and then install the new software.&amp;nbsp;
So this causes an outage.&amp;nbsp; The File systems also have to be upgraded, so you
have to stop using each file system to upgrade it, this causes another outage.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
So far things have been quick and no issues.
&lt;/p&gt;
&lt;p&gt;
Definetly had we not completed the 3.4 to 3.6 upgrade, this would have been very difficult,
as the 3.4 to 3.6 upgrade was more complex.
&lt;/p&gt;
&lt;p&gt;
No word yet on Polyserve support for sql server 2008.&amp;nbsp; Though based on the sparse
and ADS (Alternative Data Streams) file system options in 3.6.1 they are very close,
and I'd bet you will have to be on 3.6.1 as both the sparse and ADS seem to be necessary
for sql server 2008.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=44a4279c-931b-4a5c-976f-9b9f5d929854" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,44a4279c-931b-4a5c-976f-9b9f5d929854.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=bbe4b85f-fe0f-4b55-a5d5-3d80cbfd5d31</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,bbe4b85f-fe0f-4b55-a5d5-3d80cbfd5d31.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,bbe4b85f-fe0f-4b55-a5d5-3d80cbfd5d31.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=bbe4b85f-fe0f-4b55-a5d5-3d80cbfd5d31</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I love patching clustered servers (not!), and patching polyserve is usually quite
simple and not an issue.   I'm not referring to Polyserve patches, but Operating
System (microsoft, hba, other drivers etc) patches.
</p>
        <p>
We normally have designed a special "rolling" sequential patch of 15 minute intervals
for the clustered servers, trying to give each server enough time to recover before
the next one rolls.
</p>
        <p>
Something happenned with that sequence, and things rolled like a ping-pong ! 
Polyserve stabilized, but there was an issue with two instances.  Review of the
issue determined that the mount points that these instances rely on, did not happen,
meaning the mounts failed.
</p>
        <p>
I attempted to remount the volumes and received the following error, "10.10.49.114
assign_drive_letter failed: "D:\Mounts\SysData\" is already a reparse point.".  
</p>
        <p>
          <hr />
        </p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/Polyserve_Reparse_Point.JPG" border="0" />
        </p>
        <p>
          <hr />
        </p>
        <p>
I'm not really sure why this happenned, meaning windows, polyserve, san related root
cause.  I attempted to reboot the nodes that these failed on and recieved the
same error, hey a reboot fixes everything under windoze, right ?
</p>
        <p>
I found the only way to correct this was to find the folder where these "reparse points"
(junction point or mount point) stem from and to completely delete that folder. 
So in the above example I had to delete the folder eamload_data1 under eam (remember
to do this on each node that has a problem).  I then assigned the mount point
as normal, and all the instances worked fine.
</p>
        <p>
I've seen sporadic issues with mount points in the past, polyserve and non-polyserve. 
See a previous point here on how to remove a ghosted mount point...
</p>
        <p>
          <a href="http://www.lifeasbob.com/2008/03/25/ManuallyRemoveAMountPoint.aspx">http://www.lifeasbob.com/2008/03/25/ManuallyRemoveAMountPoint.aspx</a> 
</p>
        <p>
It'll be interesting to see if this happens again or was a "one time" deal.
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=bbe4b85f-fe0f-4b55-a5d5-3d80cbfd5d31" />
      </body>
      <title>Assign_Drive_Letter Failed is already a reparse point</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,bbe4b85f-fe0f-4b55-a5d5-3d80cbfd5d31.aspx</guid>
      <link>http://www.lifeasbob.com/2008/08/17/AssignDriveLetterFailedIsAlreadyAReparsePoint.aspx</link>
      <pubDate>Sun, 17 Aug 2008 20:42:27 GMT</pubDate>
      <description>&lt;p&gt;
I love patching clustered servers (not!), and patching polyserve is usually quite
simple and not an issue.&amp;nbsp;&amp;nbsp; I'm not referring to Polyserve patches, but Operating
System (microsoft, hba, other drivers etc) patches.
&lt;/p&gt;
&lt;p&gt;
We normally have designed a special "rolling" sequential patch of 15 minute intervals
for the clustered servers, trying to give each server enough time to recover before
the next one rolls.
&lt;/p&gt;
&lt;p&gt;
Something happenned with that sequence, and things rolled like a ping-pong !&amp;nbsp;
Polyserve stabilized, but there was an issue with two instances.&amp;nbsp; Review of the
issue determined that the mount points that these instances rely on, did not happen,
meaning the mounts failed.
&lt;/p&gt;
&lt;p&gt;
I attempted to remount the volumes and received the following error, "10.10.49.114
assign_drive_letter failed: "D:\Mounts\SysData\" is already a reparse point.".&amp;nbsp; 
&lt;p&gt;
&lt;hr&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/Polyserve_Reparse_Point.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;hr&gt;
&lt;/p&gt;
&lt;p&gt;
I'm not really sure why this happenned, meaning windows, polyserve, san related root
cause.&amp;nbsp; I attempted to reboot the nodes that these failed on and recieved the
same error, hey a reboot fixes everything under windoze, right ?
&lt;/p&gt;
&lt;p&gt;
I found the only way to correct this was to find the folder where these "reparse points"
(junction point or mount point) stem from and to completely delete that folder.&amp;nbsp;
So in the above example I had to delete the folder eamload_data1 under eam (remember
to do this on each node that has a problem).&amp;nbsp; I then assigned the mount point
as normal, and all the instances worked fine.
&lt;/p&gt;
&lt;p&gt;
I've seen sporadic issues with mount points in the past, polyserve and non-polyserve.&amp;nbsp;
See a previous point here on how to remove a ghosted mount point...
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.lifeasbob.com/2008/03/25/ManuallyRemoveAMountPoint.aspx"&gt;http://www.lifeasbob.com/2008/03/25/ManuallyRemoveAMountPoint.aspx&lt;/a&gt;&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
It'll be interesting to see if this happens again or was a "one time" deal.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=bbe4b85f-fe0f-4b55-a5d5-3d80cbfd5d31" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,bbe4b85f-fe0f-4b55-a5d5-3d80cbfd5d31.aspx</comments>
      <category>General Technology</category>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=32db757e-2794-4215-b3a6-3de6bbd8b30a</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,32db757e-2794-4215-b3a6-3de6bbd8b30a.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,32db757e-2794-4215-b3a6-3de6bbd8b30a.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=32db757e-2794-4215-b3a6-3de6bbd8b30a</wfw:commentRss>
      <title>Assigning SQL Server a Static Port Number</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,32db757e-2794-4215-b3a6-3de6bbd8b30a.aspx</guid>
      <link>http://www.lifeasbob.com/2008/08/05/AssigningSQLServerAStaticPortNumber.aspx</link>
      <pubDate>Tue, 05 Aug 2008 13:45:40 GMT</pubDate>
      <description>&lt;p&gt;
Assigning SQL Server a static port number is necessary for many reasons, cluster,
firewalls, security through obsecurity etc.&amp;nbsp; We use Polyserve and often have
to assign port numbers, we've never really had a good guide to follow on this, even
the Polyserve documentation doesn't really have a white paper or a short paragraph
on a port numbering strategy.&amp;nbsp; After several years now of running static ports,
one is definetly needed.&amp;nbsp; Before you can create a strategy for your Polyserve
environment or SQL Server, the below except is a great generic explanation about port
numbering and uses. 
&lt;hr&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
This is&amp;nbsp;from December 1999, but is just as relevant today.&amp;nbsp; Source = &lt;a href="http://www.microsoft.com/technet/archive/community/columns/inside/techan23.mspx?mfr=true"&gt;http://www.microsoft.com/technet/archive/community/columns/inside/techan23.mspx?mfr=true&lt;/a&gt;&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&lt;hr&gt;
&lt;p&gt;
&lt;/p&gt;&lt;Font="Verdana"&gt;
&lt;p&gt;
&lt;b&gt;Most everything you ever wanted to know about TCP/IP Port Numbers&lt;/b&gt;
&lt;/p&gt;
&lt;p&gt;
Port numbers are divided into three ranges: the Well-Known Ports, the Registered Ports,
and the Dynamic and/or Private Ports. The Well-Known Ports are those from 0 through
1023.The Registered Ports are those from 1024 through 49151. The Dynamic and/or Private
Ports are those from 49152 through 65535.
&lt;/p&gt;
&lt;p&gt;
Well-Known Ports are assigned by Internet Assigned Numbers Authority (IANA) and should
only be used by System Processes or by programs executed by privileged users. An example
of this type of port is 80/TCP and 80/UDP. These ports are privileged and reserved
for use by the HTTP protocol.
&lt;/p&gt;
&lt;p&gt;
Registered Ports are listed by the IANA and on most systems can be used by ordinary
user processes or programs executed by ordinary users. An example of this type of
port is 1723/TCP and 1723/UDP. Although other processes can use these ports, they
are generally accepted as the connection control port for Point To Point Tunneling
Protocol (PPTP).
&lt;/p&gt;
&lt;p&gt;
Dynamic or Private Ports can be used by any process or user, and are unrestricted.
&lt;/p&gt;
&lt;p&gt;
IANA maintains a list of ports on their Web site (&lt;a href="http://www.isi.edu/in-notes/iana/assignments/port-numbers"&gt;http://www.isi.edu/in-notes/iana/assignments/port-numbers&lt;/a&gt;)
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&gt; &lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=32db757e-2794-4215-b3a6-3de6bbd8b30a" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,32db757e-2794-4215-b3a6-3de6bbd8b30a.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=322a084c-91f7-4f6b-beb8-b81f1315d98c</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,322a084c-91f7-4f6b-beb8-b81f1315d98c.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,322a084c-91f7-4f6b-beb8-b81f1315d98c.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=322a084c-91f7-4f6b-beb8-b81f1315d98c</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
When working with the Polyserve SQL Installer or Multi-Node Upgrade Wizard for SQL
Server, we noticed an issue where even after applying the SQL Hotfix, the SQL Version
was showing as not upgraded on some machines, this was concerning as the utility did
allow us to re-virtualize with these instances in different versions, this is a big
concern.  You do not want a SQL Instance on the cluster to be different versions,
Different instances can be different versions, but a single instance should be the
same across each machine, see picture: 
<hr /></p>
        <p>
        </p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/polyserve_sql_installer_version_mismatch.JPG" border="0" />
          <hr />
        </p>
        <p>
        </p>
        <p>
Surprisingly when you went to the individual machines and checked, the SQL version
was the same (so on the picture above, physically checking DEVPLYSQL01, SQLTest1 instance
was at version, 9.2.3228).  So why was the utility showing 9.2.3152, even after
we applied the hotfix ?  No error was reported, but something wasn't right.
</p>
        <p>
Not sure if the instance was not put in maintenance mode properly, or if something
else occurred, but using RegMon (registry montior) while the multi-node installer
utility ran, i was able to determine that the Polyserve utility used a registry entry
to populate this screen.  We were checking the physical binary sqlservr.exe and
@@Version (select @@version).  The registry entry is located at:  HKLM\Software\Microsoft\Microsoft
SQL Server\MSSQL.n\Setup , the key is PatchLevel.  Note that you may have to
determine what Instance maps to what MSSQL.n, this can be done by checking another
key, HKLM\Software\Microsoft\Microsoft SQL Server\Instance Names, There you will see
the mapping of an instance name to it's mssql.n location, see below: 
<hr /></p>
        <p>
        </p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/Map_SQL_Instance_To_Directory.JPG" border="0" />
          <hr />
          <img src="http://www.lifeasbob.com/content/binary/SQL_Server_Registry_Mismatch.JPG" border="0" />
          <hr />
Obviously something went wrong, even though no error was reported back through the
service pack / hotfix installer.  The solution is to ensure to put the Instance
in maintenance mode and then being the "non-trusting" type, I manually applied the
hotfix / service pack to those nodes that have the issue.  Interestingly the
hotfix installer indicated the instances had been upgraded, so obviously the hotfix
installer doesn't check the same registry entry as the Polyserve installer. 
I manually checked the instance in question and ran it again.   It reported
success.  I again opened the registry and checked the patch level entry, this
time it reported the correct version number.  I opened the Polyserve utility,
multi-node installer and it also reported all the version numbers correctly and homogenously
(is that a word ?).  We then took the instances out of maintenance mode and all
was good.
</p>
        <p>
We never experienced any errors or issues, so the moral of the story is, "to run your
upgrade / service pack / hotfix and re-verify version numbers across each node, regardless
of the messagebox reporting success", also "re-open the multi-node installer (it caches
information so completely leave the utility), and verify that it "agrees" that the
version numbers are the same".  Do this before going out of maintenance mode
!
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=322a084c-91f7-4f6b-beb8-b81f1315d98c" />
      </body>
      <title>Polyserve SQL Installer / Upgrader</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,322a084c-91f7-4f6b-beb8-b81f1315d98c.aspx</guid>
      <link>http://www.lifeasbob.com/2008/07/30/PolyserveSQLInstallerUpgrader.aspx</link>
      <pubDate>Wed, 30 Jul 2008 13:53:53 GMT</pubDate>
      <description>&lt;p&gt;
When working with the Polyserve SQL Installer or Multi-Node Upgrade Wizard for SQL
Server, we noticed an issue where even after applying the SQL Hotfix, the SQL Version
was showing as not upgraded on some machines, this was concerning as the utility did
allow us to re-virtualize with these instances in different versions, this is a big
concern.&amp;nbsp; You do not want a SQL Instance on the cluster to be different versions,
Different instances can be different versions, but a single instance should be the
same across each machine, see picture: 
&lt;hr&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/polyserve_sql_installer_version_mismatch.JPG" border=0&gt; 
&lt;hr&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
Surprisingly when you went to the individual machines and checked, the SQL version
was the same (so on the picture above, physically checking DEVPLYSQL01, SQLTest1 instance
was at version, 9.2.3228).&amp;nbsp; So why was the utility showing 9.2.3152, even after
we applied the hotfix ?&amp;nbsp; No error was reported, but something wasn't right.
&lt;/p&gt;
&lt;p&gt;
Not sure if the instance was not put in maintenance mode properly, or if something
else occurred, but using RegMon (registry montior) while the multi-node installer
utility ran, i was able to determine that the Polyserve utility used a registry entry
to populate this screen.&amp;nbsp; We were checking the physical binary sqlservr.exe and
@@Version (select @@version).&amp;nbsp; The registry entry is located at:&amp;nbsp; HKLM\Software\Microsoft\Microsoft
SQL Server\MSSQL.n\Setup , the key is PatchLevel.&amp;nbsp; Note that you may have to
determine what Instance maps to what MSSQL.n, this can be done by checking another
key, HKLM\Software\Microsoft\Microsoft SQL Server\Instance Names, There you will see
the mapping of an instance name to it's mssql.n location, see below: 
&lt;hr&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/Map_SQL_Instance_To_Directory.JPG" border=0&gt; 
&lt;hr&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/SQL_Server_Registry_Mismatch.JPG" border=0&gt; 
&lt;hr&gt;
Obviously something went wrong, even though no error was reported back through the
service pack / hotfix installer.&amp;nbsp; The solution is to ensure to put the Instance
in maintenance mode and then being the "non-trusting" type, I manually applied the
hotfix / service pack to those nodes that have the issue.&amp;nbsp; Interestingly the
hotfix installer indicated the instances had been upgraded, so obviously the hotfix
installer doesn't check the same registry entry as the Polyserve installer.&amp;nbsp;
I manually checked the instance in question and ran it again.&amp;nbsp;&amp;nbsp; It reported
success.&amp;nbsp; I again opened the registry and checked the patch level entry, this
time it reported the correct version number.&amp;nbsp; I opened the Polyserve utility,
multi-node installer and it also reported all the version numbers correctly and homogenously
(is that a word ?).&amp;nbsp; We then took the instances out of maintenance mode and all
was good.
&lt;/p&gt;
&lt;p&gt;
We never experienced any errors or issues, so the moral of the story is, "to run your
upgrade / service pack / hotfix and re-verify version numbers across each node, regardless
of the messagebox reporting success", also "re-open the multi-node installer (it caches
information so completely leave the utility), and verify that it "agrees" that the
version numbers are the same".&amp;nbsp; Do this before going out of maintenance mode
!
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=322a084c-91f7-4f6b-beb8-b81f1315d98c" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,322a084c-91f7-4f6b-beb8-b81f1315d98c.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=03da028b-46f9-4332-97c0-465f559f05bf</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,03da028b-46f9-4332-97c0-465f559f05bf.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,03da028b-46f9-4332-97c0-465f559f05bf.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=03da028b-46f9-4332-97c0-465f559f05bf</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Our Polyserve cluster took a deep dive and crashed, all nodes.  Root cause is
still under research, but basically we zoned some new storage to the cluster and after
a reboot of the nodes the Polyserve software was unable to read or write to the membership
partitions.  Of course the error didn't state that, as that would have made troubleshooting
the problem easier, instead we received this error: 
<hr /><font color="#0000ff">Event Type: Error<br />
Event Source: sanpulse<br />
Event Category: SAN Storage<br />
Event ID: 17005<br />
Date:  7/2/2008<br />
Time:  9:35:40 AM<br />
User:  N/A<br />
Computer: BCPLYSQL03<br />
Description:<br />
This matrix is unable to take control of SAN because the servers are unable to perform
fencing operations, possibly due to a networking or fencing hardware failure or misconfiguration.
As a result, some or all filesystem operations may be paused throughout the matrix.
In addition, filesystem mounts and unmounts and disk imports and deports cannot be
performed.</font><br /><hr /></p>
        <p>
We have zoned storage to Polyserve many many times, and never had a stability issue,
we've had isolated issues with LUNS not showing up, mini / storport issues, emulex
issues, but nothing that caused the cluster to become unstable.
</p>
        <p>
So we eventually de-zoned the new storage, rebooted the entire cluster and everything
worked fine.  We're not sure if we zoned the storage incorrectly (we have a new
SAN Administrator, so maybe it wasn't done correctly), though I don't suspect this. 
Our SAN Administrator while new has succesfully zoned storage to our clusters in the
past with no issues, and understands how / what Polyserve is.  
</p>
        <p>
More so, I suspect some internal issue to windows / emulex / Powerpath or something
that upon the zoning of the new storage, caused the LUN Id's change to map incorrectly.
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=03da028b-46f9-4332-97c0-465f559f05bf" />
      </body>
      <title>I/O Error reading and writing to membership partitions</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,03da028b-46f9-4332-97c0-465f559f05bf.aspx</guid>
      <link>http://www.lifeasbob.com/2008/07/02/IOErrorReadingAndWritingToMembershipPartitions.aspx</link>
      <pubDate>Wed, 02 Jul 2008 15:47:50 GMT</pubDate>
      <description>&lt;p&gt;
Our Polyserve cluster took a deep dive and crashed, all nodes.&amp;nbsp; Root cause is
still under research, but basically we zoned some new storage to the cluster and after
a reboot of the nodes the Polyserve software was unable to read or write to the membership
partitions.&amp;nbsp; Of course the error didn't state that, as that would have made troubleshooting
the problem easier, instead we received this error: 
&lt;hr&gt;
&lt;font color=#0000ff&gt;Event Type:&amp;nbsp;Error&lt;br&gt;
Event Source:&amp;nbsp;sanpulse&lt;br&gt;
Event Category:&amp;nbsp;SAN Storage&lt;br&gt;
Event ID:&amp;nbsp;17005&lt;br&gt;
Date:&amp;nbsp;&amp;nbsp;7/2/2008&lt;br&gt;
Time:&amp;nbsp;&amp;nbsp;9:35:40 AM&lt;br&gt;
User:&amp;nbsp;&amp;nbsp;N/A&lt;br&gt;
Computer:&amp;nbsp;BCPLYSQL03&lt;br&gt;
Description:&lt;br&gt;
This matrix is unable to take control of SAN because the servers are unable to perform
fencing operations, possibly due to a networking or fencing hardware failure or misconfiguration.
As a result, some or all filesystem operations may be paused throughout the matrix.
In addition, filesystem mounts and unmounts and disk imports and deports cannot be
performed.&lt;/font&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;/p&gt;
&lt;p&gt;
We have zoned storage to Polyserve many many times, and never had a stability issue,
we've had isolated issues with LUNS not showing up, mini / storport issues, emulex
issues, but nothing that caused the cluster to become unstable.
&lt;/p&gt;
&lt;p&gt;
So we eventually de-zoned the new storage, rebooted the entire cluster and everything
worked fine.&amp;nbsp; We're not sure if we zoned the storage incorrectly (we have a new
SAN Administrator, so maybe it wasn't done correctly), though I don't suspect this.&amp;nbsp;
Our SAN Administrator while new has succesfully zoned storage to our clusters in the
past with no issues, and understands how / what Polyserve is.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
More so, I suspect some internal issue to windows / emulex / Powerpath or something
that upon the zoning of the new storage, caused the LUN Id's change to map incorrectly.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=03da028b-46f9-4332-97c0-465f559f05bf" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,03da028b-46f9-4332-97c0-465f559f05bf.aspx</comments>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=8b744ada-49ec-47a5-97c1-5f5033a51930</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,8b744ada-49ec-47a5-97c1-5f5033a51930.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,8b744ada-49ec-47a5-97c1-5f5033a51930.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=8b744ada-49ec-47a5-97c1-5f5033a51930</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
When you extend an instance of SQL Server on Polyserve, to a new server the startup
procedure in the master database is not installed, which if the new instance, on the
new server is installed to a different MSSQL.x path, the sql agent service may have
issues running jobs, as the sub systems will have different paths.
</p>
        <p>
 
</p>
        <p>
For my scenario I had 7 machines in a cluster, with an instance SQLTest1 installed
on servers 1,2 and 3, with a directory of mssql.3.  This all previously existed
and worked flawlessly for many months, but then I needed to setup SQLTest1 on server
number 7, this required installing SQL on server 7, and then adjusting the properties
in Polyserve to include 7, than failing over to 7.  All this worked great, but
further inspection showed that the there were some SQLAgent jobs failing and/or entering
a "suspended" state.
</p>
        <p>
 
</p>
        <p>
A quick review showed that server 7 installed to mssql.1.  Polyserve is supposed
to handle this, it does this through a procedure in the master database that is set
to startup automatically.  I've seen other instances installed to mssql.1,mssql.2
and mssql.1 and there is no issue, as that stored procedure in the master database
handles adjusting sql agent sub systems.  I reviewed the SQLTest1 instance and
the procedure was definetly missing.  I manually added the procedure and
ran it, now the fail over between any of the servers work.
</p>
        <p>
 
</p>
        <p>
I can only surmise that the initial virtualization did not add the procedure, because
it was not needed, all the sub systems were the same mssql.3.  
</p>
        <p>
 
</p>
        <p>
I think this may be a bug, it is very simple to fix, the difficult part is recognizing
the problem and knowing what the fix is!
</p>
        <p>
I contacted Polyserve on this, and the thinking is that this was caused by the 3.4
to 3.6 upgrade and would not happen on an instance that was "fresh" on 3.6 from day
zero, makes sense.
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=8b744ada-49ec-47a5-97c1-5f5033a51930" />
      </body>
      <title>Startup Procedure not installed</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,8b744ada-49ec-47a5-97c1-5f5033a51930.aspx</guid>
      <link>http://www.lifeasbob.com/2008/06/24/StartupProcedureNotInstalled.aspx</link>
      <pubDate>Tue, 24 Jun 2008 19:58:08 GMT</pubDate>
      <description>&lt;p&gt;
When you extend an instance of SQL Server on Polyserve, to a new server the startup
procedure in the master database is not installed, which if the new instance, on the
new server is installed to a different MSSQL.x path, the sql agent service may have
issues running jobs, as the sub systems will have different paths.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
For my scenario I had 7 machines in a cluster, with an instance SQLTest1 installed
on servers 1,2 and 3, with a directory of mssql.3.&amp;nbsp; This all previously existed
and worked flawlessly for many months, but then I needed to setup SQLTest1 on&amp;nbsp;server
number 7, this required installing SQL on server 7, and then adjusting the properties
in Polyserve to include 7, than failing over to 7.&amp;nbsp; All this worked great, but
further inspection showed that the there were some SQLAgent jobs failing and/or entering
a "suspended" state.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
A quick review showed that server 7 installed to mssql.1.&amp;nbsp; Polyserve is supposed
to handle this, it does this through a procedure in the master database that is set
to startup automatically.&amp;nbsp; I've seen other instances installed to mssql.1,mssql.2
and mssql.1 and there is no issue, as that stored procedure in the master database
handles adjusting sql agent sub systems.&amp;nbsp; I reviewed the SQLTest1 instance and
the procedure&amp;nbsp;was definetly missing.&amp;nbsp; I manually added the procedure and
ran it, now the fail over between any of the servers work.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
I can only surmise that the initial virtualization did not add the procedure, because
it was not needed, all the sub systems were the same mssql.3.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
I think this may be a bug, it is very simple to fix, the difficult part is recognizing
the problem and knowing what the fix is!
&lt;/p&gt;
&lt;p&gt;
I contacted Polyserve on this, and the thinking is that this was caused by the 3.4
to 3.6 upgrade and would not happen on an instance that was "fresh" on 3.6 from day
zero, makes sense.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=8b744ada-49ec-47a5-97c1-5f5033a51930" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,8b744ada-49ec-47a5-97c1-5f5033a51930.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=43072d13-147a-4671-842e-19d282fdf936</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,43072d13-147a-4671-842e-19d282fdf936.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,43072d13-147a-4671-842e-19d282fdf936.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=43072d13-147a-4671-842e-19d282fdf936</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Received the following error on installing cumulative update 8 
<hr /><font color="#0000ff">MSI (s) (40:4C) [13:11:16:515]: Product: Microsoft SQL Server
2005 (64-bit) - Update 'Hotfix 3257 for SQL Server Database Services 2005 (64-bit)
ENU (KB951217)' could not be installed. Error code 1603. Additional information is
available in the log file C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Hotfix\SQL9_Hotfix_KB951217_sqlrun_sql.msp.log.</font><br /><hr /></p>
        <p>
        </p>
        <p>
This was on a sql server installation under polyserve, and sometimes they (the instances)
get screwed up.
</p>
        <p>
I tried to start the instance manually and it would not start (net start mssql$Instance).
</p>
        <p>
I checked the error log and found 4 entries: 
<hr /><font size="1"><font color="#0000ff">TDSSNIClient initialization failed with error
0x34, status code 0x1e.</font></font></p>
        <font size="1">
          <p>
            <font color="#0000ff">Could not start the network library because of an internal error
in the network library. To determine the cause, review the errors immediately preceding
this one in the error log.</font>
          </p>
          <font size="1">
            <p>
              <font color="#0000ff">SQL Server could not spawn FRunCM thread. Check the SQL Server
error log and the Windows event logs for information about possible related problems.</font>
              <hr />
            </p>
            <p>
              <font size="2">These errors usually indicate and issue with the virtual IP address
under the registry settings for the instance, usually one for an IP address that is
virtualized on another service, this is a legacy problem from polyserve that was corrected
with version 3.6, but if your one of the unlucky few that have this problem, you'd
better know your sql registry, or a simple call to HP support, as they know how to
figure this out pretty quickly.</font>
            </p>
            <p>
              <font size="2">After fixing the registry, the cumulative update applied succesfully.  </font>
            </p>
            <p>
              <font size="2">Always remember on polyserve that once you go into maintenance mode,
you should manually start each instance on each node, as if the instance will not
start, than more than likely your patch (service pack or cumulative update) will not
install correctly.  This doesn't mean there was a problem with the patch, as
obviously if an instance is not starting correctly, it is quite hard to patch it.</font>
            </p>
          </font>
        </font>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=43072d13-147a-4671-842e-19d282fdf936" />
      </body>
      <title>Error installing Cumulative Update 8</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,43072d13-147a-4671-842e-19d282fdf936.aspx</guid>
      <link>http://www.lifeasbob.com/2008/06/24/ErrorInstallingCumulativeUpdate8.aspx</link>
      <pubDate>Tue, 24 Jun 2008 18:31:50 GMT</pubDate>
      <description>&lt;p&gt;
Received the following error on installing cumulative update 8 
&lt;hr&gt;
&lt;font color=#0000ff&gt;MSI (s) (40:4C) [13:11:16:515]: Product: Microsoft SQL Server
2005 (64-bit) - Update 'Hotfix 3257 for SQL Server Database Services 2005 (64-bit)
ENU (KB951217)' could not be installed. Error code 1603. Additional information is
available in the log file C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Hotfix\SQL9_Hotfix_KB951217_sqlrun_sql.msp.log.&lt;/font&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
This was on a sql server installation under polyserve, and sometimes they (the instances)
get screwed up.
&lt;/p&gt;
&lt;p&gt;
I tried to start the instance manually and it would not start (net start mssql$Instance).
&lt;/p&gt;
&lt;p&gt;
I checked the error log and found 4 entries: 
&lt;hr&gt;
&lt;font size=1&gt;&lt;font color=#0000ff&gt;TDSSNIClient initialization failed with error 0x34,
status code 0x1e.&lt;/font&gt;
&lt;/p&gt;
&lt;font size=1&gt; 
&lt;p&gt;
&lt;font color=#0000ff&gt;Could not start the network library because of an internal error
in the network library. To determine the cause, review the errors immediately preceding
this one in the error log.&lt;/font&gt;
&lt;/p&gt;
&lt;font size=1&gt; 
&lt;p&gt;
&lt;font color=#0000ff&gt;SQL Server could not spawn FRunCM thread. Check the SQL Server
error log and the Windows event logs for information about possible related problems.&lt;/font&gt; 
&lt;hr&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font size=2&gt;These errors usually indicate and issue with the virtual IP address under
the registry settings for the instance, usually one for an IP address that is virtualized
on another service, this is a legacy problem from polyserve that was corrected with
version 3.6, but if your one of the unlucky few that have this problem, you'd better
know your sql registry, or a simple call to HP support, as they know how to figure
this out pretty quickly.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font size=2&gt;After fixing the registry, the cumulative update applied succesfully.&amp;nbsp; &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font size=2&gt;Always remember on polyserve that once you go into maintenance mode,
you should manually start each instance on each node, as if the instance will not
start, than more than likely your patch (service pack or cumulative update) will not
install correctly.&amp;nbsp; This doesn't mean there was a problem with the patch, as
obviously if an instance is not starting correctly, it is quite hard to patch it.&lt;/font&gt;
&lt;/p&gt;
&lt;/font&gt;&lt;/font&gt;&gt;&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=43072d13-147a-4671-842e-19d282fdf936" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,43072d13-147a-4671-842e-19d282fdf936.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=a67f18ff-cf41-49ea-9d29-f2060602928d</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,a67f18ff-cf41-49ea-9d29-f2060602928d.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,a67f18ff-cf41-49ea-9d29-f2060602928d.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=a67f18ff-cf41-49ea-9d29-f2060602928d</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Team working an issue with an SSIS package failing on a new installation of SQL Server.
</p>
        <p>
Not sure why, but  basically we had an existing instance on a server.  We
had capacity to install a second instance on the server.  We installed and prepared
the new instance, all works great.
</p>
        <p>
We have an administrative DTS Package that pumps data to an excel spreadsheet and
emails the data.
</p>
        <p>
Could not get the package to run, received the below error.  Note the error in
green, this option is set to false, we tried all kinds of items to change it with
no luck.
</p>
        <blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
          <p>
            <hr />
Message<br />
Executed as user: VSQLCRM\SYSTEM. ...ute Package Utility  Version 9.00.3042.00
for 32-bit  Copyright (C) Microsoft Corp 1984-2005. All rights reserved.    Started: 
10:27:21 AM  Error: 2008-05-13 10:28:52.79     Code: 0xC0014019    
Source: Tracing_SSIS      <font color="#006400"><strong>Description:
The connection manager "DestinationConnectionExcel" will not acquire a connection
because the package OfflineMode property is TRUE. When the OfflineMode is TRUE, connections
cannot be acquired.</strong></font>  End Error  Error: 2008-05-13 10:28:52.79    
Code: 0xC00291EC     Source: Drop Baseline Tab Execute SQL Task    
Description: Failed to acquire connection "DestinationConnectionExcel". Connection
may not be configured correctly or you may not have the right permissions on this
connection.  End Error  Warning: 2008-05-13 10:28:52.79    
Code: 0x80019002     Source: Populate Baseline Tab     
Description: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED.  The Execution
method succeeded, but the number of e...  Process Exit Code 0.  The step
succeeded.<br /><hr /></p>
        </blockquote>
        <p>
Only solution was to uninstall Client components and re-install them.
</p>
        <p>
Not sure why this works, but somehow the installation of the 2nd instance, and applying
the associated service pack 2 and CU 6 caused this.  It's also possible that
the automated push install from Polyserve somehow causes this, though all the Polyserve
push is an un-intattended install setup script, so the bug would be with that utility
that is run through Polyserve.
</p>
        <p>
Lost 4+ hours worth of work chasing this bug down.
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=a67f18ff-cf41-49ea-9d29-f2060602928d" />
      </body>
      <title>SSIS "Reindeer" games</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,a67f18ff-cf41-49ea-9d29-f2060602928d.aspx</guid>
      <link>http://www.lifeasbob.com/2008/05/13/SSISReindeerGames.aspx</link>
      <pubDate>Tue, 13 May 2008 20:42:03 GMT</pubDate>
      <description>&lt;p&gt;
Team working an issue with an SSIS package failing on a new installation of SQL Server.
&lt;/p&gt;
&lt;p&gt;
Not sure why, but&amp;nbsp; basically we had an existing instance on a server.&amp;nbsp; We
had capacity to install a second instance on the server.&amp;nbsp; We installed and prepared
the new instance, all works great.
&lt;/p&gt;
&lt;p&gt;
We have an administrative DTS Package that pumps data to an excel spreadsheet and
emails the data.
&lt;/p&gt;
&lt;p&gt;
Could not get the package to run, received the below error.&amp;nbsp; Note the error in
green, this option is set to false, we tried all kinds of items to change it with
no luck.
&lt;/p&gt;
&lt;blockquote dir=ltr style="MARGIN-RIGHT: 0px"&gt; 
&lt;p&gt;
&lt;hr&gt;
Message&lt;br&gt;
Executed as user: VSQLCRM\SYSTEM. ...ute Package Utility&amp;nbsp; Version 9.00.3042.00
for 32-bit&amp;nbsp; Copyright (C) Microsoft Corp 1984-2005. All rights reserved.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Started:&amp;nbsp;
10:27:21 AM&amp;nbsp; Error: 2008-05-13 10:28:52.79&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Code: 0xC0014019&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Source: Tracing_SSIS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;font color=#006400&gt;&lt;strong&gt;Description:
The connection manager "DestinationConnectionExcel" will not acquire a connection
because the package OfflineMode property is TRUE. When the OfflineMode is TRUE, connections
cannot be acquired.&lt;/strong&gt;&lt;/font&gt;&amp;nbsp; End Error&amp;nbsp; Error: 2008-05-13 10:28:52.79&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Code: 0xC00291EC&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Source: Drop Baseline Tab Execute SQL Task&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Description: Failed to acquire connection "DestinationConnectionExcel". Connection
may not be configured correctly or you may not have the right permissions on this
connection.&amp;nbsp; End Error&amp;nbsp; Warning: 2008-05-13 10:28:52.79&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Code: 0x80019002&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Source: Populate Baseline Tab&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Description: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED.&amp;nbsp; The Execution
method succeeded, but the number of e...&amp;nbsp; Process Exit Code 0.&amp;nbsp; The step
succeeded.&lt;br&gt;
&lt;hr&gt;
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
Only solution was to uninstall Client components and re-install them.
&lt;/p&gt;
&lt;p&gt;
Not sure why this works, but somehow the installation of the 2nd instance, and applying
the associated service pack 2 and CU 6 caused this.&amp;nbsp; It's also possible that
the automated push install from Polyserve somehow causes this, though all the Polyserve
push is an un-intattended install setup script, so the bug would be with that utility
that is run through&amp;nbsp;Polyserve.
&lt;/p&gt;
&lt;p&gt;
Lost 4+ hours worth of work chasing this bug down.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=a67f18ff-cf41-49ea-9d29-f2060602928d" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,a67f18ff-cf41-49ea-9d29-f2060602928d.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server / SSIS</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=81e7f03d-2a0b-40bc-8ada-b1a8ce106b08</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,81e7f03d-2a0b-40bc-8ada-b1a8ce106b08.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,81e7f03d-2a0b-40bc-8ada-b1a8ce106b08.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=81e7f03d-2a0b-40bc-8ada-b1a8ce106b08</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Upgraded the Cluster to version 3.6 from 3.4, and we lost all network shares on a
volume.
</p>
        <p>
These were not shares through the "Polyserve file sharing" components, but standard
NT / Windows shares on a Polyserve volume.  [ We do not have the file sharing
components, only the database ].
</p>
        <p>
Since there were only 3 shares it was not worth creating a ticket, as investigating
root cause on this one-time event (the upgrade) is too much effort.  We just
recreated the UNC shares.
</p>
        <p>
I did send a note to the Polyserve HP Support, so they could forward to the engineering
team.
</p>
        <p>
          <font color="#000080">Note:  These shares were lost before the upgrade of the
dynamic volumes from 3.4 to 3.6, as obviously when you destroy a 3.4 volume and rebuild
it as 3.6 you will loose UNC (non polyserve shares).</font>
        </p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=81e7f03d-2a0b-40bc-8ada-b1a8ce106b08" />
      </body>
      <title>3.6 Upgrade loses network shares.</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,81e7f03d-2a0b-40bc-8ada-b1a8ce106b08.aspx</guid>
      <link>http://www.lifeasbob.com/2008/04/24/36UpgradeLosesNetworkShares.aspx</link>
      <pubDate>Thu, 24 Apr 2008 15:12:34 GMT</pubDate>
      <description>&lt;p&gt;
Upgraded the Cluster to version 3.6 from 3.4, and we lost all network shares on a
volume.
&lt;/p&gt;
&lt;p&gt;
These were not shares through the "Polyserve file sharing" components, but standard
NT / Windows shares on a Polyserve volume.&amp;nbsp; [ We do not have the file sharing
components, only the database ].
&lt;/p&gt;
&lt;p&gt;
Since there were only 3 shares it was not worth creating a ticket, as investigating
root cause on this one-time event (the upgrade) is too much effort.&amp;nbsp; We just
recreated the UNC shares.
&lt;/p&gt;
&lt;p&gt;
I did send a note to the Polyserve HP Support, so they could forward to the engineering
team.
&lt;/p&gt;
&lt;p&gt;
&lt;font color=#000080&gt;Note:&amp;nbsp; These shares were lost before the upgrade of the dynamic
volumes from 3.4 to 3.6, as obviously when you destroy a 3.4 volume and rebuild it
as 3.6 you will loose UNC (non polyserve shares).&lt;/font&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=81e7f03d-2a0b-40bc-8ada-b1a8ce106b08" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,81e7f03d-2a0b-40bc-8ada-b1a8ce106b08.aspx</comments>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=9f707941-ffff-435f-ab3a-e629dbf8e99b</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,9f707941-ffff-435f-ab3a-e629dbf8e99b.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,9f707941-ffff-435f-ab3a-e629dbf8e99b.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=9f707941-ffff-435f-ab3a-e629dbf8e99b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
After upgrading to Polyserve version 3.6, and adding a new server to the cluster that
does not have any sql server instances hosted on it, an error is received when rehosting
or accessing properties.
</p>
        <p>
The error is:  "Failed to get the matrix topology."  Picture below.
</p>
        <p>
The response from HP Polyserve support is that this is a bug in 3.6, mxDB.  Work
around is two uninstall the mxDB module from the server, or setup a sql instance on
the server.  
</p>
        <p>
This is not a large issue as the goal of the new server is to host a database on it,
so once we setup a sql instance on the machine the error will go away.  A hotfix
is in the works for the issue.
</p>
        <p>
The error was concerning because we were not sure if we configured the new server
properly, as before we added the new server to the cluster, things worked properly.
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/rehost_error.JPG" border="0" />
        </p>
        <p>
Reply from HP Support:
</p>
        <p>
          <font face="Tahoma">
            <strong>From:</strong> Mokhtari, Mostafa [mailto:Mostafa.Mokhtari@hp.com] 
<br /><b>Sent:</b> Wednesday, April 23, 2008 11:30 AM<br /><b>To:</b> Horkay, Robert<br /><b>Subject:</b> #3601723537<br /><br /></font>
          <font face="Arial, sans-serif" size="2">Hi Robert,
</font>
        </p>
        <div>What you are experiencing with re-hosting is a bug with MxDB and the fix is going
to be in the next version.
</div>
        <div>Problem is not with the NIC.
</div>
        <div>The issue occurs when mxdb is installed on a node that does not have any instances
installed. So once the instances are on the new node it should go away
</div>
        <div>
          <font face="Times New Roman, serif" size="3">
          </font> 
</div>
        <div>Two workaround
</div>
        <div>Uninstall MxDB from the node or install the instance on it.
</div>
        <div> 
</div>
        <div>Let me know if you have any question,
</div>
        <div> 
</div>
        <div>Regards,
</div>
        <div>
          <font face="Times New Roman, serif" size="3">Mostafa Mokhtari</font>
        </div>
        <div>
          <font face="Times New Roman, serif" size="3">HEWLETT-PACKARD COMPANY</font>
        </div>
        <div>
          <font face="Times New Roman, serif" size="3">High Availability Team</font>
        </div>
        <div>
          <font face="Times New Roman, serif" size="3">Monday-Friday 8-4pm PST</font>
        </div>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=9f707941-ffff-435f-ab3a-e629dbf8e99b" />
      </body>
      <title>Rehost / Properties error in 3.6</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,9f707941-ffff-435f-ab3a-e629dbf8e99b.aspx</guid>
      <link>http://www.lifeasbob.com/2008/04/23/RehostPropertiesErrorIn36.aspx</link>
      <pubDate>Wed, 23 Apr 2008 15:06:17 GMT</pubDate>
      <description>&lt;p&gt;
After upgrading to Polyserve version 3.6, and adding a new server to the cluster that
does not have any sql server instances hosted on it, an error is received when rehosting
or accessing properties.
&lt;/p&gt;
&lt;p&gt;
The error is:&amp;nbsp; "Failed to get the matrix topology."&amp;nbsp; Picture below.
&lt;/p&gt;
&lt;p&gt;
The response from HP Polyserve support is that this is a bug in 3.6, mxDB.&amp;nbsp; Work
around is two uninstall the mxDB module from the server, or setup a sql instance on
the server.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
This is not a large issue as the goal of the new server is to host a database on it,
so once we setup a sql instance on the machine the error will go away.&amp;nbsp; A hotfix
is in the works for the issue.
&lt;/p&gt;
&lt;p&gt;
The error was concerning because we were not sure if we configured the new server
properly, as before we added the new server to the cluster, things worked properly.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/rehost_error.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Reply from HP Support:
&lt;/p&gt;
&lt;p&gt;
&lt;font face=Tahoma&gt;&lt;strong&gt;From:&lt;/strong&gt; Mokhtari, Mostafa [mailto:Mostafa.Mokhtari@hp.com] 
&lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Wednesday, April 23, 2008 11:30 AM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; Horkay, Robert&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; #3601723537&lt;br&gt;
&lt;br&gt;
&lt;/font&gt;&lt;font face="Arial, sans-serif" size=2&gt;Hi Robert,
&lt;/p&gt;
&lt;div&gt;What you are experiencing with re-hosting is a bug with MxDB and the fix is going
to be in the next version.
&lt;/div&gt;
&lt;div&gt;Problem is not with the NIC.
&lt;/div&gt;
&lt;div&gt;The issue occurs when mxdb is installed on a node that does not have any instances
installed. So once the instances are on the new node it should go away
&lt;/div&gt;
&lt;div&gt;&lt;font face="Times New Roman, serif" size=3&gt;&lt;/font&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;Two workaround
&lt;/div&gt;
&lt;div&gt;Uninstall MxDB from the node or install the instance on it.
&lt;/div&gt;
&lt;div&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;Let me know if you have any question,
&lt;/div&gt;
&lt;div&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;Regards,
&lt;/div&gt;
&lt;div&gt;&lt;font face="Times New Roman, serif" size=3&gt;Mostafa Mokhtari&lt;/font&gt;
&lt;/div&gt;
&lt;div&gt;&lt;font face="Times New Roman, serif" size=3&gt;HEWLETT-PACKARD COMPANY&lt;/font&gt;
&lt;/div&gt;
&lt;div&gt;&lt;font face="Times New Roman, serif" size=3&gt;High Availability Team&lt;/font&gt;
&lt;/div&gt;
&lt;div&gt;&lt;font face="Times New Roman, serif" size=3&gt;Monday-Friday 8-4pm PST&lt;/font&gt;
&lt;/div&gt;
&gt;&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=9f707941-ffff-435f-ab3a-e629dbf8e99b" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,9f707941-ffff-435f-ab3a-e629dbf8e99b.aspx</comments>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=71ee04bc-41a1-417a-b401-2809be49c69d</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,71ee04bc-41a1-417a-b401-2809be49c69d.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,71ee04bc-41a1-417a-b401-2809be49c69d.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=71ee04bc-41a1-417a-b401-2809be49c69d</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've seen two isolated incidents on SQL Server 2005 where restoring from a SQL
Lite Speed backup where the MDF, NDF and LDF file permissions were changed to the
user who performed the restore.  
</p>
        <p>
Everthing works fine, but then in the future we decided to move these files, but to
our surprise were were unable to move them, giving us an error that the files were
in use, read-only or did not have permissions.  We spent considerable time looking
for what process had the files in use (Virus Scan, netbackup, SQL ? (process and file
explorer from sysinternals), and finally read the error again and decided, maybe the
files are read-only !  In the process of checking this, we clicked on the security
tab, and the individual who performed the restore was the only account with permissions
to the files !
</p>
        <p>
We changed the permissions and copied them fine.
</p>
        <p>
I don't know if this was caused by Polyserve, Lite-Speed or SQL Server; but definetly
caused us some frustration, very strange indeed !
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=71ee04bc-41a1-417a-b401-2809be49c69d" />
      </body>
      <title>SQL Server Restore changes data file NT Permissions</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,71ee04bc-41a1-417a-b401-2809be49c69d.aspx</guid>
      <link>http://www.lifeasbob.com/2008/04/22/SQLServerRestoreChangesDataFileNTPermissions.aspx</link>
      <pubDate>Tue, 22 Apr 2008 19:47:24 GMT</pubDate>
      <description>&lt;p&gt;
I've seen two isolated incidents on SQL Server 2005&amp;nbsp;where restoring from a SQL
Lite Speed backup where the MDF, NDF and LDF file permissions were changed to the
user who performed the restore.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Everthing works fine, but then in the future we decided to move these files, but to
our surprise were were unable to move them, giving us an error that the files were
in use, read-only or did not have permissions.&amp;nbsp; We spent considerable time looking
for what process had the files in use (Virus Scan, netbackup, SQL ? (process and file
explorer from sysinternals), and finally read the error again and decided, maybe the
files are read-only !&amp;nbsp; In the process of checking this, we clicked on the security
tab, and the individual who performed the restore was the only account with permissions
to the files !
&lt;/p&gt;
&lt;p&gt;
We changed the permissions and copied them fine.
&lt;/p&gt;
&lt;p&gt;
I don't know if this was caused by Polyserve, Lite-Speed or SQL Server; but definetly
caused us some frustration, very strange indeed !
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=71ee04bc-41a1-417a-b401-2809be49c69d" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,71ee04bc-41a1-417a-b401-2809be49c69d.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=ea91e735-4766-4a23-9d1f-eab256ba6333</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,ea91e735-4766-4a23-9d1f-eab256ba6333.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,ea91e735-4766-4a23-9d1f-eab256ba6333.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=ea91e735-4766-4a23-9d1f-eab256ba6333</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
While Upgrading Polyserve 3.4 to 3.6, performing a rolling upgrade, on the first server,
after starting the services, while performing the license file upgrade, the following
error is thrown <strong>across all Other servers in the cluster</strong>, and they
shutdown !  
</p>
        <p>
So far we are turning off Data Execution Prevention (DEP), for ClusterPulse.exe.  
</p>
        <p>
          <font color="#ff0000">
            <strong>UPDATE:  Turns out the root cause we started the
3.6 upgrade with the wrong server, you must start with the highest IP Address, we
started with the lowest.</strong>
          </font>
        </p>
        <p>
To disable DEP for a program or server wide perform the following:
</p>
        <ul>
          <li>
Right click on <strong>My Computer</strong></li>
          <li>
Click on <strong>Properties</strong></li>
          <li>
Click on the <strong>Advanced</strong> tab 
</li>
          <li>
Click on the <strong>Settings</strong> button in the <strong>Performance</strong> section 
</li>
          <li>
Click on the <strong>Data Execution Prevention</strong> tab</li>
        </ul>
        <p>
Screen Captures of the Error Message:
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/polyserve_DEP_1.JPG" border="0" />
        </p>
        <p>
Screen Captures of the solution:
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/polyserve_DEP_2.JPG" border="0" />
        </p>
        <p>
Screen Captures of Turning it off:
</p>
        <p>
 
</p>
        <img src="http://www.lifeasbob.com/content/binary/polyserve_DEP_3.JPG" border="0" />
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=ea91e735-4766-4a23-9d1f-eab256ba6333" />
      </body>
      <title>Data Execution Prevention (DEP) ClusterPulse.exe Polyserve</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,ea91e735-4766-4a23-9d1f-eab256ba6333.aspx</guid>
      <link>http://www.lifeasbob.com/2008/04/21/DataExecutionPreventionDEPClusterPulseexePolyserve.aspx</link>
      <pubDate>Mon, 21 Apr 2008 22:00:49 GMT</pubDate>
      <description>&lt;p&gt;
While Upgrading Polyserve 3.4 to 3.6, performing a rolling upgrade, on the first server,
after starting the services, while performing the license file upgrade, the following
error is thrown &lt;strong&gt;across all Other servers in the cluster&lt;/strong&gt;, and they
shutdown !&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
So far we are turning off Data Execution Prevention (DEP), for ClusterPulse.exe.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
&lt;font color=#ff0000&gt;&lt;strong&gt;UPDATE:&amp;nbsp; Turns out the root cause we started the
3.6 upgrade with the wrong server, you must start with the highest IP Address, we
started with the lowest.&lt;/strong&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
To disable DEP for a program or server wide perform the following:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
Right click on &lt;strong&gt;My Computer&lt;/strong&gt; 
&lt;li&gt;
Click on &lt;strong&gt;Properties&lt;/strong&gt; 
&lt;li&gt;
Click on the &lt;strong&gt;Advanced&lt;/strong&gt; tab 
&lt;li&gt;
Click on the &lt;strong&gt;Settings&lt;/strong&gt; button in the &lt;strong&gt;Performance&lt;/strong&gt; section 
&lt;li&gt;
Click on the &lt;strong&gt;Data Execution Prevention&lt;/strong&gt; tab&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Screen Captures of the Error Message:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/polyserve_DEP_1.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Screen Captures of the solution:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/polyserve_DEP_2.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Screen Captures of Turning it off:
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/polyserve_DEP_3.JPG" border=0&gt;&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=ea91e735-4766-4a23-9d1f-eab256ba6333" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,ea91e735-4766-4a23-9d1f-eab256ba6333.aspx</comments>
      <category>General Technology</category>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=ae8ff682-de43-4787-99de-384e50e816c9</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,ae8ff682-de43-4787-99de-384e50e816c9.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,ae8ff682-de43-4787-99de-384e50e816c9.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=ae8ff682-de43-4787-99de-384e50e816c9</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
We've found issues with servers having the IRPStackSize too small, causing numerous
entries in the eventlog and shares that do not work.  We also have noticed a
correlation between crashes and the entries for IRPStackSize.
</p>
        <p>
Increase this value in the registry by performing the following:
</p>
        <p>
  1. Start the registry editor<br />
  2. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services 
<br />
\lanmanserver\parameters.<br />
  3. Double-click IRPStackSize (or if this registry setting doesn't exist, 
<br />
create it of type DWORD and ensure the case is correct).<br />
  4. Change the base to decimal, set the value to 15 and click OK.  If a 
<br />
value is already present, add 3 to that number, and set it to the new 
<br />
number.<br />
  5. Reboot the server<br /></p>
        <p>
 
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=ae8ff682-de43-4787-99de-384e50e816c9" />
      </body>
      <title>IRPStackSize too small ?</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,ae8ff682-de43-4787-99de-384e50e816c9.aspx</guid>
      <link>http://www.lifeasbob.com/2008/04/14/IRPStackSizeTooSmall.aspx</link>
      <pubDate>Mon, 14 Apr 2008 18:06:17 GMT</pubDate>
      <description>&lt;p&gt;
We've found issues with servers having the IRPStackSize too small, causing numerous
entries in the eventlog and shares that do not work.&amp;nbsp; We also have noticed a
correlation between crashes and the entries for IRPStackSize.
&lt;/p&gt;
&lt;p&gt;
Increase this value in the registry by performing the following:
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp; 1. Start the registry editor&lt;br&gt;
&amp;nbsp; 2. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services 
&lt;br&gt;
\lanmanserver\parameters.&lt;br&gt;
&amp;nbsp; 3. Double-click IRPStackSize (or if this registry setting doesn't exist, 
&lt;br&gt;
create it of type DWORD and ensure the case is correct).&lt;br&gt;
&amp;nbsp; 4. Change the base to decimal, set the value to 15 and click OK.&amp;nbsp; If a 
&lt;br&gt;
value is already present, add 3 to that number, and set it to the new 
&lt;br&gt;
number.&lt;br&gt;
&amp;nbsp; 5. Reboot the server&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=ae8ff682-de43-4787-99de-384e50e816c9" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,ae8ff682-de43-4787-99de-384e50e816c9.aspx</comments>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=2a0aa928-0909-4591-8167-0331f30bf162</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,2a0aa928-0909-4591-8167-0331f30bf162.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,2a0aa928-0909-4591-8167-0331f30bf162.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=2a0aa928-0909-4591-8167-0331f30bf162</wfw:commentRss>
      <title>Delete of Instance Fails</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,2a0aa928-0909-4591-8167-0331f30bf162.aspx</guid>
      <link>http://www.lifeasbob.com/2008/04/04/DeleteOfInstanceFails.aspx</link>
      <pubDate>Fri, 04 Apr 2008 15:50:48 GMT</pubDate>
      <description>&lt;p&gt;
Trying to delete a SQL Instance from polyserve, 3.6 fails with an internal error.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/poly_delete.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Detail description is:
&lt;/p&gt;
&lt;p&gt;
java.lang.IllegalArgumentException: No value found for sqldataroot&lt;br&gt;
&amp;nbsp;at com.polyserve.mssql.common.domain.SpackDAO.getParamaterValue(SpackDAO.java:142)&lt;br&gt;
&amp;nbsp;at com.polyserve.mssql.common.tasks.TaskFactory.removeService(TaskFactory.java:483)&lt;br&gt;
&amp;nbsp;at com.polyserve.mssql.common.gui.SpackServicePM.doDelete(SpackServicePM.java:320)&lt;br&gt;
&amp;nbsp;at com.polyserve.mssql.common.gui.SpackServiceEditor.showDeleteProgress(SpackServiceEditor.java:98)&lt;br&gt;
&amp;nbsp;at com.polyserve.gui.controller.MonitorController$DeleteMonitorAction.actionPerformed(MonitorController.java:110)&lt;br&gt;
&amp;nbsp;at com.polyserve.mssql.common.gui.SpackServiceController$DeleteAction.actionPerformed(SpackServiceController.java:139)&lt;br&gt;
&amp;nbsp;at com.polyserve.gui.controller.AbstractController$ProxyVisualAction.actionPerformed(AbstractController.java:198)&lt;br&gt;
&amp;nbsp;at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)&lt;br&gt;
&amp;nbsp;at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)&lt;br&gt;
&amp;nbsp;at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)&lt;br&gt;
&amp;nbsp;at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)&lt;br&gt;
&amp;nbsp;at javax.swing.AbstractButton.doClick(AbstractButton.java:357)&lt;br&gt;
&amp;nbsp;at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1216)&lt;br&gt;
&amp;nbsp;at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1257)&lt;br&gt;
&amp;nbsp;at java.awt.Component.processMouseEvent(Component.java:6038)&lt;br&gt;
&amp;nbsp;at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)&lt;br&gt;
&amp;nbsp;at java.awt.Component.processEvent(Component.java:5803)&lt;br&gt;
&amp;nbsp;at java.awt.Container.processEvent(Container.java:2058)&lt;br&gt;
&amp;nbsp;at java.awt.Component.dispatchEventImpl(Component.java:4410)&lt;br&gt;
&amp;nbsp;at java.awt.Container.dispatchEventImpl(Container.java:2116)&lt;br&gt;
&amp;nbsp;at java.awt.Component.dispatchEvent(Component.java:4240)&lt;br&gt;
&amp;nbsp;at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)&lt;br&gt;
&amp;nbsp;at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)&lt;br&gt;
&amp;nbsp;at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)&lt;br&gt;
&amp;nbsp;at java.awt.Container.dispatchEventImpl(Container.java:2102)&lt;br&gt;
&amp;nbsp;at java.awt.Window.dispatchEventImpl(Window.java:2429)&lt;br&gt;
&amp;nbsp;at java.awt.Component.dispatchEvent(Component.java:4240)&lt;br&gt;
&amp;nbsp;at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)&lt;br&gt;
&amp;nbsp;at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)&lt;br&gt;
&amp;nbsp;at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)&lt;br&gt;
&amp;nbsp;at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)&lt;br&gt;
&amp;nbsp;at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)&lt;br&gt;
&amp;nbsp;at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)&lt;br&gt;
&amp;nbsp;at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;
Solution provided by technincal support below&amp;nbsp;(it worked)...
&lt;/p&gt;
&lt;p&gt;
&lt;hr&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;div&gt;&lt;font face="Arial, sans-serif" size=3&gt;&lt;b&gt;No value found for sqldataroot (3.4
upgrade to 3.6)&lt;/b&gt;&lt;/font&gt;
&lt;/div&gt;
&lt;div&gt;&lt;font face="Arial, sans-serif" size=2&gt;This error indicates that monitor_agent
is still using 3.4 parameters, and therefore needs to be updated using one or both
of these methods:&lt;/font&gt;
&lt;/div&gt;
&lt;div&gt;&lt;font face="Arial, sans-serif" size=2&gt;&lt;/font&gt;&amp;nbsp;
&lt;/div&gt;
&lt;ul style="MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 36pt"&gt;
&lt;font face="Arial, sans-serif" size=2&gt; 
&lt;li&gt;
Update the probe parameter by right-clicking on the instance, selecting properties,
modify the probe timeout by 1 and hit OK. 
&lt;li&gt;
Kill monitor_agent by opening task manager, selecting the processes tab, find monitor_agent.exe
and kill the process.&amp;nbsp; It will automatically restart.
&lt;/font&gt;&lt;font face="Times New Roman" size=3&gt; &lt;/font&gt;&gt;
&lt;/ul&gt;
&lt;p&gt;
&lt;font face="Times New Roman" size=3&gt;--------------------------------------------------------------------------&lt;/font&gt;
&lt;/p&gt;
&lt;div class=OutlookMessageHeader lang=en-us dir=ltr align=left&gt;
&lt;hr tabindex=-1&gt;
&lt;font face=Tahoma size=2&gt;&lt;b&gt;From:&lt;/b&gt; Mokhtari, Mostafa [mailto:Mostafa.Mokhtari@hp.com] 
&lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Friday, April 04, 2008 11:29 AM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; Horkay, Robert&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; RE: #3601519915&lt;br&gt;
&lt;/font&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;div class=Section1&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=blue size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;You
would want to do this on any instance that's having the problem.&amp;nbsp; If changing
the instance properties doesn't update the monitor and you decide to kill monitor
agent, then killing monitor agent would only need to be performed once per node.&lt;/span&gt;&lt;/font&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=navy size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial"&gt;
&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=navy size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial"&gt;Regards,&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;Mostafa Mokhtari&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;HEWLETT-PACKARD
COMPANY&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;High Availability
Team&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;(719) 592-6700 ext.
65209&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;Monday-Friday 8-4pm
PST&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=navy size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial"&gt;
&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;div&gt;
&lt;div class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt; 
&lt;hr tabindex=-1 align=center width="100%" size=2&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/div&gt;
&lt;p class=MsoNormal&gt;
&lt;b&gt;&lt;font face=Tahoma size=2&gt;&lt;span style="FONT-WEIGHT: bold; FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;From:&lt;/span&gt;&lt;/font&gt;&lt;/b&gt;&lt;font face=Tahoma size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt; Horkay,
Robert [mailto:RHorkay@....com] 
&lt;br&gt;
&lt;b&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Sent:&lt;/span&gt;&lt;/b&gt; Friday, April 04, 2008 9:19 AM&lt;br&gt;
&lt;b&gt;&lt;span style="FONT-WEIGHT: bold"&gt;To:&lt;/span&gt;&lt;/b&gt; Horkay, Robert; Mokhtari, Mostafa&lt;br&gt;
&lt;b&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Subject:&lt;/span&gt;&lt;/b&gt; RE: #3601519915&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;
&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=blue size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;Ok,&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=blue size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;That
worked !&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=blue size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;Do
we need to do this for every instance ?&amp;nbsp; or would it happen automatically as
a box was restarted (as that would cause the monitor_agent to restart)....as we have
yet to reboot every box after the 3.6 upgrade...&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=blue size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;bob&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;
&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;div class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt; 
&lt;hr tabindex=-1 align=center width="100%" size=2&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/div&gt;
&lt;p class=MsoNormal style="MARGIN-BOTTOM: 12pt"&gt;
&lt;b&gt;&lt;font face=Tahoma size=2&gt;&lt;span style="FONT-WEIGHT: bold; FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;From:&lt;/span&gt;&lt;/font&gt;&lt;/b&gt;&lt;font face=Tahoma size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt; Horkay,
Robert 
&lt;br&gt;
&lt;b&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Sent:&lt;/span&gt;&lt;/b&gt; Friday, April 04, 2008 11:13 AM&lt;br&gt;
&lt;b&gt;&lt;span style="FONT-WEIGHT: bold"&gt;To:&lt;/span&gt;&lt;/b&gt; 'Mokhtari, Mostafa'&lt;br&gt;
&lt;b&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Subject:&lt;/span&gt;&lt;/b&gt; RE: #3601519915&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=blue size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;Yes
that is correct.&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=blue size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;I
will try that.&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=blue size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;On
a side note, no where in the documentaiton on 3.4 to 3.6 upgrade did it mention doing
this...?&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=blue size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;let
me see if it works...&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=blue size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;bob&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;
&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;div class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt; 
&lt;hr tabindex=-1 align=center width="100%" size=2&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/div&gt;
&lt;p class=MsoNormal style="MARGIN-BOTTOM: 12pt"&gt;
&lt;b&gt;&lt;font face=Tahoma size=2&gt;&lt;span style="FONT-WEIGHT: bold; FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;From:&lt;/span&gt;&lt;/font&gt;&lt;/b&gt;&lt;font face=Tahoma size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt; Mokhtari,
Mostafa [mailto:Mostafa.Mokhtari@hp.com] 
&lt;br&gt;
&lt;b&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Sent:&lt;/span&gt;&lt;/b&gt; Friday, April 04, 2008 11:11 AM&lt;br&gt;
&lt;b&gt;&lt;span style="FONT-WEIGHT: bold"&gt;To:&lt;/span&gt;&lt;/b&gt; Horkay, Robert&lt;br&gt;
&lt;b&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Subject:&lt;/span&gt;&lt;/b&gt; RE: #3601519915&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=blue size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;Was
this an upgrade from 3.4?&amp;nbsp; If so,&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;b&gt;&lt;font face=Arial size=3&gt;&lt;span style="FONT-WEIGHT: bold; FONT-SIZE: 12pt; FONT-FAMILY: Arial"&gt;No
value found for sqldataroot (3.4 upgrade to 3.6)&lt;/span&gt;&lt;/font&gt;&lt;/b&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;This error
indicates that monitor_agent is still using 3.4 parameters, and therefore needs to
be updated using one or both of these methods:&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;ul type=disc&gt;
&lt;li class=MsoNormal style="mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1"&gt;
&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Update the
probe parameter by right-clicking on the instance, selecting properties, modify the
probe timeout by 1 and hit OK. 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt; 
&lt;li class=MsoNormal style="mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1"&gt;
&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Kill monitor_agent
by opening task manager, selecting the processes tab, find monitor_agent.exe and kill
the process.&amp;nbsp; It will automatically restart.&lt;/span&gt;&lt;/font&gt; 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=blue size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;Regards,&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;Mostafa Mokhtari&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;HEWLETT-PACKARD
COMPANY&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;High Availability
Team&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;(719) 592-6700 ext.
65209&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;Monday-Friday 8-4pm
PST&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial color=blue size=2&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;.&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Tahoma size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;_____________________________________________&lt;br&gt;
&lt;b&gt;&lt;span style="FONT-WEIGHT: bold"&gt;From:&lt;/span&gt;&lt;/b&gt; Mokhtari, Mostafa 
&lt;br&gt;
&lt;b&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Sent:&lt;/span&gt;&lt;/b&gt; Friday, April 04, 2008 8:57 AM&lt;br&gt;
&lt;b&gt;&lt;span style="FONT-WEIGHT: bold"&gt;To:&lt;/span&gt;&lt;/b&gt; 'Horkay, Robert'&lt;br&gt;
&lt;b&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Subject:&lt;/span&gt;&lt;/b&gt; #3601519915&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Hi Robert,&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;I just picked
up your case. Is this x64 OS or x86? What is the version of your SQL?&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face=Arial size=2&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Thanks,&lt;/span&gt;&lt;/font&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;Mostafa Mokhtari&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;HEWLETT-PACKARD
COMPANY&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;High Availability
Team&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;(719) 592-6700 ext.
65209&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;Monday-Friday 8-4pm
PST&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p class=MsoNormal&gt;
&lt;font face="Times New Roman" size=3&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=2a0aa928-0909-4591-8167-0331f30bf162" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,2a0aa928-0909-4591-8167-0331f30bf162.aspx</comments>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=064094d1-d8e0-4ed6-a755-5779e963fe3b</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,064094d1-d8e0-4ed6-a755-5779e963fe3b.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,064094d1-d8e0-4ed6-a755-5779e963fe3b.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=064094d1-d8e0-4ed6-a755-5779e963fe3b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Polyserve upgrade to 3.6 for our development environment is completed.
</p>
        <p>
The directions are pretty clear, but could use some help.
</p>
        <p>
We performed a rolling upgrade.  Nothing major found.
</p>
        <p>
The most difficult part is the completion steps of growing the membership partitions
and rebuilding volumes to be a 3.6 file system....this requires some "swing" luns
from the SAN so data can be moved around.
</p>
        <p>
 
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=064094d1-d8e0-4ed6-a755-5779e963fe3b" />
      </body>
      <title>Polyserve 3.6 Upgrade</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,064094d1-d8e0-4ed6-a755-5779e963fe3b.aspx</guid>
      <link>http://www.lifeasbob.com/2008/04/02/Polyserve36Upgrade.aspx</link>
      <pubDate>Wed, 02 Apr 2008 15:45:10 GMT</pubDate>
      <description>&lt;p&gt;
Polyserve upgrade to 3.6 for our development environment is completed.
&lt;/p&gt;
&lt;p&gt;
The directions are pretty clear, but could use some help.
&lt;/p&gt;
&lt;p&gt;
We performed a rolling upgrade.&amp;nbsp; Nothing major found.
&lt;/p&gt;
&lt;p&gt;
The most difficult part is the completion steps of growing the membership partitions
and rebuilding volumes to be a 3.6 file system....this requires some "swing" luns
from the SAN so data can be moved around.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=064094d1-d8e0-4ed6-a755-5779e963fe3b" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,064094d1-d8e0-4ed6-a755-5779e963fe3b.aspx</comments>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=36276b56-8f27-4bdf-85ff-0f9f025e2838</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,36276b56-8f27-4bdf-85ff-0f9f025e2838.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,36276b56-8f27-4bdf-85ff-0f9f025e2838.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=36276b56-8f27-4bdf-85ff-0f9f025e2838</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Don't ask me why, but the Mount Point failed unmounting via gui.
</p>
        <p>
No error, no message, but the mount point still shows in explorer.  Reboot, still
shows in explorer.
</p>
        <p>
Drop to the command line and run
</p>
        <p>
MountVol
</p>
        <p>
MountVol d:\crm /D
</p>
        <p>
 
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/poly_mount1.JPG" border="0" />
        </p>
        <p>
 
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/Poly_mount2.JPG" border="0" />
        </p>
        <p>
 
</p>
        <img src="http://www.lifeasbob.com/content/binary/Poly_mount3.JPG" border="0" />
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=36276b56-8f27-4bdf-85ff-0f9f025e2838" />
      </body>
      <title>Manually Remove a Mount Point</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,36276b56-8f27-4bdf-85ff-0f9f025e2838.aspx</guid>
      <link>http://www.lifeasbob.com/2008/03/25/ManuallyRemoveAMountPoint.aspx</link>
      <pubDate>Tue, 25 Mar 2008 19:30:38 GMT</pubDate>
      <description>&lt;p&gt;
Don't ask me why, but the Mount Point failed unmounting via gui.
&lt;/p&gt;
&lt;p&gt;
No error, no message, but the mount point still shows in explorer.&amp;nbsp; Reboot, still
shows in explorer.
&lt;/p&gt;
&lt;p&gt;
Drop to the command line and run
&lt;/p&gt;
&lt;p&gt;
MountVol
&lt;/p&gt;
&lt;p&gt;
MountVol d:\crm /D
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/poly_mount1.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/Poly_mount2.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/Poly_mount3.JPG" border=0&gt;&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=36276b56-8f27-4bdf-85ff-0f9f025e2838" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,36276b56-8f27-4bdf-85ff-0f9f025e2838.aspx</comments>
      <category>General Technology</category>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=c67200f2-4b73-4b71-a2c1-f4a46490d0fe</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,c67200f2-4b73-4b71-a2c1-f4a46490d0fe.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,c67200f2-4b73-4b71-a2c1-f4a46490d0fe.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=c67200f2-4b73-4b71-a2c1-f4a46490d0fe</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
We have been experiencing a Polyserve Pan Pulse error that was difficult to troubleshoot
and explain.  Most perplexing was the lack of failover, as the Matrix eventlog
entry for the sql instance, indicates it stopped communicating than started communicating,
almost like a "stutter".
</p>
        <p>
Had we not been carefully monitoring the sql instances, we would not even notice this
happens, as the sql instance does not fail over, it is stopped and started by the
cluster software.  We run a sql agent starting job that sends an alert whenever
the agent stops and starts, which alerts us to this condition.
</p>
        <p>
For some reason this is only happenning on 3 of our newer machines, all DL585's 4-way
dual core and a DL580 4-way quad-core machines. 
</p>
        <p>
The event log entries are as follow, notice they are 2 seconds apart:
</p>
        <p>
--------------------------------------------
</p>
        <p>
Event Type: Information<br />
Event Source: PANPulse<br />
Event Category: Interface 
<br />
Event ID: 100<br />
Date:  3/13/2008<br />
Time:  1:21:26 PM<br />
User:  N/A<br />
Computer: BCPLYSQL07<br />
Description:<br />
10.10.50.48     2008-03-13 13:21:26 Interface 10.10.50.48 address
10.10.50.48 has gone down<br />
-------------------------------------------------------
</p>
        <p>
Event Type: Information<br />
Event Source: PANPulse<br />
Event Category: Interface 
<br />
Event ID: 100<br />
Date:  3/13/2008<br />
Time:  1:21:28 PM<br />
User:  N/A<br />
Computer: BCPLYSQL07<br />
Description:<br />
10.10.50.48     2008-03-13 13:21:28 Interface 10.10.50.48 address
10.10.50.48 has come up because interface statistics indicate there is incoming traffic<br />
-----------------------------------------------------------
</p>
        <p>
What we stumbled across when reviewing this was Flow Control.  The flow control
is a nic card setting.  These 3 machines were all set to Auto.  There is
an option in the HP Network Configuration Utility where you can select the Information;
and it shows the currently selected Flow Control, of which all 3 of these were somehow
auto-selecting Rx Pause.  We reconfigured this property to disabled.
</p>
        <p>
We're hoping this resolves the issue, as we couldn't understand why a sql instance
would go up and down with a pan pulse error.  
</p>
        <p>
We have 9 servers clustered together and run SQL Instances on all of them.  We
only experienced the pan pulse error on these 3 machines, and all of them had the
wrong flow control.
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=c67200f2-4b73-4b71-a2c1-f4a46490d0fe" />
      </body>
      <title>Polyserve Pan Pulse Error</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,c67200f2-4b73-4b71-a2c1-f4a46490d0fe.aspx</guid>
      <link>http://www.lifeasbob.com/2008/03/21/PolyservePanPulseError.aspx</link>
      <pubDate>Fri, 21 Mar 2008 17:46:15 GMT</pubDate>
      <description>&lt;p&gt;
We have been experiencing a Polyserve Pan Pulse error that was difficult to troubleshoot
and explain.&amp;nbsp; Most perplexing was the lack of failover, as the Matrix eventlog
entry for the sql instance, indicates it stopped communicating than started communicating,
almost like a "stutter".
&lt;/p&gt;
&lt;p&gt;
Had we not been carefully monitoring the sql instances, we would not even notice this
happens, as the sql instance does not fail over, it is stopped and started by the
cluster software.&amp;nbsp; We run a sql agent starting job that sends an alert whenever
the agent stops and starts, which alerts us to this condition.
&lt;/p&gt;
&lt;p&gt;
For some reason this is only happenning on 3 of our newer machines, all DL585's 4-way
dual core and a DL580 4-way quad-core machines.&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
The event log entries are as follow, notice they are 2 seconds apart:
&lt;/p&gt;
&lt;p&gt;
--------------------------------------------
&lt;/p&gt;
&lt;p&gt;
Event Type:&amp;nbsp;Information&lt;br&gt;
Event Source:&amp;nbsp;PANPulse&lt;br&gt;
Event Category:&amp;nbsp;Interface 
&lt;br&gt;
Event ID:&amp;nbsp;100&lt;br&gt;
Date:&amp;nbsp;&amp;nbsp;3/13/2008&lt;br&gt;
Time:&amp;nbsp;&amp;nbsp;1:21:26 PM&lt;br&gt;
User:&amp;nbsp;&amp;nbsp;N/A&lt;br&gt;
Computer:&amp;nbsp;BCPLYSQL07&lt;br&gt;
Description:&lt;br&gt;
10.10.50.48&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2008-03-13 13:21:26 Interface 10.10.50.48 address
10.10.50.48 has gone down&lt;br&gt;
-------------------------------------------------------
&lt;/p&gt;
&lt;p&gt;
Event Type:&amp;nbsp;Information&lt;br&gt;
Event Source:&amp;nbsp;PANPulse&lt;br&gt;
Event Category:&amp;nbsp;Interface 
&lt;br&gt;
Event ID:&amp;nbsp;100&lt;br&gt;
Date:&amp;nbsp;&amp;nbsp;3/13/2008&lt;br&gt;
Time:&amp;nbsp;&amp;nbsp;1:21:28 PM&lt;br&gt;
User:&amp;nbsp;&amp;nbsp;N/A&lt;br&gt;
Computer:&amp;nbsp;BCPLYSQL07&lt;br&gt;
Description:&lt;br&gt;
10.10.50.48&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2008-03-13 13:21:28 Interface 10.10.50.48 address
10.10.50.48 has come up because interface statistics indicate there is incoming traffic&lt;br&gt;
-----------------------------------------------------------
&lt;/p&gt;
&lt;p&gt;
What we stumbled across when reviewing this was Flow Control.&amp;nbsp; The flow control
is a nic card setting.&amp;nbsp; These 3 machines were all set to Auto.&amp;nbsp; There is
an option in the HP Network Configuration Utility where you can select the Information;
and it shows the currently selected Flow Control, of which all 3 of these were somehow
auto-selecting Rx Pause.&amp;nbsp; We reconfigured this property to disabled.
&lt;/p&gt;
&lt;p&gt;
We're hoping this resolves the issue, as we couldn't understand why a sql instance
would go up and down with a pan pulse error.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
We have 9 servers clustered together and run SQL Instances on all of them.&amp;nbsp; We
only experienced the pan pulse error on these 3 machines, and all of them had the
wrong flow control.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=c67200f2-4b73-4b71-a2c1-f4a46490d0fe" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,c67200f2-4b73-4b71-a2c1-f4a46490d0fe.aspx</comments>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=f7a90148-b597-4192-88af-3e3b940dd592</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,f7a90148-b597-4192-88af-3e3b940dd592.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,f7a90148-b597-4192-88af-3e3b940dd592.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=f7a90148-b597-4192-88af-3e3b940dd592</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
When installing SQL Server 2005 with Polyserve, the install fails with error 28001.  
</p>
        <p>
This is because when Polyserve first began supporting SQL Server 2005, the software
had an issue / bug with the Password validation.  SQL Authentication password
validation did not work under Polyserve.  The bug has since been fixed. 
But our installation uses the template.ini, which contains an sa password that does
not meet the validation.  So now that the bug is fixed, and password validation
is working; the install fails.  Solution is very simple, to edit the template.ini
file to contain a password that meets the validation requirements.
</p>
        <p>
To dig down into the 28001 error you have to to the individual server(s) where the
install failed and find the install log file, c:\Program Files\Microsoft SQL
Server\90\Setup Bootstrap\LOG\Summary.txt  
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/polysql_install.JPG" border="0" />
        </p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=f7a90148-b597-4192-88af-3e3b940dd592" />
      </body>
      <title>SQL Server install fails 28001</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,f7a90148-b597-4192-88af-3e3b940dd592.aspx</guid>
      <link>http://www.lifeasbob.com/2008/03/21/SQLServerInstallFails28001.aspx</link>
      <pubDate>Fri, 21 Mar 2008 15:33:11 GMT</pubDate>
      <description>&lt;p&gt;
When installing SQL Server 2005 with Polyserve, the install fails with error 28001.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
This is because when Polyserve first began supporting SQL Server 2005, the software
had an issue / bug with the Password validation.&amp;nbsp; SQL Authentication password
validation did not work under Polyserve.&amp;nbsp; The bug has since been fixed.&amp;nbsp;
But our installation uses the template.ini, which contains an sa password that does
not meet the validation.&amp;nbsp; So now that the bug is fixed, and password validation
is working; the install fails.&amp;nbsp; Solution is very simple, to edit the template.ini
file to contain a password that meets the validation requirements.
&lt;/p&gt;
&lt;p&gt;
To dig down into the 28001 error you have to to the individual server(s) where the
install failed and find the install log file,&amp;nbsp;c:\Program Files\Microsoft SQL
Server\90\Setup Bootstrap\LOG\Summary.txt&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/polysql_install.JPG" border=0&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=f7a90148-b597-4192-88af-3e3b940dd592" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,f7a90148-b597-4192-88af-3e3b940dd592.aspx</comments>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=590f4c23-d941-4ecc-9c7d-724ad53038c9</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,590f4c23-d941-4ecc-9c7d-724ad53038c9.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,590f4c23-d941-4ecc-9c7d-724ad53038c9.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=590f4c23-d941-4ecc-9c7d-724ad53038c9</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
How do you determine which IP Address is bound to which NIC card in a mult-honed machine
?
</p>
        <p>
Recently I ran into the task of ensuring the nic cards on our Clustered machines were
all named with the standard "Private" and "Public" as opposed to various things like
"network adapter 1" etc.
</p>
        <p>
All our Private nics in the cluster start with 192.x.x.x.  So to ensure I was
naming them properly I needed to find what IP address was bound to "network adpater
1" etc.  This seems easy but for some reason took me a while to figure this out.
</p>
        <p>
( and if you look carefully in this example you will see the current nic card labeled
"admin" has a public IP Address, someone goofed ! and reversed them, so this is important
stuff to know how to check !)
</p>
        <p>
We found two ways to do this, through windows control panel, and through our vendor's
nic card configuration utility (HP).
</p>
        <p>
Select Start -&gt; Control Panel -&gt; Network -&gt; {Adapter Name} than right click
and select status.
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/nic_settings.JPG" border="0" />
        </p>
        <p>
From the Status properties window you can select the "advanced" tab and determine
which IP Address is bound to this adapter.
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/nic_settings2.JPG" border="0" />
        </p>
        <p>
Our particular Vendor is HP, and from the HP Network Utility you can select a NIC
Card and then choose, Information, and in the Details section you can find the IP
Address. 
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/hp_nic_settings.JPG" border="0" />
        </p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=590f4c23-d941-4ecc-9c7d-724ad53038c9" />
      </body>
      <title>Determining IP Address of Network Adapter</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,590f4c23-d941-4ecc-9c7d-724ad53038c9.aspx</guid>
      <link>http://www.lifeasbob.com/2008/03/20/DeterminingIPAddressOfNetworkAdapter.aspx</link>
      <pubDate>Thu, 20 Mar 2008 15:35:09 GMT</pubDate>
      <description>&lt;p&gt;
How do you determine which IP Address is bound to which NIC card in a mult-honed machine
?
&lt;/p&gt;
&lt;p&gt;
Recently I ran into the task of ensuring the nic cards on our Clustered machines were
all named with the standard "Private" and "Public" as opposed to various things like
"network adapter 1" etc.
&lt;/p&gt;
&lt;p&gt;
All our Private nics in the cluster start with 192.x.x.x.&amp;nbsp; So to ensure I was
naming them properly I needed to find what IP address was bound to "network adpater
1" etc.&amp;nbsp; This seems easy but for some reason took me a while to figure this out.
&lt;/p&gt;
&lt;p&gt;
( and if you look carefully in this example you will see the current nic card labeled
"admin" has a public IP Address, someone goofed ! and reversed them, so this is important
stuff to know how to check !)
&lt;/p&gt;
&lt;p&gt;
We found two ways to do this, through windows control panel, and through our vendor's
nic card configuration utility (HP).
&lt;/p&gt;
&lt;p&gt;
Select Start -&amp;gt; Control Panel -&amp;gt; Network -&amp;gt; {Adapter Name} than right click
and select status.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/nic_settings.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
From the Status properties window you can select the "advanced" tab and determine
which IP Address is bound to this adapter.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/nic_settings2.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Our particular Vendor is HP, and from the HP Network Utility you can select a NIC
Card and then choose, Information, and in the Details section you can find the IP
Address. 
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/hp_nic_settings.JPG" border=0&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=590f4c23-d941-4ecc-9c7d-724ad53038c9" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,590f4c23-d941-4ecc-9c7d-724ad53038c9.aspx</comments>
      <category>General Technology</category>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=94f7ef15-a427-4384-a53f-d4ce2c16ba6e</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,94f7ef15-a427-4384-a53f-d4ce2c16ba6e.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,94f7ef15-a427-4384-a53f-d4ce2c16ba6e.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=94f7ef15-a427-4384-a53f-d4ce2c16ba6e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
We use an EMC Symmetrix SAN.  We zone lots of storage.  Recently had some
new storage zoned and we could not "see" the storage.  Turns out that 64 bit
windows can only see the first 256 luns zoned to an FA Channel.  Now 32 bit windows
does not have this issue, so things actually "took a step backwards" with 64 bit.
</p>
        <p>
 
</p>
        <p>
This was a frustrating development.  Currently we have no solution from Microsoft
(thankyou).  The work around is to have our SAN Administrator zone luns over
256 down another FA Channel.
</p>
        <p>
 
</p>
        <p>
Plan you SAN Carefully.
</p>
        <p>
 
</p>
        <p>
Found this:
</p>
        <font size="2">
          <p>
310072 Adding support for more than eight LUNs in Windows Server 2003 and in Windows
2000
</p>
          <p>
          </p>
        </font>
        <a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;310072">
          <u>
            <font color="#0000ff" size="2">http://support.microsoft.com/default.aspx?scid=kb;EN-US;310072
</font>
          </u>
        </a>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=94f7ef15-a427-4384-a53f-d4ce2c16ba6e" />
      </body>
      <title>256 LUNS on one FA Channel </title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,94f7ef15-a427-4384-a53f-d4ce2c16ba6e.aspx</guid>
      <link>http://www.lifeasbob.com/2008/03/14/256LUNSOnOneFAChannel.aspx</link>
      <pubDate>Fri, 14 Mar 2008 14:34:09 GMT</pubDate>
      <description>&lt;p&gt;
We use an EMC Symmetrix SAN.&amp;nbsp; We zone lots of storage.&amp;nbsp; Recently had some
new storage zoned and we could not "see" the storage.&amp;nbsp; Turns out that 64 bit
windows can only see the first 256 luns zoned to an FA Channel.&amp;nbsp; Now 32 bit windows
does not have this issue, so things actually "took a step backwards" with 64 bit.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
This was a frustrating development.&amp;nbsp; Currently we have no solution from Microsoft
(thankyou).&amp;nbsp; The work around is to have our SAN Administrator zone luns over
256 down another FA Channel.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Plan you SAN Carefully.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Found this:
&lt;/p&gt;
&lt;font size=2&gt; 
&lt;p&gt;
310072 Adding support for more than eight LUNs in Windows Server 2003 and in Windows
2000
&lt;/p&gt;
&lt;p&gt;
&lt;/font&gt;&lt;a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;310072"&gt;&lt;u&gt;&lt;font color=#0000ff size=2&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;310072
&lt;/u&gt;&gt;&lt;/a&gt;&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=94f7ef15-a427-4384-a53f-d4ce2c16ba6e" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,94f7ef15-a427-4384-a53f-d4ce2c16ba6e.aspx</comments>
      <category>General Technology</category>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=f08c466a-8746-4c3f-966c-fd83606b57f6</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,f08c466a-8746-4c3f-966c-fd83606b57f6.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,f08c466a-8746-4c3f-966c-fd83606b57f6.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=f08c466a-8746-4c3f-966c-fd83606b57f6</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
This error is annoying.  No idea why it happens, not sure if netbackup or anti-virus
locks up and or corrupts the polyserve password file.  So far we opened a support
case, but if I remember correctly you have to reboot the server to correct this error. 
Fortunately you can use the matrix console from other machines, so it can wait, but
very annoying.
</p>
        <p>
          <font color="#a52a2a">The solution of rebooting the server worked, so this indicates
to me that the file was not corrupt but some type of "permission denied" happenned.  
Almost as though this server did not get a "clean reboot" as both times I remember
getting this error was right after a reboot or power cycle of the machine.</font>
        </p>
        <blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
          <p>
            <strong>
              <font color="#006400">Related entry in the Matrix event log:</font>
            </strong>
          </p>
          <p>
            <font color="#006400">Event Type: Failure Audit<br />
Event Source: ClusterPulse<br />
Event Category: MxConsole 
<br />
Event ID: 100<br />
Date:  3/13/2008<br />
Time:  2:54:20 PM<br />
User:  N/A<br />
Computer: DEVPLYSQL02<br />
Description:<br />
10.10.49.162    2008-03-13 14:54:20 FailureEventAudit -  user
'admin' at &lt;10.10.49.162:3201&gt;:  failed authentication, Sys_error(C:\PROGRA~1\POLYSE~1\MATRIX~1\conf\mx_passwd:
Permission denied)</font>
            <br />
          </p>
        </blockquote>
        <p>
Screen shot of the error:
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/Polyserve_login_405_error.JPG" border="0" />
        </p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=f08c466a-8746-4c3f-966c-fd83606b57f6" />
      </body>
      <title>Polyserve login failed error 405</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,f08c466a-8746-4c3f-966c-fd83606b57f6.aspx</guid>
      <link>http://www.lifeasbob.com/2008/03/13/PolyserveLoginFailedError405.aspx</link>
      <pubDate>Thu, 13 Mar 2008 19:59:09 GMT</pubDate>
      <description>&lt;p&gt;
This error is annoying.&amp;nbsp; No idea why it happens, not sure if netbackup or anti-virus
locks up and or corrupts the polyserve password file.&amp;nbsp; So far we opened a support
case, but if I remember correctly you have to reboot the server to correct this error.&amp;nbsp;
Fortunately you can use the matrix console from other machines, so it can wait, but
very annoying.
&lt;/p&gt;
&lt;p&gt;
&lt;font color=#a52a2a&gt;The solution of rebooting the server worked, so this indicates
to me that the file was not corrupt but some type of "permission denied" happenned.&amp;nbsp;&amp;nbsp;
Almost as though this server did not get a "clean reboot" as both times I remember
getting this error was right after a reboot or power cycle of the machine.&lt;/font&gt;
&lt;/p&gt;
&lt;blockquote dir=ltr style="MARGIN-RIGHT: 0px"&gt; 
&lt;p&gt;
&lt;strong&gt;&lt;font color=#006400&gt;Related entry in the Matrix event log:&lt;/font&gt;&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font color=#006400&gt;Event Type:&amp;nbsp;Failure Audit&lt;br&gt;
Event Source:&amp;nbsp;ClusterPulse&lt;br&gt;
Event Category:&amp;nbsp;MxConsole 
&lt;br&gt;
Event ID:&amp;nbsp;100&lt;br&gt;
Date:&amp;nbsp;&amp;nbsp;3/13/2008&lt;br&gt;
Time:&amp;nbsp;&amp;nbsp;2:54:20 PM&lt;br&gt;
User:&amp;nbsp;&amp;nbsp;N/A&lt;br&gt;
Computer:&amp;nbsp;DEVPLYSQL02&lt;br&gt;
Description:&lt;br&gt;
10.10.49.162&amp;nbsp;&amp;nbsp;&amp;nbsp; 2008-03-13 14:54:20 FailureEventAudit -&amp;nbsp; user
'admin' at &amp;lt;10.10.49.162:3201&amp;gt;:&amp;nbsp; failed authentication, Sys_error(C:\PROGRA~1\POLYSE~1\MATRIX~1\conf\mx_passwd:
Permission denied)&lt;/font&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
Screen shot of the error:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/Polyserve_login_405_error.JPG" border=0&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=f08c466a-8746-4c3f-966c-fd83606b57f6" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,f08c466a-8746-4c3f-966c-fd83606b57f6.aspx</comments>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=90864701-7189-4f1d-b603-cad8ee19382e</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,90864701-7189-4f1d-b603-cad8ee19382e.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,90864701-7189-4f1d-b603-cad8ee19382e.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=90864701-7189-4f1d-b603-cad8ee19382e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
While trying to remove Polyserve Hotfix 4, i've consistently run into a problem with
the add remove programs not displaying any programs.
</p>
        <p>
Polyserve Hotfix 4 must be removed before applying hotfix 5.  Open up Control
Panel, Add / Remove Programs, and nothing.  The list just never populates. 
Reboot, Reboot, nothing.  Out of frustration I know the uninstall is just a program,
so I search the registry for the uninstall string, cut and paste that out, and run
it from the command line.  See Picture below for registry, not sure if the guid
is the same for all installations, so always check.  The string I ran was: 
</p>
        <p>
 
</p>
        <p>
 MsiExec.exe /I{6D67BBA1-ECB3-4FBF-80A3-A3A34F57CE89}
</p>
        <p>
 
</p>
        <p>
Worked well, I still have no idea why the list won't populate, but I've had this issue
on several windows 2003, 64 bit, sp2 machines running polyserve.  It makes applying
a hotfix frustrating.
</p>
        <p>
 
</p>
        <p>
The Add or Remove Programs screen never populates.
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/add_remove_programs.JPG" border="0" />
        </p>
        <p>
Registry entry which shows string to run to uninstall, UninstallString.
</p>
        <p>
          <img src="http://www.lifeasbob.com/content/binary/polyserve_uninstall_4_reg.JPG" border="0" />
        </p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=90864701-7189-4f1d-b603-cad8ee19382e" />
      </body>
      <title>Add Remove Programs not displaying</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,90864701-7189-4f1d-b603-cad8ee19382e.aspx</guid>
      <link>http://www.lifeasbob.com/2008/03/07/AddRemoveProgramsNotDisplaying.aspx</link>
      <pubDate>Fri, 07 Mar 2008 16:01:09 GMT</pubDate>
      <description>&lt;p&gt;
While trying to remove Polyserve Hotfix 4, i've consistently run into a problem with
the add remove programs not displaying any programs.
&lt;/p&gt;
&lt;p&gt;
Polyserve Hotfix 4 must be removed before applying hotfix 5.&amp;nbsp; Open up Control
Panel, Add / Remove Programs, and nothing.&amp;nbsp; The list just never populates.&amp;nbsp;
Reboot, Reboot, nothing.&amp;nbsp; Out of frustration I know the uninstall is just a program,
so I search the registry for the uninstall string, cut and paste that out, and run
it from the command line.&amp;nbsp; See Picture below for registry, not sure if the guid
is the same for all installations, so always check.&amp;nbsp; The string I ran was:&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;MsiExec.exe /I{6D67BBA1-ECB3-4FBF-80A3-A3A34F57CE89}
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Worked well, I still have no idea why the list won't populate, but I've had this issue
on several windows 2003, 64 bit, sp2 machines running polyserve.&amp;nbsp; It makes applying
a hotfix frustrating.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
The Add or Remove Programs screen never populates.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/add_remove_programs.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Registry entry which shows string to run to uninstall, UninstallString.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/polyserve_uninstall_4_reg.JPG" border=0&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=90864701-7189-4f1d-b603-cad8ee19382e" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,90864701-7189-4f1d-b603-cad8ee19382e.aspx</comments>
      <category>Polyserve</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=eefe9634-d72e-4838-824c-8db914172627</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,eefe9634-d72e-4838-824c-8db914172627.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,eefe9634-d72e-4838-824c-8db914172627.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=eefe9634-d72e-4838-824c-8db914172627</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <title>TOE, Packet Loss, Blue Screen crash, CPU Synchronization</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,eefe9634-d72e-4838-824c-8db914172627.aspx</guid>
      <link>http://www.lifeasbob.com/2008/03/04/TOEPacketLossBlueScreenCrashCPUSynchronization.aspx</link>
      <pubDate>Tue, 04 Mar 2008 18:45:01 GMT</pubDate>
      <description>&lt;p&gt;
Want Fries with that ?
&lt;/p&gt;
&lt;p&gt;
Experienced a Polyserve failover today, root cause has been very difficult to flush
out.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
One lucky hit was our solar winds monitor was reporting 80% packet loss on the server
!
&lt;/p&gt;
&lt;p&gt;
Since we are using server based fencing&amp;nbsp;we wouldn't expect a crash dump.&amp;nbsp;
The problem is that the node is fenced (power_cycled) before the crash dump occurs.&amp;nbsp;
Unfortunately, there is really no way to determine the cause of the crash without
a Memory.dmp.&amp;nbsp; But, one of the side effects of TOE being enabled on the servers
is a blue screen.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
TOE, what's that ?
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
&lt;span style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;This
stands for TCP/IP offload engine. Modern NICs have the ability to offload the processing
of network transmission. This allows the CPU to focus on its other responsibilities.
This feature is dependent on the &amp;nbsp;OS supporting the feature. SP2 supports TOE.
This is the first iteration of Windows that does so. It definitely has advantages,
but we have seen some issues in other areas so turning it off may help solve the problem.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
Of course like any good new technology, it doesn't always work right and the side
effect of TOE is a blue screen, nice !
&lt;/p&gt;
&lt;p&gt;
Review the attached KB Article on TOE from HP:&amp;nbsp; &lt;a href="http://www.lifeasbob.com/content/binary/TOE_KB.htm"&gt;TOE_KB.htm
(5.76 KB)&lt;/a&gt;&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
At the same time, we're still working on issues with the CPU synchronization errors
in the SQL Server error log:
&lt;/p&gt;
&lt;p&gt;
&lt;font color=#deb887&gt;&lt;font color=#000080&gt;The time stamp counter of CPU on scheduler
id 14 is not synchronized with other CPUs.&lt;br&gt;
The time stamp counter of CPU on scheduler id 2 is not synchronized with other CPUs.&lt;/font&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;
&gt;&lt;font color=#000000&gt;See Microsoft KB Article:&amp;nbsp; &lt;span style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;a title=blocked::http://support.microsoft.com/default.aspx?scid=kb;EN-US;931279 href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;931279"&gt;&lt;font color=#800080&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;931279&lt;/font&gt;&lt;/a&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font color=#deb887&gt;&lt;font color=#000000&gt;&lt;font color=#000000&gt;Now&lt;/font&gt; this error
I though only affected the AMD Chipsets, but this particular machine is an Intel 4
way quad core, so 16 processors.&amp;nbsp; On the AMD Chipsets we modified a boot.ini
file with /usepmtimer, but on this intel box we had to go to the bios settings.&lt;/font&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font color=#deb887&gt;&lt;font color=#000000&gt;Hopefully after changing the BIOS Power settings
to maximum always, we'll see no more fail overs and no more synchronization issues.&lt;/font&gt;
&lt;/p&gt;
&gt;&lt;img src="http://www.lifeasbob.com/content/binary/hp_bios_power_settings.JPG" border=0&gt;&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=eefe9634-d72e-4838-824c-8db914172627" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,eefe9634-d72e-4838-824c-8db914172627.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=948d3f74-5793-4a41-9daf-450b805e779e</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,948d3f74-5793-4a41-9daf-450b805e779e.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,948d3f74-5793-4a41-9daf-450b805e779e.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=948d3f74-5793-4a41-9daf-450b805e779e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Polyserve clusters SQL Server instances, and can then rehost them or fail them over
to other servers.
</p>
        <p>
One of the issues we've run into with Polyserve is when we move a sql server instance
from one machine to another where the binaries change location from mssql.a to mssql.b. 
</p>
        <p>
SQL Agent (SQLAgent.exe, SQLAgent), utilizes a system table in msdb for starting and
executing jobs, called syssubsystems;
</p>
        <p>
Execute: select * from msdb.dbo.syssubsystems and you will see each sub-system of
sql agent and the path to the binaries, if a sql server instance is moved through
some technology like Polyserve or through manually moving a msdb database from one
server to another and the path to the binaries change, the system tables will need
to be updated to the new path.
</p>
        <p>
We've experienced this on Polyserve and when we moved a sql server instance from one
server to another and copied msdb.
</p>
        <p>
very easy to fix, but frustrating, below is  a snippet which can be run to correct
the issue:
</p>
        <font color="#008000" size="2">
          <p>
--Get SQLBinRoot 
</p>
        </font>
        <font color="#0000ff" size="2">
          <p>
declare
</p>
        </font>
        <font color="#000000" size="2"> @ret </font>
        <font color="#0000ff" size="2">sysname</font>
        <font size="2">
          <font color="#000000">
          </font>
        </font>
        <font color="#0000ff" size="2">
          <p>
exec
</p>
        </font>
        <font color="#000000" size="2"> master</font>
        <font color="#808080" size="2">..</font>
        <font color="#000000" size="2">xp_instance_regread </font>
        <font color="#ff0000" size="2">'HKEY_LOCAL_MACHINE'</font>
        <font color="#808080" size="2">,</font>
        <font color="#ff0000" size="2">'Software\Microsoft\MSSQLServer\Setup'</font>
        <font color="#808080" size="2">,</font>
        <font color="#ff0000" size="2">'SQLBinRoot'</font>
        <font color="#808080" size="2">,</font>
        <font color="#000000" size="2">@ret </font>
        <font color="#0000ff" size="2">OUTPUT</font>
        <font size="2">
          <font color="#000000">
          </font>
        </font>
        <font color="#008000" size="2">
          <p>
--Update subsystem_dll to current SQLBinRoot 
</p>
        </font>
        <font color="#0000ff" size="2">
          <p>
update
</p>
        </font>
        <font size="2">
          <font color="#000000"> sub </font>
        </font>
        <font color="#0000ff" size="2">
          <p>
set
</p>
        </font>
        <font color="#000000" size="2"> subsystem_dll</font>
        <font color="#808080" size="2">=</font>
        <font color="#000000" size="2">@ret</font>
        <font color="#808080" size="2">+</font>
        <font color="#ff00ff" size="2">substring</font>
        <font color="#808080" size="2">(</font>
        <font color="#000000" size="2">subsystem_dll</font>
        <font color="#808080" size="2">,</font>
        <font color="#ff00ff" size="2">charindex</font>
        <font color="#808080" size="2">(</font>
        <font color="#ff0000" size="2">'\binn\'</font>
        <font color="#808080" size="2">,</font>
        <font color="#000000" size="2">subsystem_dll</font>
        <font color="#808080" size="2">)+</font>
        <font color="#000000" size="2">5</font>
        <font color="#808080" size="2">,</font>
        <font color="#000000" size="2">30</font>
        <font color="#808080" size="2">)</font>
        <font size="2">
          <font color="#000000">
          </font>
        </font>
        <font color="#0000ff" size="2">
          <p>
from
</p>
        </font>
        <font color="#000000" size="2"> msdb</font>
        <font color="#808080" size="2">..</font>
        <font size="2">
          <font color="#000000">syssubsystems
sub </font>
        </font>
        <font color="#0000ff" size="2">
          <p>
where
</p>
        </font>
        <font color="#000000" size="2">
        </font>
        <font color="#ff00ff" size="2">charindex</font>
        <font color="#808080" size="2">(</font>
        <font color="#ff0000" size="2">'\binn\'</font>
        <font color="#808080" size="2">,</font>
        <font color="#000000" size="2">subsystem_dll</font>
        <font color="#808080" size="2">)&gt;</font>
        <font size="2">
          <font color="#000000">0 </font>
        </font>
        <font color="#008000" size="2">
          <p>
--Stop Sqlagent service if running 
</p>
          <p>
--MxDB should restart it automatically 
</p>
        </font>
        <font color="#0000ff" size="2">
          <p>
declare
</p>
        </font>
        <font color="#000000" size="2"> @service </font>
        <font color="#0000ff" size="2">sysname</font>
        <font size="2">
          <font color="#000000">
          </font>
        </font>
        <font color="#0000ff" size="2">
          <p>
select
</p>
        </font>
        <font color="#000000" size="2"> @service </font>
        <font color="#808080" size="2">=</font>
        <font color="#000000" size="2">
        </font>
        <font color="#0000ff" size="2">case</font>
        <font color="#000000" size="2">
        </font>
        <font color="#0000ff" size="2">when</font>
        <font color="#000000" size="2">
        </font>
        <font color="#ff00ff" size="2">charindex</font>
        <font color="#808080" size="2">(</font>
        <font color="#ff0000" size="2">'\'</font>
        <font color="#808080" size="2">,</font>
        <font color="#ff00ff" size="2">@@servername</font>
        <font color="#808080" size="2">)&gt;</font>
        <font size="2">
          <font color="#000000">0 </font>
          <p>
          </p>
        </font>
        <font color="#0000ff" size="2">then</font>
        <font size="2"> N</font>
        <font color="#ff0000" size="2">'SQLAgent$'</font>
        <font color="#808080" size="2">+</font>
        <font color="#ff00ff" size="2">@@servicename</font>
        <font size="2">
          <p>
          </p>
        </font>
        <font color="#0000ff" size="2">else</font>
        <font size="2"> N</font>
        <font color="#ff0000" size="2">'SQLSERVERAGENT'</font>
        <font size="2">
        </font>
        <font color="#0000ff" size="2">end</font>
        <font size="2">
        </font>
        <font color="#0000ff" size="2">
          <p>
create
</p>
        </font>
        <font color="#000000" size="2">
        </font>
        <font color="#0000ff" size="2">table</font>
        <font color="#000000" size="2"> #stat</font>
        <font color="#808080" size="2">(</font>
        <font color="#0000ff" size="2">status</font>
        <font color="#000000" size="2">
        </font>
        <font color="#0000ff" size="2">sysname</font>
        <font color="#808080" size="2">)</font>
        <font size="2">
          <font color="#000000">
          </font>
        </font>
        <font color="#0000ff" size="2">
          <p>
insert
</p>
        </font>
        <font size="2">
          <font color="#000000"> #stat </font>
        </font>
        <font color="#0000ff" size="2">
          <p>
exec
</p>
        </font>
        <font color="#000000" size="2"> master</font>
        <font color="#808080" size="2">..</font>
        <font color="#000000" size="2">xp_servicecontrol
N</font>
        <font color="#ff0000" size="2">'QUERYSTATE'</font>
        <font color="#808080" size="2">,</font>
        <font size="2">
          <font color="#000000"> @service </font>
        </font>
        <font color="#0000ff" size="2">
          <p>
if
</p>
        </font>
        <font color="#000000" size="2">
        </font>
        <font color="#808080" size="2">exists(</font>
        <font color="#0000ff" size="2">select</font>
        <font color="#000000" size="2">
        </font>
        <font color="#808080" size="2">*</font>
        <font color="#000000" size="2">
        </font>
        <font color="#0000ff" size="2">from</font>
        <font color="#000000" size="2"> #stat </font>
        <font color="#0000ff" size="2">where</font>
        <font color="#000000" size="2">
        </font>
        <font color="#0000ff" size="2">status</font>
        <font color="#808080" size="2">=</font>
        <font color="#ff0000" size="2">'Running.'</font>
        <font color="#808080" size="2">)</font>
        <font size="2">
          <font color="#000000">
          </font>
        </font>
        <font color="#0000ff" size="2">
          <p>
begin
</p>
        </font>
        <font size="2">
          <font color="#000000">
          </font>
        </font>
        <font color="#0000ff" size="2">
          <p>
exec
</p>
        </font>
        <font color="#000000" size="2"> master</font>
        <font color="#808080" size="2">..</font>
        <font color="#000000" size="2">xp_servicecontrol
N</font>
        <font color="#ff0000" size="2">'STOP'</font>
        <font color="#808080" size="2">,</font>
        <font size="2">
          <font color="#000000"> @service </font>
        </font>
        <font color="#0000ff" size="2">
          <p>
end
</p>
        </font>
        <font size="2">
          <font color="#000000">
          </font>
        </font>
        <font color="#008000" size="2">
          <p>
--Clean up tmp table 
</p>
        </font>
        <font color="#0000ff" size="2">
          <p>
if
</p>
        </font>
        <font color="#000000" size="2">
        </font>
        <font color="#ff00ff" size="2">object_id</font>
        <font color="#808080" size="2">(</font>
        <font color="#ff0000" size="2">'tempdb..#stat'</font>
        <font color="#808080" size="2">)</font>
        <font color="#000000" size="2">
        </font>
        <font color="#808080" size="2">is</font>
        <font color="#000000" size="2">
        </font>
        <font color="#808080" size="2">not</font>
        <font color="#000000" size="2">
        </font>
        <font color="#808080" size="2">null</font>
        <font size="2">
          <font color="#000000">
          </font>
        </font>
        <font color="#0000ff" size="2">
          <p>
drop
</p>
        </font>
        <font color="#000000" size="2">
        </font>
        <font color="#0000ff" size="2">table</font>
        <font size="2">
          <font color="#000000"> #stat</font>
        </font>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=948d3f74-5793-4a41-9daf-450b805e779e" />
      </body>
      <title>SQL Agent - MSSQL.4 vs MSSQL.1, - \'ActiveScripting\' could not be loaded</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,948d3f74-5793-4a41-9daf-450b805e779e.aspx</guid>
      <link>http://www.lifeasbob.com/2008/02/06/SQLAgentMSSQL4VsMSSQL1ActiveScriptingCouldNotBeLoaded.aspx</link>
      <pubDate>Wed, 06 Feb 2008 15:49:41 GMT</pubDate>
      <description>&lt;p&gt;
Polyserve clusters SQL Server instances, and can then rehost them or fail them over
to other servers.
&lt;/p&gt;
&lt;p&gt;
One of the issues we've run into with Polyserve is when we move a sql server instance
from one machine to another where the binaries change location from mssql.a to mssql.b. 
&lt;/p&gt;
&lt;p&gt;
SQL Agent (SQLAgent.exe, SQLAgent), utilizes a system table in msdb for starting and
executing jobs, called syssubsystems;
&lt;/p&gt;
&lt;p&gt;
Execute: select * from msdb.dbo.syssubsystems and you will see each sub-system of
sql agent and the path to the binaries, if a sql server instance is moved through
some technology like Polyserve or through manually moving a msdb database from one
server to another and the path to the binaries change, the system tables will need
to be updated to the new path.
&lt;/p&gt;
&lt;p&gt;
We've experienced this on Polyserve and when we moved a sql server instance from one
server to another and copied msdb.
&lt;/p&gt;
&lt;p&gt;
very easy to fix, but frustrating, below is&amp;nbsp; a snippet which can be run to correct
the issue:
&lt;/p&gt;
&lt;font color=#008000 size=2&gt; 
&lt;p&gt;
--Get SQLBinRoot 
&lt;/p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
declare
&lt;/font&gt;&lt;font color=#000000 size=2&gt; @ret &lt;/font&gt;&lt;font color=#0000ff size=2&gt;sysname&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
exec
&lt;/font&gt;&lt;font color=#000000 size=2&gt; master&lt;/font&gt;&lt;font color=#808080 size=2&gt;..&lt;/font&gt;&lt;font color=#000000 size=2&gt;xp_instance_regread &lt;/font&gt;&lt;font color=#ff0000 size=2&gt;'HKEY_LOCAL_MACHINE'&lt;/font&gt;&lt;font color=#808080 size=2&gt;,&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;'Software\Microsoft\MSSQLServer\Setup'&lt;/font&gt;&lt;font color=#808080 size=2&gt;,&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;'SQLBinRoot'&lt;/font&gt;&lt;font color=#808080 size=2&gt;,&lt;/font&gt;&lt;font color=#000000 size=2&gt;@ret &lt;/font&gt;&lt;font color=#0000ff size=2&gt;OUTPUT&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#008000 size=2&gt; 
&lt;p&gt;
--Update subsystem_dll to current SQLBinRoot 
&lt;/p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
update
&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; sub &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
set
&lt;/font&gt;&lt;font color=#000000 size=2&gt; subsystem_dll&lt;/font&gt;&lt;font color=#808080 size=2&gt;=&lt;/font&gt;&lt;font color=#000000 size=2&gt;@ret&lt;/font&gt;&lt;font color=#808080 size=2&gt;+&lt;/font&gt;&lt;font color=#ff00ff size=2&gt;substring&lt;/font&gt;&lt;font color=#808080 size=2&gt;(&lt;/font&gt;&lt;font color=#000000 size=2&gt;subsystem_dll&lt;/font&gt;&lt;font color=#808080 size=2&gt;,&lt;/font&gt;&lt;font color=#ff00ff size=2&gt;charindex&lt;/font&gt;&lt;font color=#808080 size=2&gt;(&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;'\binn\'&lt;/font&gt;&lt;font color=#808080 size=2&gt;,&lt;/font&gt;&lt;font color=#000000 size=2&gt;subsystem_dll&lt;/font&gt;&lt;font color=#808080 size=2&gt;)+&lt;/font&gt;&lt;font color=#000000 size=2&gt;5&lt;/font&gt;&lt;font color=#808080 size=2&gt;,&lt;/font&gt;&lt;font color=#000000 size=2&gt;30&lt;/font&gt;&lt;font color=#808080 size=2&gt;)&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
from
&lt;/font&gt;&lt;font color=#000000 size=2&gt; msdb&lt;/font&gt;&lt;font color=#808080 size=2&gt;..&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt;syssubsystems
sub &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
where
&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#ff00ff size=2&gt;charindex&lt;/font&gt;&lt;font color=#808080 size=2&gt;(&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;'\binn\'&lt;/font&gt;&lt;font color=#808080 size=2&gt;,&lt;/font&gt;&lt;font color=#000000 size=2&gt;subsystem_dll&lt;/font&gt;&lt;font color=#808080 size=2&gt;)&amp;gt;&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt;0 &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#008000 size=2&gt; 
&lt;p&gt;
--Stop Sqlagent service if running 
&lt;/p&gt;
&lt;p&gt;
--MxDB should restart it automatically 
&lt;/p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
declare
&lt;/font&gt;&lt;font color=#000000 size=2&gt; @service &lt;/font&gt;&lt;font color=#0000ff size=2&gt;sysname&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
select
&lt;/font&gt;&lt;font color=#000000 size=2&gt; @service &lt;/font&gt;&lt;font color=#808080 size=2&gt;=&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;case&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;when&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#ff00ff size=2&gt;charindex&lt;/font&gt;&lt;font color=#808080 size=2&gt;(&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;'\'&lt;/font&gt;&lt;font color=#808080 size=2&gt;,&lt;/font&gt;&lt;font color=#ff00ff size=2&gt;@@servername&lt;/font&gt;&lt;font color=#808080 size=2&gt;)&amp;gt;&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt;0 &lt;/font&gt;&gt;
&lt;p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;then&lt;/font&gt;&lt;font size=2&gt; N&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;'SQLAgent$'&lt;/font&gt;&lt;font color=#808080 size=2&gt;+&lt;/font&gt;&lt;font color=#ff00ff size=2&gt;@@servicename&lt;/font&gt;&lt;font size=2&gt; &gt;
&lt;p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;else&lt;/font&gt;&lt;font size=2&gt; N&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;'SQLSERVERAGENT'&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;end&lt;/font&gt;&lt;font size=2&gt; &gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
create
&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;table&lt;/font&gt;&lt;font color=#000000 size=2&gt; #stat&lt;/font&gt;&lt;font color=#808080 size=2&gt;(&lt;/font&gt;&lt;font color=#0000ff size=2&gt;status&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;sysname&lt;/font&gt;&lt;font color=#808080 size=2&gt;)&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
insert
&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; #stat &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
exec
&lt;/font&gt;&lt;font color=#000000 size=2&gt; master&lt;/font&gt;&lt;font color=#808080 size=2&gt;..&lt;/font&gt;&lt;font color=#000000 size=2&gt;xp_servicecontrol
N&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;'QUERYSTATE'&lt;/font&gt;&lt;font color=#808080 size=2&gt;,&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; @service &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
if
&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#808080 size=2&gt;exists(&lt;/font&gt;&lt;font color=#0000ff size=2&gt;select&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#808080 size=2&gt;*&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;from&lt;/font&gt;&lt;font color=#000000 size=2&gt; #stat &lt;/font&gt;&lt;font color=#0000ff size=2&gt;where&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;status&lt;/font&gt;&lt;font color=#808080 size=2&gt;=&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;'Running.'&lt;/font&gt;&lt;font color=#808080 size=2&gt;)&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
begin
&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
exec
&lt;/font&gt;&lt;font color=#000000 size=2&gt; master&lt;/font&gt;&lt;font color=#808080 size=2&gt;..&lt;/font&gt;&lt;font color=#000000 size=2&gt;xp_servicecontrol
N&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;'STOP'&lt;/font&gt;&lt;font color=#808080 size=2&gt;,&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; @service &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
end
&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#008000 size=2&gt; 
&lt;p&gt;
--Clean up tmp table 
&lt;/p&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
if
&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#ff00ff size=2&gt;object_id&lt;/font&gt;&lt;font color=#808080 size=2&gt;(&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;'tempdb..#stat'&lt;/font&gt;&lt;font color=#808080 size=2&gt;)&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#808080 size=2&gt;is&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#808080 size=2&gt;not&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#808080 size=2&gt;null&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; &lt;/font&gt;&gt;
&lt;/font&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
drop
&lt;/font&gt;&lt;font color=#000000 size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;table&lt;/font&gt;&lt;font size=2&gt;&lt;font color=#000000&gt; #stat&lt;/font&gt;&gt;
&lt;/font&gt; 
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=948d3f74-5793-4a41-9daf-450b805e779e" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,948d3f74-5793-4a41-9daf-450b805e779e.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server / SQL Agent</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=483f655a-470a-43b5-b9c1-3de5df2d5c31</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,483f655a-470a-43b5-b9c1-3de5df2d5c31.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,483f655a-470a-43b5-b9c1-3de5df2d5c31.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=483f655a-470a-43b5-b9c1-3de5df2d5c31</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Oh why, why have the hotfixes become such a head ache, this one fought me quite a
bit, but finally she gave in...
</p>
        <p>
Also I usually extract the hotfix manually so I can review it, do this from a command
prompt (remember to make the target directory).
</p>
        <p>
c:\sqlserver2005-kb943656-x64-enu.exe /x:c:\sqlhotfix\
</p>
        <p>
          <strong>
            <u>The errors seen with 3215 are (some of these we have see with other hotfixes
as well).</u>
          </strong>
        </p>
        <ol>
          <li>
MSP Error: 29511  Failure creating local group IUSR_DEVPLYSQL01 
</li>
          <li>
MSP Error: 29528  The setup has encountered an unexpected error while Setting
Internal Properties. The error is: Fatal error during installation. 
</li>
          <li>
 MSP Error: 29534  Service 'MSSQL$QAEAM' could not be started. Verify that
you have sufficient privileges to start system services. The error code is (52) You
were not connected because a duplicate name exists on the network. Go to System in
Control Panel to change the computer name and try again. 
</li>
          <li>
MSP Error: 29538  SQL Server Setup did not have the administrator permissions
required to rename a file: f:\MSSQL\DATA\distmdl1.ldf. To continue, verify that the
file exists, and either grant administrator permissions to the account currently running
Setup or log in with an administrator account. Then run SQL Server Setup again. 
</li>
          <li>
MSP Error: 29537  SQL Server Setup has encountered the following problem: [Microsoft][SQL
Native Client][SQL Server]Cannot find the object 'dm_exec_query_resource_semaphores',
because it does not exist or you do not have permission.. To continue, correct the
problem, and then run SQL Server Setup again.</li>
        </ol>
        <p>
1st failure was a really strange one:
</p>
        <p>
MSP Error: 29511  Failure creating local group IUSR_DEVPLYSQL01
</p>
        <p>
As I didn't need IIS on this machine I deleted the account as it already existed,
mistake there, this lead to the 2nd failure.
</p>
        <p>
2nd failure was on:
</p>
        <p>
MSP Error: 29528  The setup has encountered an unexpected error while Setting
Internal Properties. The error is: Fatal error during installation.
</p>
        <p>
This turned out to be a registry issue with deleting items, while not specifically
addressing CU 5, it did fix the issue: <font color="#191970">(</font><a href="http://support.microsoft.com/kb/925976" target="_blank"><font color="#0000ff">http://support.microsoft.com/kb/925976</font></a><font color="#191970">).</font></p>
        <h3 id="tocHeadRef">For a stand-alone installation of SQL Server 2005
</h3>
        <p>
          <table class="list ol">
            <tbody>
              <tr>
                <td class="number">
1.</td>
                <td class="text">
Remove the following registry subkeys that store SID settings: 
<table class="list ul"><tbody><tr><td class="bullet">
•</td><td class="text">
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.<var>X</var>\Setup\SQLGroup</td></tr><tr><td class="bullet">
•</td><td class="text">
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.<var>X</var>\Setup\AGTGroup</td></tr><tr><td class="bullet">
•</td><td class="text">
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.<var>X</var>\Setup\FTSGroup 
</td></tr><tr><td class="bullet">
•</td><td class="text">
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.<var>X</var>\Setup\ASGroup 
</td></tr></tbody></table><b>Note</b> In these registry subkeys, MSSQL.<var>X</var> is a placeholder for the
corresponding value on a specific system. You can determine MSSQL.<var>X</var> on
a specific system by examining the value of the MSSQLSERVER registry entry under the
following registry subkey: 
<div class="indent">HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\Instance
Names\SQL\
</div></td>
              </tr>
              <tr>
                <td class="number">
2.</td>
                <td class="text">
Reinstall the SQL Server 2005 service pack or the SQL Server 2005 hotfix package.</td>
              </tr>
            </tbody>
          </table>
        </p>
        <p>
Finally after all that it installed, as easy as could be !
</p>
        <p>
---------------------------------------
</p>
        <p>
Experienced this error too:
</p>
        <p>
 MSP Error: 29534  Service 'MSSQL$QAEAM' could not be started. Verify that
you have sufficient privileges to start system services. The error code is (52) You
were not connected because a duplicate name exists on the network. Go to System in
Control Panel to change the computer name and try again.
</p>
        <p>
-------------
</p>
        <p>
The above error is because of the tcp/ip stack being modified by polyserve, i correct
this with a change in the registry networking settings.  I've had some questions
on what I corrected, basically under Polyserve the virtual IP "floats" to whatever
node is active, if for some reason, it is moved from one node to another, and not
removed from the previous node...you run into an issue where that other node will
not start, you'll receive some very nice errors like these in the sql server errorlog:
</p>
        <p>
2008-05-10 20:52:42.83 Server      A self-generated certificate
was successfully loaded for encryption.<br />
2008-05-10 20:52:42.85 Server      Error: 26024, Severity:
16, State: 1.<br />
2008-05-10 20:52:42.85 Server      Server failed to listen
on 10.10.48.40 &lt;ipv4&gt; 40020. Error: 0x2741. To proceed, notify your system administrator.<br />
2008-05-10 20:52:42.85 Server      Error: 17182, Severity:
16, State: 1.<br />
2008-05-10 20:52:42.85 Server      TDSSNIClient initialization
failed with error 0x2741, status code 0xa.<br />
2008-05-10 20:52:42.85 Server      Error: 17182, Severity:
16, State: 1.<br />
2008-05-10 20:52:42.85 Server      TDSSNIClient initialization
failed with error 0x2741, status code 0x1.<br />
2008-05-10 20:52:42.85 Server      Error: 17826, Severity:
18, State: 3.<br />
2008-05-10 20:52:42.85 Server      Could not start the network
library because of an internal error in the network library. To determine the cause,
review the errors immediately preceding this one in the error log.<br />
2008-05-10 20:52:42.85 Server      Error: 17120, Severity:
16, State: 1.<br />
2008-05-10 20:52:42.85 Server      SQL Server could not spawn
FRunCM thread. Check the SQL Server error log and the Windows event logs for information
about possible related problems.<br /></p>
        <p>
This error happens because you can't have two sql server instances use the same IP
Address, makes perfect sense when you think through it.
</p>
        <p>
The real problem now that you have root cause, is how to fix it.  Polyserve performs
some complex tasks with "swapping" registry entries and moving instances, this is
not an easy issue to correct and you must be careful.  These errors rarely happen
on version 3.6, but were pretty common on 3.4.  
</p>
        <p>
I'd adise to engage HP / Polyserve support to correct the issue, and then as you become
familiar with the SQL Registry and how polyserve works, this can be corrected quite
easily yourself.
</p>
        <p>
Depending on the scope of the problem you may only need to focus on the SuperSocketNetLib
IP address entries.  The server that won't start will most likely contain the
virtual ip, and there will be another node in your cluster already running the IP. 
Sometimes you can edit the IP1, IP2 and IP3 to just reflect your Public, Private and
loop Back IP Address.  But before starting SQL, Double check where your SQL Instances
are "pointing" if they are pointing to the virtul root, than you have a bigger
registry issue, and you must correct that too.
</p>
        <p>
Very much fun !
</p>
        <p>
-----------<br /></p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=483f655a-470a-43b5-b9c1-3de5df2d5c31" />
      </body>
      <title>Cumulative hotfix 5, 3215 install issues...</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,483f655a-470a-43b5-b9c1-3de5df2d5c31.aspx</guid>
      <link>http://www.lifeasbob.com/2008/01/29/CumulativeHotfix53215InstallIssues.aspx</link>
      <pubDate>Tue, 29 Jan 2008 04:36:07 GMT</pubDate>
      <description>&lt;p&gt;
Oh why, why have the hotfixes become such a head ache, this one fought me quite a
bit, but finally she gave in...
&lt;/p&gt;
&lt;p&gt;
Also I usually extract the hotfix manually so I can review it, do this from a command
prompt (remember to make the target directory).
&lt;/p&gt;
&lt;p&gt;
c:\sqlserver2005-kb943656-x64-enu.exe /x:c:\sqlhotfix\
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;&lt;u&gt;The errors seen with 3215 are (some of these we have see with other hotfixes
as well).&lt;/u&gt;&lt;/strong&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
MSP Error: 29511&amp;nbsp; Failure creating local group IUSR_DEVPLYSQL01 
&lt;li&gt;
MSP Error: 29528&amp;nbsp; The setup has encountered an unexpected error while Setting
Internal Properties. The error is: Fatal error during installation. 
&lt;li&gt;
&amp;nbsp;MSP Error: 29534&amp;nbsp; Service 'MSSQL$QAEAM' could not be started. Verify that
you have sufficient privileges to start system services. The error code is (52) You
were not connected because a duplicate name exists on the network. Go to System in
Control Panel to change the computer name and try again. 
&lt;li&gt;
MSP Error: 29538&amp;nbsp; SQL Server Setup did not have the administrator permissions
required to rename a file: f:\MSSQL\DATA\distmdl1.ldf. To continue, verify that the
file exists, and either grant administrator permissions to the account currently running
Setup or log in with an administrator account. Then run SQL Server Setup again. 
&lt;li&gt;
MSP Error: 29537&amp;nbsp; SQL Server Setup has encountered the following problem: [Microsoft][SQL
Native Client][SQL Server]Cannot find the object 'dm_exec_query_resource_semaphores',
because it does not exist or you do not have permission.. To continue, correct the
problem, and then run SQL Server Setup again.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
1st failure was a really strange one:
&lt;/p&gt;
&lt;p&gt;
MSP Error: 29511&amp;nbsp; Failure creating local group IUSR_DEVPLYSQL01
&lt;/p&gt;
&lt;p&gt;
As I didn't need IIS on this machine I deleted the account as it already existed,
mistake there, this lead to the 2nd failure.
&lt;/p&gt;
&lt;p&gt;
2nd failure was on:
&lt;/p&gt;
&lt;p&gt;
MSP Error: 29528&amp;nbsp; The setup has encountered an unexpected error while Setting
Internal Properties. The error is: Fatal error during installation.
&lt;/p&gt;
&lt;p&gt;
This turned out to be a registry issue with deleting items, while not specifically
addressing CU 5, it did fix the issue: &lt;font color=#191970&gt;(&lt;/font&gt;&lt;a href="http://support.microsoft.com/kb/925976" target=_blank&gt;&lt;font color=#0000ff&gt;http://support.microsoft.com/kb/925976&lt;/font&gt;&lt;/a&gt;&lt;font color=#191970&gt;).&lt;/font&gt;
&lt;/p&gt;
&lt;h3 id=tocHeadRef&gt;For a stand-alone installation of SQL Server 2005
&lt;/h3&gt;
&lt;p&gt;
&lt;table class="list ol"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=number&gt;
1.&lt;/td&gt;
&lt;td class=text&gt;
Remove the following registry subkeys that store SID settings: 
&lt;table class="list ul"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=bullet&gt;
•&lt;/td&gt;
&lt;td class=text&gt;
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.&lt;var&gt;X&lt;/var&gt;\Setup\SQLGroup&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=bullet&gt;
•&lt;/td&gt;
&lt;td class=text&gt;
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.&lt;var&gt;X&lt;/var&gt;\Setup\AGTGroup&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=bullet&gt;
•&lt;/td&gt;
&lt;td class=text&gt;
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.&lt;var&gt;X&lt;/var&gt;\Setup\FTSGroup 
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=bullet&gt;
•&lt;/td&gt;
&lt;td class=text&gt;
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.&lt;var&gt;X&lt;/var&gt;\Setup\ASGroup 
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;b&gt;Note&lt;/b&gt; In these registry subkeys, MSSQL.&lt;var&gt;X&lt;/var&gt; is a placeholder for the
corresponding value on a specific system. You can determine MSSQL.&lt;var&gt;X&lt;/var&gt; on
a specific system by examining the value of the MSSQLSERVER registry entry under the
following registry subkey: 
&lt;div class=indent&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\Instance
Names\SQL\
&lt;/div&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=number&gt;
2.&lt;/td&gt;
&lt;td class=text&gt;
Reinstall the SQL Server 2005 service pack or the SQL Server 2005 hotfix package.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/p&gt;
&lt;p&gt;
Finally after all that it installed, as easy as could be !
&lt;/p&gt;
&lt;p&gt;
---------------------------------------
&lt;/p&gt;
&lt;p&gt;
Experienced this error too:
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;MSP Error: 29534&amp;nbsp; Service 'MSSQL$QAEAM' could not be started. Verify that
you have sufficient privileges to start system services. The error code is (52) You
were not connected because a duplicate name exists on the network. Go to System in
Control Panel to change the computer name and try again.
&lt;/p&gt;
&lt;p&gt;
-------------
&lt;/p&gt;
&lt;p&gt;
The above error is because of the tcp/ip stack being modified by polyserve, i correct
this with a change in the registry networking settings.&amp;nbsp; I've had some questions
on what I corrected, basically under Polyserve the virtual IP "floats" to whatever
node is active, if for some reason, it is moved from one node to another, and not
removed from the previous node...you run into an issue where that other node will
not start, you'll receive some very nice errors like these in the sql server errorlog:
&lt;/p&gt;
&lt;p&gt;
2008-05-10 20:52:42.83 Server&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A self-generated certificate
was successfully loaded for encryption.&lt;br&gt;
2008-05-10 20:52:42.85 Server&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Error: 26024, Severity:
16, State: 1.&lt;br&gt;
2008-05-10 20:52:42.85 Server&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Server failed to listen
on 10.10.48.40 &amp;lt;ipv4&amp;gt; 40020. Error: 0x2741. To proceed, notify your system administrator.&lt;br&gt;
2008-05-10 20:52:42.85 Server&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Error: 17182, Severity:
16, State: 1.&lt;br&gt;
2008-05-10 20:52:42.85 Server&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TDSSNIClient initialization
failed with error 0x2741, status code 0xa.&lt;br&gt;
2008-05-10 20:52:42.85 Server&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Error: 17182, Severity:
16, State: 1.&lt;br&gt;
2008-05-10 20:52:42.85 Server&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TDSSNIClient initialization
failed with error 0x2741, status code 0x1.&lt;br&gt;
2008-05-10 20:52:42.85 Server&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Error: 17826, Severity:
18, State: 3.&lt;br&gt;
2008-05-10 20:52:42.85 Server&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Could not start the network
library because of an internal error in the network library. To determine the cause,
review the errors immediately preceding this one in the error log.&lt;br&gt;
2008-05-10 20:52:42.85 Server&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Error: 17120, Severity:
16, State: 1.&lt;br&gt;
2008-05-10 20:52:42.85 Server&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL Server could not spawn
FRunCM thread. Check the SQL Server error log and the Windows event logs for information
about possible related problems.&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;
This error happens because you can't have two sql server instances use the same IP
Address, makes perfect sense when you think through it.
&lt;/p&gt;
&lt;p&gt;
The real problem now that you have root cause, is how to fix it.&amp;nbsp; Polyserve performs
some complex tasks with "swapping" registry entries and moving instances, this is
not an easy issue to correct and you must be careful.&amp;nbsp; These errors rarely happen
on version 3.6, but were pretty common on 3.4.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
I'd adise to engage HP / Polyserve support to correct the issue, and then as you become
familiar with the SQL Registry and how polyserve works, this can be corrected quite
easily yourself.
&lt;/p&gt;
&lt;p&gt;
Depending on the scope of the problem you may only need to focus on the SuperSocketNetLib
IP address entries.&amp;nbsp; The server that won't start will most likely contain the
virtual ip, and there will be another node in your cluster already running the IP.&amp;nbsp;
Sometimes you can edit the IP1, IP2 and IP3 to just reflect your Public, Private and
loop Back IP Address.&amp;nbsp; But before starting SQL, Double check where your SQL Instances
are "pointing" if they are pointing to the virtul root, than you have&amp;nbsp;a bigger
registry issue, and you must correct that too.
&lt;/p&gt;
&lt;p&gt;
Very much fun !
&lt;/p&gt;
&lt;p&gt;
-----------&lt;br&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=483f655a-470a-43b5-b9c1-3de5df2d5c31" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,483f655a-470a-43b5-b9c1-3de5df2d5c31.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=3c3df593-66a4-4b44-bbad-73f7b958f829</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,3c3df593-66a4-4b44-bbad-73f7b958f829.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,3c3df593-66a4-4b44-bbad-73f7b958f829.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=3c3df593-66a4-4b44-bbad-73f7b958f829</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
4 - Way Quad Core, 16 Processors, DONE.
</p>
        <p>
Tonight is the fail over from 4 way dual core to 4 way quad core.
</p>
        <p>
Interesting suttle changes as well, the dual core is AMD NUMA Architecture, the Quad
core is Intel - NON NUMA.
</p>
        <p>
Interesting to see, how the machine handles the load.  The current SQL Server
is maxed out, all cpu's hitting 100% for sustained times, 4-6 hours.  Very little
locking and blocking or disk i/o, all waits are on the SOS_SCHEDULER_YIELD.
</p>
        <p>
Very difficult to recreate this issue or test in the lab, so the results are due tomorrow
!
</p>
        <p>
exhaustion.
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=3c3df593-66a4-4b44-bbad-73f7b958f829" />
      </body>
      <title>4 - Way Quad Core, 16 Processors, DONE ! </title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,3c3df593-66a4-4b44-bbad-73f7b958f829.aspx</guid>
      <link>http://www.lifeasbob.com/2008/01/27/4WayQuadCore16ProcessorsDONE.aspx</link>
      <pubDate>Sun, 27 Jan 2008 23:18:43 GMT</pubDate>
      <description>&lt;p&gt;
4 - Way Quad Core, 16 Processors, DONE.
&lt;/p&gt;
&lt;p&gt;
Tonight is the fail over from 4 way dual core to 4 way quad core.
&lt;/p&gt;
&lt;p&gt;
Interesting suttle changes as well, the dual core is AMD NUMA Architecture, the Quad
core is Intel - NON NUMA.
&lt;/p&gt;
&lt;p&gt;
Interesting to see, how the machine handles the load.&amp;nbsp; The current SQL Server
is maxed out, all cpu's hitting 100% for sustained times, 4-6 hours.&amp;nbsp; Very little
locking and blocking or disk i/o, all waits are on the SOS_SCHEDULER_YIELD.
&lt;/p&gt;
&lt;p&gt;
Very difficult to recreate this issue or test in the lab, so the results are due tomorrow
!
&lt;/p&gt;
&lt;p&gt;
exhaustion.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=3c3df593-66a4-4b44-bbad-73f7b958f829" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,3c3df593-66a4-4b44-bbad-73f7b958f829.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=09f8e8db-f218-4b25-9eb8-bbbdd8883a00</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,09f8e8db-f218-4b25-9eb8-bbbdd8883a00.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,09f8e8db-f218-4b25-9eb8-bbbdd8883a00.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=09f8e8db-f218-4b25-9eb8-bbbdd8883a00</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Been fighting this issue where a SQL Server 2005 instance hosted on polyserve would
not allow the password policy enforcement.
</p>
        <p>
Something of a fix:  <a href="http://support.microsoft.com/kb/926642/en-us">http://support.microsoft.com/kb/926642/en-us</a></p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=09f8e8db-f218-4b25-9eb8-bbbdd8883a00" />
      </body>
      <title>SQL Server instances hosted in Polyserve - check policy not working</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,09f8e8db-f218-4b25-9eb8-bbbdd8883a00.aspx</guid>
      <link>http://www.lifeasbob.com/2008/01/27/SQLServerInstancesHostedInPolyserveCheckPolicyNotWorking.aspx</link>
      <pubDate>Sun, 27 Jan 2008 23:14:40 GMT</pubDate>
      <description>&lt;p&gt;
Been fighting this issue where a SQL Server 2005 instance hosted on polyserve would
not allow the password policy enforcement.
&lt;/p&gt;
&lt;p&gt;
Something of a fix:&amp;nbsp; &lt;a href="http://support.microsoft.com/kb/926642/en-us"&gt;http://support.microsoft.com/kb/926642/en-us&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=09f8e8db-f218-4b25-9eb8-bbbdd8883a00" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,09f8e8db-f218-4b25-9eb8-bbbdd8883a00.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=e8a0c0a6-bf09-4ce8-bea4-9faec91a1130</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,e8a0c0a6-bf09-4ce8-bea4-9faec91a1130.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,e8a0c0a6-bf09-4ce8-bea4-9faec91a1130.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=e8a0c0a6-bf09-4ce8-bea4-9faec91a1130</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Chasing 4 problems.
</p>
        <ol>
          <li>
Polyserve failing / restarting SQL Instances due to no network traffic.</li>
          <li>
Incorrect durations reporting in SQL Server traces (very large numbers).</li>
          <li>
Information message logged in SQL Server 2005 log file, The time stamp counter of
CPU on scheduler id 2 is not synchronized with other CPUs.</li>
          <li>
Alert from Monitoring on, Windows cannot obtain the domain controller name for your
computer network. (An unexpected network error occurred.). Group Policy processing
aborted.</li>
          <li>
I've been chasing these errors, without much support from network or other engineers,
basically the same as the mechanic who tells you the engine light is on, but all is
ok !</li>
        </ol>
        <p>
Well finally found a customer advisory from HP and all 4 problems roll up to the same
issue:
</p>
        <p>
----------------------------
</p>
        <div dir="ltr" align="left">SUPPORT COMMUNICATION - CUSTOMER ADVISORY<br /><br />
Document ID: c01075682<br /><br />
Version: 2<br />
Advisory: (Revision) HP ProLiant Servers Using Dual-Core or More Than One Single-Core
AMD Opteron Processor May Experience Incorrect Operating System Time When Running
Systems That Use the System Time Stamp Counter<br />
NOTICE: The information in this document, including products and software versions,
is current as of the Release Date. This document is subject to change without notice.<br /><br />
Release Date: 2007-07-16<br /><br />
Last Updated: 2007-07-16<br /><br /><br />
DESCRIPTIONDocument Version Release Date Details<br />
2 07/16/2007 Added Sun Solaris information.<br />
1 06/08/2007 Original Document Release.<br /><br />
HP ProLiant servers configured with Dual-Core or with more than one single-core AMD
Opteron processor may encounter Time Stamp Counter (TSC) drift in certain conditions.
The TSC is used by some operating systems as a timekeeping source. Each processor
core, whether it is a single-core processor or a dual-core processor, includes a TSC.
The condition where the TSC for different processor cores becomes unsynchronized is
known as TSC drift.<br /><br />
Note : The potential for TSC drift if the proper recommendations are not applied when
using AMD Opteron 200-series, Opteron 800-series, Opteron 1200-series, Opteron 2200-series
and Opteron 8200-series processors is not specific to HP ProLiant servers. 
<br /><br />
Whether or not the system is affected by TSC drift depends on the specific ProLiant
server generation, the number and type of AMD Opteron processors installed, the operating
system, and whether the AMD PowerNow! feature is being utilized. TSC drift can result
in different symptoms and behaviors based on the operating system environment, as
detailed below:<br /><br />
Microsoft Windows Server 2003 
<br />
This condition affects operations such as network communications and performance monitoring
tasks that are sensitive to system time. For example, Microsoft Active Directory domain
controllers can report an Unexpected Network Error (Event ID 1054) with the following
description: 
<br /><br />
Event Description: 
<br />
Windows cannot obtain the domain controller name for your computer network. (An unexpected
network error occurred.). Group Policy processing aborted. 
<br /><br />
In addition, a negative PING time or larger than actual PING time may be returned
after issuing the PING command. The negative PING time occurs because of a Time Stamp
Counter drift occurring on AMD Opteron platforms which include more than one processor
core.<br /><br />
Red Hat Enterprise Linux, SUSE Linux Enterprise Server and Sun Solaris 
<br />
Earlier releases of Red Hat Enterprise Linux 4, SUSE Linux Enterprise Server 9 and
Sun Solaris 10 will default to using the Time Stamp Counter as the default time source
for gettimeofday() calls. When the time stamp counter is used, the server may exhibit
some inconsistent timekeeping and the following symptoms may be observed: 
<br /><br />
When a command such as "date" is typed, an incorrect system time may be displayed. 
<br />
The kernel may report an error similar to the following: 
<br />
kernel: Your time source seems to be instable or some driver is hogging interrupts 
<br /><br />
Newer operating systems typically do not use the TSC by default if other timers are
available in the system which can be used as a timekeeping source. Other available
timers include the PM_Timer and the High Precision Event Timer (HPET). All HP ProLiant
servers include the PM_Timer, and the latest generation of HP ProLiant servers supporting
AMD Opteron 2200-series and 8200-series processors support HPET. These timers are
not affected by this condition. New operating systems such as Red Hat Enterprise Linux
(RHEL) 5, SUSE Linux Enterprise Server (SLES) 10, and Microsoft Windows Server 2008
(codename Longhorn) are not affected by this issue. 
<br /><br />
Note: Some applications (e.g., Microsoft SQL Server 2005) use the Time Stamp Counter
even though the operating system is configured to use a different timer as the timekeeping
source. To determine if a specific application uses the TSC as the timekeeping source,
contact the software vendor. 
<br /><br />
SCOPE<br /><br />
Any HP ProLiant server configured with more than one single-core AMD Opteron processor
or configured with one (or more) dual-core AMD Opteron processors running the following
operating systems:<br /><br />
Microsoft Windows Server 2003 (any edition) 
<br />
Microsoft Windows Server 2003 x64 Edition (any edition) 
<br />
Red Hat Enterprise Linux 4(x86) or earlier 
<br />
Red Hat Enterprise Linux 4 (AMD64/EM64T) or earlier 
<br />
SUSE Linux Enterprise Server 9 32-bit (x86) or earlier 
<br />
SUSE Linux Enterprise Server 9 64-bit (AMD64/EM64T) or earlier 
<br />
Sun Solaris 9 
<br />
Sun Solaris 10 3/05 (32/64 bit) 
<br />
VMware ESX Server 2.5.4 (or earlier)<br /><br />
Note: VMware ESX Server 2.5.4 with the January 2007 (or later) patch is not affected.
VMware ESX Server 3.0.0 (or later) uses an alternate mechanism for timekeeping and
is not affected by the potential TSC drift. 
<br /><br />
Note : The issue does not affect systems with only one single-core processor installed. 
<br /><br />
The following servers are affected when running an affected operating system:<br /><br />
HP ProLiant BL465c Blade Server 
<br />
HP ProLiant BL685c Blade Server 
<br />
HP ProLiant BL25p G2 server 
<br />
HP ProLiant BL45p G2 server 
<br />
HP ProLiant DL145 G3 server 
<br />
HP ProLiant DL385 G2 server 
<br />
HP ProLiant DL585 G2 server 
<br />
HP ProLiant DL365 server 
<br />
HP ProLiant ML115 server 
<br /><br />
The following servers are affected ONLY when using the AMD PowerNow! feature and running
an affected operating system:<br /><br />
ProLiant BL25p Blade Server 
<br />
HP ProLiant BL45p Blade Server 
<br />
HP ProLiant DL145 G2 server 
<br />
HP ProLiant DL385 server 
<br />
HP ProLiant DL585 server<br /><br />
The following operating systems are not affected by TSC drift because these operating
systems do not use the TSC as a timekeeping source:<br /><br />
Microsoft Windows Server 2008 (codename Longhorn) 
<br />
Red Hat Enterprise Linux 5 (x86) 
<br />
Red Hat Enterprise Linux 5 (AMD64/EM64T) 
<br />
SUSE Linux Enterprise Server 10 (x86) 
<br />
SUSE Linux Enterprise Server 10 (AMD64/EM64T) 
<br />
VMware ESX Server 3.0.0 (or later)<br /><br />
RESOLUTION<br /><br />
To ensure proper operation of tasks sensitive to system time, perform either of the
following actions, based on the operating system environment:<br /><br />
Microsoft Windows Server 2003 (any edition) 
<br />
Edit the BOOT.ini file and add the parameter "/usepmtimer," then reboot the server.
Adding the "/usepmtimer" parameter to the BOOT.INI file configures the Windows operating
system to use the PM_TIMER, rather than the Time Stamp Counter. 
<br /><br />
Note: When installing the AMD Opteron Processor with AMD PowerNow! Technology driver
Version 1.3.2.16 (or later) from AMD, the BOOT.INI file will automatically be updated
with the "/usepmtimer" parameter. While the driver itself does not resolve this issue,
the installation process will make the necessary changes to the BOOT.INI file to prevent
the issue from occurring. 
<br /><br />
Red Hat Enterprise Linux 4 or SUSE Linux<br />
Add the boot parameter "clock=pmtmr" to the /boot/grub/menu.lst file. Adding the "clock=pmtmr"
to the /boot/grub/menu.lst file configures the operating system to use the PM_TIMER,
rather than the Time Stamp Counter. 
<br /><br />
Sun Solaris 
<br />
If using Sun Solaris 10 3/05 apply the 1/06 (Update 1) Patch (or later). To locate
the latest version of the Solaris 10 patch, click on the following Sun Microsystems
URL, and click on the desired patch: 
<br /><br /><a title="blocked::http://www.sun.com/downloads" href="http://www.sun.com/downloads" rel="nofollow">http://www.sun.com/downloads</a><br /><br />
VMware 
<br />
If using VMware ESX Server 2.5.4, update to the January 2007 Patch (or later). To
locate the latest version of the ESX Server 2.5.4 patch, click on the following VMware
URL, and click on the desired patch. 
<br /><br /><a title="blocked::http://www.vmware.com/download/esx/esx2_patches.html" href="http://www.vmware.com/download/esx/esx2_patches.html" rel="nofollow">http://www.vmware.com/download/esx/esx2_patches.html</a>#c4317
RECEIVE PROACTIVE UPDATES : Receive support alerts (such as Customer Advisories),
as well as updates on drivers, software, firmware, and customer replaceable components,
proactively via e-mail through HP Subscriber's Choice. Sign up for Subscriber's Choice
at the following URL: 
<br /><a title="blocked::http://www.hp.com/go/myadvisory" href="http://www.hp.com/go/myadvisory" rel="nofollow">http://www.hp.com/go/myadvisory</a><br /><br />
SEARCH TIP : For hints on locating similar documents on HP.com, refer to the Search
Tips document: <a title="blocked::http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00638154" href="http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00638154" rel="nofollow">http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00638154</a> . 
<br />
To search for additional advisories related to System Time, use the following search
string: 
<br />
+ProLiant +Advisory +System Time<br />
KEYWORDS: time sync, clock, track time 
</div>
        <p>
-------------------------------------
</p>
        <p>
          <a href="http://support.microsoft.com/kb/931279/en-us">http://support.microsoft.com/kb/931279/en-us</a> 
</p>
        <p>
          <br />
 
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=e8a0c0a6-bf09-4ce8-bea4-9faec91a1130" />
      </body>
      <title>4 problems - 1 Bug, CPU Drift</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,e8a0c0a6-bf09-4ce8-bea4-9faec91a1130.aspx</guid>
      <link>http://www.lifeasbob.com/2008/01/03/4Problems1BugCPUDrift.aspx</link>
      <pubDate>Thu, 03 Jan 2008 20:55:22 GMT</pubDate>
      <description>&lt;p&gt;
Chasing 4 problems.
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
Polyserve failing / restarting SQL Instances due to no network traffic.&lt;/li&gt;
&lt;li&gt;
Incorrect durations reporting in SQL Server traces (very large numbers).&lt;/li&gt;
&lt;li&gt;
Information message logged in SQL Server 2005 log file, The time stamp counter of
CPU on scheduler id 2 is not synchronized with other CPUs.&lt;/li&gt;
&lt;li&gt;
Alert from Monitoring on, Windows cannot obtain the domain controller name for your
computer network. (An unexpected network error occurred.). Group Policy processing
aborted.&lt;/li&gt;
&lt;li&gt;
I've been chasing these errors, without much support from network or other engineers,
basically the same as the mechanic who tells you the engine light is on, but all is
ok !&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
Well finally found a customer advisory from HP and all 4 problems roll up to the same
issue:
&lt;/p&gt;
&lt;p&gt;
----------------------------
&lt;/p&gt;
&lt;div dir=ltr align=left&gt;SUPPORT COMMUNICATION - CUSTOMER ADVISORY&lt;br&gt;
&lt;br&gt;
Document ID: c01075682&lt;br&gt;
&lt;br&gt;
Version: 2&lt;br&gt;
Advisory: (Revision) HP ProLiant Servers Using Dual-Core or More Than One Single-Core
AMD Opteron Processor May Experience Incorrect Operating System Time When Running
Systems That Use the System Time Stamp Counter&lt;br&gt;
NOTICE: The information in this document, including products and software versions,
is current as of the Release Date. This document is subject to change without notice.&lt;br&gt;
&lt;br&gt;
Release Date: 2007-07-16&lt;br&gt;
&lt;br&gt;
Last Updated: 2007-07-16&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
DESCRIPTIONDocument Version Release Date Details&lt;br&gt;
2 07/16/2007 Added Sun Solaris information.&lt;br&gt;
1 06/08/2007 Original Document Release.&lt;br&gt;
&lt;br&gt;
HP ProLiant servers configured with Dual-Core or with more than one single-core AMD
Opteron processor may encounter Time Stamp Counter (TSC) drift in certain conditions.
The TSC is used by some operating systems as a timekeeping source. Each processor
core, whether it is a single-core processor or a dual-core processor, includes a TSC.
The condition where the TSC for different processor cores becomes unsynchronized is
known as TSC drift.&lt;br&gt;
&lt;br&gt;
Note : The potential for TSC drift if the proper recommendations are not applied when
using AMD Opteron 200-series, Opteron 800-series, Opteron 1200-series, Opteron 2200-series
and Opteron 8200-series processors is not specific to HP ProLiant servers. 
&lt;br&gt;
&lt;br&gt;
Whether or not the system is affected by TSC drift depends on the specific ProLiant
server generation, the number and type of AMD Opteron processors installed, the operating
system, and whether the AMD PowerNow! feature is being utilized. TSC drift can result
in different symptoms and behaviors based on the operating system environment, as
detailed below:&lt;br&gt;
&lt;br&gt;
Microsoft Windows Server 2003 
&lt;br&gt;
This condition affects operations such as network communications and performance monitoring
tasks that are sensitive to system time. For example, Microsoft Active Directory domain
controllers can report an Unexpected Network Error (Event ID 1054) with the following
description: 
&lt;br&gt;
&lt;br&gt;
Event Description: 
&lt;br&gt;
Windows cannot obtain the domain controller name for your computer network. (An unexpected
network error occurred.). Group Policy processing aborted. 
&lt;br&gt;
&lt;br&gt;
In addition, a negative PING time or larger than actual PING time may be returned
after issuing the PING command. The negative PING time occurs because of a Time Stamp
Counter drift occurring on AMD Opteron platforms which include more than one processor
core.&lt;br&gt;
&lt;br&gt;
Red Hat Enterprise Linux, SUSE Linux Enterprise Server and Sun Solaris 
&lt;br&gt;
Earlier releases of Red Hat Enterprise Linux 4, SUSE Linux Enterprise Server 9 and
Sun Solaris 10 will default to using the Time Stamp Counter as the default time source
for gettimeofday() calls. When the time stamp counter is used, the server may exhibit
some inconsistent timekeeping and the following symptoms may be observed: 
&lt;br&gt;
&lt;br&gt;
When a command such as "date" is typed, an incorrect system time may be displayed. 
&lt;br&gt;
The kernel may report an error similar to the following: 
&lt;br&gt;
kernel: Your time source seems to be instable or some driver is hogging interrupts 
&lt;br&gt;
&lt;br&gt;
Newer operating systems typically do not use the TSC by default if other timers are
available in the system which can be used as a timekeeping source. Other available
timers include the PM_Timer and the High Precision Event Timer (HPET). All HP ProLiant
servers include the PM_Timer, and the latest generation of HP ProLiant servers supporting
AMD Opteron 2200-series and 8200-series processors support HPET. These timers are
not affected by this condition. New operating systems such as Red Hat Enterprise Linux
(RHEL) 5, SUSE Linux Enterprise Server (SLES) 10, and Microsoft Windows Server 2008
(codename Longhorn) are not affected by this issue. 
&lt;br&gt;
&lt;br&gt;
Note: Some applications (e.g., Microsoft SQL Server 2005) use the Time Stamp Counter
even though the operating system is configured to use a different timer as the timekeeping
source. To determine if a specific application uses the TSC as the timekeeping source,
contact the software vendor. 
&lt;br&gt;
&lt;br&gt;
SCOPE&lt;br&gt;
&lt;br&gt;
Any HP ProLiant server configured with more than one single-core AMD Opteron processor
or configured with one (or more) dual-core AMD Opteron processors running the following
operating systems:&lt;br&gt;
&lt;br&gt;
Microsoft Windows Server 2003 (any edition) 
&lt;br&gt;
Microsoft Windows Server 2003 x64 Edition (any edition) 
&lt;br&gt;
Red Hat Enterprise Linux 4(x86) or earlier 
&lt;br&gt;
Red Hat Enterprise Linux 4 (AMD64/EM64T) or earlier 
&lt;br&gt;
SUSE Linux Enterprise Server 9 32-bit (x86) or earlier 
&lt;br&gt;
SUSE Linux Enterprise Server 9 64-bit (AMD64/EM64T) or earlier 
&lt;br&gt;
Sun Solaris 9 
&lt;br&gt;
Sun Solaris 10 3/05 (32/64 bit) 
&lt;br&gt;
VMware ESX Server 2.5.4 (or earlier)&lt;br&gt;
&lt;br&gt;
Note: VMware ESX Server 2.5.4 with the January 2007 (or later) patch is not affected.
VMware ESX Server 3.0.0 (or later) uses an alternate mechanism for timekeeping and
is not affected by the potential TSC drift. 
&lt;br&gt;
&lt;br&gt;
Note : The issue does not affect systems with only one single-core processor installed. 
&lt;br&gt;
&lt;br&gt;
The following servers are affected when running an affected operating system:&lt;br&gt;
&lt;br&gt;
HP ProLiant BL465c Blade Server 
&lt;br&gt;
HP ProLiant BL685c Blade Server 
&lt;br&gt;
HP ProLiant BL25p G2 server 
&lt;br&gt;
HP ProLiant BL45p G2 server 
&lt;br&gt;
HP ProLiant DL145 G3 server 
&lt;br&gt;
HP ProLiant DL385 G2 server 
&lt;br&gt;
HP ProLiant DL585 G2 server 
&lt;br&gt;
HP ProLiant DL365 server 
&lt;br&gt;
HP ProLiant ML115 server 
&lt;br&gt;
&lt;br&gt;
The following servers are affected ONLY when using the AMD PowerNow! feature and running
an affected operating system:&lt;br&gt;
&lt;br&gt;
ProLiant BL25p Blade Server 
&lt;br&gt;
HP ProLiant BL45p Blade Server 
&lt;br&gt;
HP ProLiant DL145 G2 server 
&lt;br&gt;
HP ProLiant DL385 server 
&lt;br&gt;
HP ProLiant DL585 server&lt;br&gt;
&lt;br&gt;
The following operating systems are not affected by TSC drift because these operating
systems do not use the TSC as a timekeeping source:&lt;br&gt;
&lt;br&gt;
Microsoft Windows Server 2008 (codename Longhorn) 
&lt;br&gt;
Red Hat Enterprise Linux 5 (x86) 
&lt;br&gt;
Red Hat Enterprise Linux 5 (AMD64/EM64T) 
&lt;br&gt;
SUSE Linux Enterprise Server 10 (x86) 
&lt;br&gt;
SUSE Linux Enterprise Server 10 (AMD64/EM64T) 
&lt;br&gt;
VMware ESX Server 3.0.0 (or later)&lt;br&gt;
&lt;br&gt;
RESOLUTION&lt;br&gt;
&lt;br&gt;
To ensure proper operation of tasks sensitive to system time, perform either of the
following actions, based on the operating system environment:&lt;br&gt;
&lt;br&gt;
Microsoft Windows Server 2003 (any edition) 
&lt;br&gt;
Edit the BOOT.ini file and add the parameter "/usepmtimer," then reboot the server.
Adding the "/usepmtimer" parameter to the BOOT.INI file configures the Windows operating
system to use the PM_TIMER, rather than the Time Stamp Counter. 
&lt;br&gt;
&lt;br&gt;
Note: When installing the AMD Opteron Processor with AMD PowerNow! Technology driver
Version 1.3.2.16 (or later) from AMD, the BOOT.INI file will automatically be updated
with the "/usepmtimer" parameter. While the driver itself does not resolve this issue,
the installation process will make the necessary changes to the BOOT.INI file to prevent
the issue from occurring. 
&lt;br&gt;
&lt;br&gt;
Red Hat Enterprise Linux 4 or SUSE Linux&lt;br&gt;
Add the boot parameter "clock=pmtmr" to the /boot/grub/menu.lst file. Adding the "clock=pmtmr"
to the /boot/grub/menu.lst file configures the operating system to use the PM_TIMER,
rather than the Time Stamp Counter. 
&lt;br&gt;
&lt;br&gt;
Sun Solaris 
&lt;br&gt;
If using Sun Solaris 10 3/05 apply the 1/06 (Update 1) Patch (or later). To locate
the latest version of the Solaris 10 patch, click on the following Sun Microsystems
URL, and click on the desired patch: 
&lt;br&gt;
&lt;br&gt;
&lt;a title=blocked::http://www.sun.com/downloads href="http://www.sun.com/downloads" rel=nofollow&gt;http://www.sun.com/downloads&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
VMware 
&lt;br&gt;
If using VMware ESX Server 2.5.4, update to the January 2007 Patch (or later). To
locate the latest version of the ESX Server 2.5.4 patch, click on the following VMware
URL, and click on the desired patch. 
&lt;br&gt;
&lt;br&gt;
&lt;a title=blocked::http://www.vmware.com/download/esx/esx2_patches.html href="http://www.vmware.com/download/esx/esx2_patches.html" rel=nofollow&gt;http://www.vmware.com/download/esx/esx2_patches.html&lt;/a&gt;#c4317
RECEIVE PROACTIVE UPDATES : Receive support alerts (such as Customer Advisories),
as well as updates on drivers, software, firmware, and customer replaceable components,
proactively via e-mail through HP Subscriber's Choice. Sign up for Subscriber's Choice
at the following URL: 
&lt;br&gt;
&lt;a title=blocked::http://www.hp.com/go/myadvisory href="http://www.hp.com/go/myadvisory" rel=nofollow&gt;http://www.hp.com/go/myadvisory&lt;/a&gt; 
&lt;br&gt;
&lt;br&gt;
SEARCH TIP : For hints on locating similar documents on HP.com, refer to the Search
Tips document: &lt;a title=blocked::http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00638154 href="http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00638154" rel=nofollow&gt;http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00638154&lt;/a&gt; . 
&lt;br&gt;
To search for additional advisories related to System Time, use the following search
string: 
&lt;br&gt;
+ProLiant +Advisory +System Time&lt;br&gt;
KEYWORDS: time sync, clock, track time 
&lt;/div&gt;
&lt;p&gt;
-------------------------------------
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://support.microsoft.com/kb/931279/en-us"&gt;http://support.microsoft.com/kb/931279/en-us&lt;/a&gt;&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&lt;br&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=e8a0c0a6-bf09-4ce8-bea4-9faec91a1130" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,e8a0c0a6-bf09-4ce8-bea4-9faec91a1130.aspx</comments>
      <category>Polyserve</category>
      <category>SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.lifeasbob.com/Trackback.aspx?guid=3669b81f-8b0c-4034-811b-162c0791eeb5</trackback:ping>
      <pingback:server>http://www.lifeasbob.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.lifeasbob.com/PermaLink,guid,3669b81f-8b0c-4034-811b-162c0791eeb5.aspx</pingback:target>
      <dc:creator>Bob Admin</dc:creator>
      <wfw:comment>http://www.lifeasbob.com/CommentView,guid,3669b81f-8b0c-4034-811b-162c0791eeb5.aspx</wfw:comment>
      <wfw:commentRss>http://www.lifeasbob.com/SyndicationService.asmx/GetEntryCommentsRss?guid=3669b81f-8b0c-4034-811b-162c0791eeb5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Using Polyserve clustering technology from HP, you need to ensure to have Automount
off.
</p>
        <p>
This is done using diskpart from a command prompt.
</p>
        <p>
DiskPart
</p>
        <p>
Automount disable
</p>
        <img src="http://www.lifeasbob.com/content/binary/diskpart.JPG" border="0" />
        <p>
If this is not disabled you end up with "phantom" drives, and it can cause problems
with everything from virus scanning, back up software and windows itself !  Basically
what happens is the SAN Administrator zones new storage, somewhere the server reboots
(got to love that!), than you have a new drive letter, but basically it is a "phantom"
and netbackup, virus scanning or some other program attempts to access the new volume
through it's drive letter, and the software abends....nice !
</p>
        <p>
Removing the drive letter is usually a straight forward process of using Disk Management
or Veritas Enterprise Disk Manager and removing the drive letter, but I've had issues
with this and had to drop do a command prompt and use DiskMount to remove it.
</p>
        <img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=3669b81f-8b0c-4034-811b-162c0791eeb5" />
      </body>
      <title>Polyserve - Disk Management Diskpart automount disable / off</title>
      <guid isPermaLink="false">http://www.lifeasbob.com/PermaLink,guid,3669b81f-8b0c-4034-811b-162c0791eeb5.aspx</guid>
      <link>http://www.lifeasbob.com/2008/01/03/PolyserveDiskManagementDiskpartAutomountDisableOff.aspx</link>
      <pubDate>Thu, 03 Jan 2008 18:35:20 GMT</pubDate>
      <description>&lt;p&gt;
Using Polyserve clustering technology from HP, you need to ensure to have Automount
off.
&lt;/p&gt;
&lt;p&gt;
This is done using diskpart from a command prompt.
&lt;/p&gt;
&lt;p&gt;
DiskPart
&lt;/p&gt;
&lt;p&gt;
Automount disable
&lt;/p&gt;
&lt;img src="http://www.lifeasbob.com/content/binary/diskpart.JPG" border=0&gt; 
&lt;p&gt;
If this is not disabled you end up with "phantom" drives, and it can cause problems
with everything from virus scanning, back up software and windows itself !&amp;nbsp; Basically
what happens is the SAN Administrator zones new storage, somewhere the server reboots
(got to love that!), than you have a new drive letter, but basically it is a "phantom"
and netbackup, virus scanning or some other program attempts to access the new volume
through it's drive letter, and the software abends....nice !
&lt;/p&gt;
&lt;p&gt;
Removing the drive letter is usually a straight forward process of using Disk Management
or Veritas Enterprise Disk Manager and removing the drive letter, but I've had issues
with this and had to drop do a command prompt and use DiskMount to remove it.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.lifeasbob.com/aggbug.ashx?id=3669b81f-8b0c-4034-811b-162c0791eeb5" /&gt;</description>
      <comments>http://www.lifeasbob.com/CommentView,guid,3669b81f-8b0c-4034-811b-162c0791eeb5.aspx</comments>
      <category>Polyserve</category>
    </item>
  </channel>
</rss>