Forum Replies Created

Viewing 15 posts - 40,036 through 40,050 (of 49,552 total)

  • RE: Master database corruption

    You'd restore the backup of master that you have from Server A. The fact that you have a second server is immaterial.

    http://msdn.microsoft.com/en-us/library/ms190190.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 avoid Deadlock in sql server

    The full procedures please (both of the ones involved in the deadlock), plus table structure and index definitions. If you can post the deadlock graph (produced by traceflag 1222) as...

    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: Data Missing in SQL Server Logs

    Probably means that SQL went down or hung at 1:13.

    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: Data Missing in SQL Server Logs

    sbvenkatesh77 (4/2/2009)


    We are working in 24/7 production support. One day afternoon, we found that sql server was hangs.

    We checked in the Windows Applicaton Event Viewer....

    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 avoid Deadlock in sql server

    Without seeing the queries in question, the only advice I can give you is to ensure there are no unnecessary commands within the transactions, ensure that your queries are as...

    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: TempDB - TempDev will not shrink - Help!

    Did you run the 'update usage' that the kb article refered to?

    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: IO Statistics

    Paul White (4/2/2009)


    Not so sure. The article you wrote simply shows that a range seek/scan can cover all the rows in a table. Well, yeah 😉

    I was challenging...

    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: IO Statistics

    Paul White (4/2/2009)


    My understanding is that a 'seek' always selects one row (either by key or rid).

    A scan may be a scan of any part of an index, which involves...

    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: Running Stored Procedure gives error --> The identifier that starts with is too long. Maximum length is 128.

    Please don't cross post. It just wastes peoples time and fragments replies.

    No replies to this thread please. Direct replies to: http://www.sqlservercentral.com/Forums/Topic688600-338-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: IO Statistics

    Grant Fritchey (3/27/2009)


    1. The first query, by a long shot. Although it has a higher number of physical reads. But if both these queries are accessing the same data then...

    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 would a SQL Server 2005 database lose a few days data?

    sunny Brook (4/1/2009)


    First of all, to PREVENT this from happening gain, please PUT the DBs into FULL recovery mode and Schedule Regular Transcatinal LOG backup.

    Full recovery is not going to...

    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: SET TRANSACTION ISOLATION Ignored in SP Executed with Autocommit

    David Rueter (4/1/2009)


    For example, this does NOT work:

    CREATE PROCEDURE spTest

    AS

    BEGIN

    SET TRANSACTION ISOLATION LEVEL READ COMMITTED

    --We expect isolation level to be READ COMMITTED

    ...do something...

    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: Disappearing DBCC Errors

    It sounds like you have intermittent IO errors. Are you seeing any errors in the SQL error log or the windows error log?

    SAN or direct attached storage? Raid level?

    If I...

    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: IO Statistics

    suhasini.m (3/27/2009)


    2. What does Scan Count exactly mean. And howz it related to IO.?

    The scan count is actually not that useful. It should indicate how many times an object is...

    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: SQl server gets Restarted when i run the DBCC Check table command

    ebenraja (4/1/2009)


    Let me know the ways to find if the tables are corrupted as if i run the check command the server restarts.

    What is the exact command that you are...

    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,036 through 40,050 (of 49,552 total)