Forum Replies Created

Viewing 15 posts - 40,996 through 41,010 (of 49,552 total)

  • RE: SQL Server

    Can you run a checkDB on model?

    Does a restart of SQL fix the problem?

    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: Help, my database is corrupt. Now what?

    free_mascot (2/18/2009)


    ???If database is corrept and we are taking backup.... does backup too have corruption?

    Yes. This is why it's so important to find corruption early so that there are clean...

    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: DELETE locks UPDATE

    Leo Leong (2/18/2009)


    i don't think this is what i want.

    I don't think so either. Why are you disabling lock escalation?

    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: Corrupted log file - SQL Server 2005 Express

    lior (2/18/2009)


    Hi

    Thanks for the reply

    I ran the command in Management Studio and the output I got was just "Command(s) completed successfully."

    Is that what you asked me to do ?

    Yup. That's...

    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: Help, my database is corrupt. Now what?

    ALZDBA (2/18/2009)


    I know (and have activate on all our db) PAGE_VERIFY at db level.

    Is my perception correct that this would detect any issue as soon as it occurs ?

    Which...

    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: DELETE locks UPDATE

    Check the lock types taken for both. You'll probably find that the delete has taken a lower granularity lock than the update

    sys.dm_os_tran_locks

    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: How To Remove the Backup Schedule

    Duplicate post. No replies to this thread please. Direct replies to:http://www.sqlservercentral.com/Forums/Topic659079-357-1.aspx

    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: How To Remove the Backup Schedule

    Duplicate post. No replies to this thread please. Direct replies to:http://www.sqlservercentral.com/Forums/Topic659079-357-1.aspx

    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: High disk queue length

    What's your disk layout? (No of drives, raid level, DB-related content)?

    SAN or local storage?

    What do the following two perfmon counters look like (broken down by drive)

    Physical disk\ avg sec/read

    Physical disk\...

    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: How to shrink a transaction log in a published database

    Aaron Gonzalez (2/17/2009)


    The funny thing here is that the database is configured for snapshot replication, not for transactional replication.

    Then there's some left-over, misconfigured transactional replication somewhere. Snapshot doesn't use 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: dbcc checkdb takes up all my buffer cache

    Then set the server's max memory. You should do that anyway on a 64-bit server because of SQL's tendency to eat memory.

    How much memory on the 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: Can I push an Index hint down into a base tables from a view

    colin Leversuch-Roberts (2/17/2009)


    whether you can pass one index hint i have no idea - never tried that.

    You can't. Plan guides are limited to the hints that appear in...

    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: Moving TempDB files

    When you run ALTER DATABASE ... MOVE ... SQL doesn't actually move any files. If it's a user database that you've done the alteration to, you have to take...

    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: Corrupted log file - SQL Server 2005 Express

    Please run the following and post the results.

    DBCC CHECKDB (< Database Name > ) WITH NO_INFOMSGS, ALL_ERRORMSGS

    Is that database a critical production DB that you're taking log backups of?

    Are there...

    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: Help, my database is corrupt. Now what?

    Ninja's_RGR'us (2/17/2009)


    That begs this question... assuming you have a corrupt backup of msdb, can you rebuild it then reimport the data back in?

    You should, providing you can get the data...

    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 - 40,996 through 41,010 (of 49,552 total)