Forum Replies Created

Viewing 15 posts - 9,376 through 9,390 (of 49,552 total)

  • RE: Rollback on Rebuild index does not end (KILL)

    You won't be able to drop it.

    You can try a restart of SQL. It's not a general solution for rollbacks, only for the specific case of what looks like a...

    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: restoration issue

    charipg (4/9/2014)


    A previous restore operation was interrupted and did not complete processing on file 'abc_data'. Either restore the backup set that was interrupted or restart the restore sequence.

    i.e. Restore 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: SQLOS: Runnable, Running, Wait List

    smallmoney (4/8/2014)


    My guess is the credit card authorization guy would go first.

    I would hope not. I would hope that the first person who was ready goes first. Otherwise, you...

    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 does >+ do?

    WithDrawalDate >+ GETDATE()

    meaning

    WithDrawalDate > +GETDATE()

    and since + is the default

    WithDrawalDate > GETDATE()

    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 does >+ do?

    Nothing. It's not an operator. However + designates a positive numeric value (like - designates a negative number), it's optional, but it's allowed and spaces are permitted between 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: Use of create statistics

    yuvipoy (4/8/2014)


    Here comes another question, if the recommended index relationship in DTA shows this informations, should not we run the statistics?

    You're mixing up statistics and indexes. They are two very...

    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: Backup Compression Restrictions

    rollercoaster43 (4/8/2014)


    2 Previous versions of SQL Server cannot read compressed backups.

    This one isn't really a restriction. You can never restore down-version anyway, no matter whether the backup is compressed or...

    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: Use of create statistics

    Someone ran the Database Tuning Advisor against your database and probably accepted all recommendations without doing the testing which they should have done.

    But, that's not a statistics object (what 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: Use of create statistics

    Automatic create stats will only create single column stats. There are cases (rare ones) where you may want multi-column stats. Or you may want to turn off auto create 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: SQL Server Read ismore

    GilaMonster (4/7/2014)


    Please, can you run the query against the actual production tables, take the resultant execution plan and do a find/replace over the XML to obfuscate the table names if...

    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 Memory is 70% & growing Fast

    What the hell gives you the idea that there's a memory leak?

    Let's see...

    Go and do some reading on how SQL uses its memory and how 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: Possible to write a trigger to monitor for specific privileges being granted?

    Try a DDL trigger on the DDL_SERVER_SECURITY_EVENTS event category.

    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: rebuild index for 1 table at 1 time?

    ALTER INDEX ALL ON <Table Name> REBUILD

    or

    ALTER INDEX <index name> ON <Table Name> REBUILD

    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: Out Of Memory Exception

    I will repeat myself...

    That is a .net error. SQL Server is not written in .net, hence it's not a SQL Server error.

    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 Memory is 70% & growing Fast

    sashif0 (4/8/2014)


    Verify the processor affinity and IO affinity being used.

    They should be at the defaults. They're also unrelated to memory usage.

    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 - 9,376 through 9,390 (of 49,552 total)