Forum Replies Created

Viewing 15 posts - 48,976 through 48,990 (of 49,552 total)

  • RE: Advertising

    The only problem I have with the page peel it that if I run the mouse over it, IE crashes. It's a little slower, but since I browse while working,...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Texas Hold''Em

    Ah, thanks. That's great. I don't want to miss out on the party.

    Now, where's my boss........

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Texas Hold''Em

    I don't suppose there's any way to use 2 codes when registering?

    I've got a code that gets me a massivly discounted rate (because I submitted an abstract for the...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Using index for bitwise comparison

    Any fuinction applied to a column will prevent index seeks, even if it's something simple like column+0

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: what else to Tune

    Check the queries for unnecessary work been done or inefficient queries

    Check the blocking on the server

    Check for hardware bottlenecks (disk, memory, cpu, network)

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: SS 2000 Version Info - 8.0.2039

    It's SQL Server 2000 sp4 running on Windows Server 2003 build 3790, SP1.

    the 8.0.2039 refers to SQL, the build and teh sp that @@version returns refers to the underlying operating...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: stored procedure error

    Can you post the text of the stored proc?

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Need to copy a block of records within same table

    If timestampstr is an automatically generated value, then it's easy. don't mention the column in the insert or the select.

    It it's not autogenerated, then you need to find out...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Snapshots

    If you need a point-in-time copy of a database that must survive hardware failures and natural disasters and exist for several months, then just restore a backup and set it...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Snapshots

    I'm a little confused. Does this mean that the snapshot will be updated each time data in the source data file is changed?

    Not necessarily. Sorry if I confused, let me...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Snapshots

    No, because a snapshot is not a real copy of a database. It's a virtual copy where pages that are changed in the source database are copied to the snapshot before...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Performance issue with SQL Server 2000

    As GilaMonster says, check your perfmon counters on your disk i/o - I'd figure that was your problem.

    My guess is memory is the primary bottleneck.

    With frequent inserts, updates and...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Snapshots

    One thing that I like about snapshots is the ability to combine then with mirroring and turn your inactive failover server into a reporting server.

    As for on my production server,...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Locks/Process ID

    They might be blocking in TempDB, especuially if both are creating temp tables or running queries that require hash tables or work tables.

    When you notice blocking, take a note of...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Is this true? (Order by goof up)

    The only way to guarentee the order of a resultset from a query is to put an order by on the query. You cannot depend on the order that the...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 15 posts - 48,976 through 48,990 (of 49,552 total)