Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Installing SP2 on a 4 way Active Cluster

    I'm not sure whether it's still an issue with Win2003 and SQL2005, but I ran into a problem a few years ago with installing a SQL2000 service pack because I was...

  • RE: Grooming options

    If you're using SQL 2000, I believe DBCC CHECKDB will create long-running transactions (which will cause blocking).  However, if you're running SQL 2005, DBCC CHECKDB will actually create a database...

  • RE: how to check if someone is logged on our website before we restart the machine

    Unfortunately, I don't think IIS Manager provides that information.  However, you could use the Web Service object in Performance Monitor (each website is a separate instance).  The following counters may help.

     Current...

  • RE: Check Your SQL Server Identity

    Scope_Identity() doesn't always work either; when you have an INSTEAD OF INSERT trigger, it will return NULL (in the example below).  You then have to use Ident_Current() or @@Identity or...

Viewing 4 posts - 1 through 4 (of 4 total)