Forum Replies Created

Viewing 15 posts - 8,326 through 8,340 (of 49,552 total)

  • RE: Trigger is not working as expected

    How do you know that there's table-level locking being used?

    Deadlock graph please, table definitions, index definitions.

    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: Attach DBs from a restored file on a disk

    Make sure the files aren't read-only, make sure the folder isn't read-only (check parent folder too). Make sure that the SQL Server service account has full permissions on the files...

    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: OS cache in Sql Server

    Google for mark russinovich windows memory and you'll find a tonne of stuff. That's OS-level memory management though, not SQL's memory management.

    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: One a Week

    Koen Verbeeck (7/29/2014)


    From time to time they organize some evening sessions, but lately they seem to have trouble finding speakers.

    Are you open to remote speakers?

    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: 'Best' HA/DR option to protect against data corruption

    I said nothing implying you should have repaired...

    See if you can get some automated restore tests set up. Restore backups on another server, run CheckDB. Off the prod server means...

    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: OS cache in Sql Server

    What exactly do you mean by 'OS cache'?

    SQL uses memory outside of the buffer pool, but it's no the OS's memory, it's SQL's memory.

    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: 'Best' HA/DR option to protect against data corruption

    Start with regularly tested backups and frequent database integrity checks. You should be running integrity checks often enough that it's caught before ending up in the backups. Or, if 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: Are the posted questions getting worse?

    The Dixie Flatline (7/28/2014)


    Could I get a show of hands of how many people really hate starting a statement with a semicolon? (;WITH) and if so, why? ...

    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 many tests do I need for 2012 after I get my MCITP

    quackhandle1975 (7/28/2014)


    The OED lists an "expert" as:

    [font="Arial Black"]A person who is very knowledgeable about or skilful in a particular area (noun)

    +

    Having or involving a great deal of knowledge 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: How many tests do I need for 2012 after I get my MCITP

    quackhandle1975 (7/28/2014)In answer to your question, possibly an expert has a set level of knowledge? Someone to get the job/task done?

    If that's your definition of expert (just enough...

    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: About Index

    Sometimes you don't want to rebuild an index, no matter what its fragmentation.

    Sometimes the fragmentation doesn't matter.

    The challenge of deciding, automatically, when one can take a huge table completely offline...

    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: Replication Vs Log Shipping Vs Mirroring - Which One Should I Use?

    prasantiki (7/27/2014)


    MIRRORING feature not depricated in SS2012 instead it is enhanced as Always On

    Mirroring is deprecated. Availability Groups is a new feature, not a direct upgrade (it's a mix 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: How many tests do I need for 2012 after I get my MCITP

    quackhandle1975 (7/27/2014)Gail I would be interested to hear your thoughts on why they are not even close to expert level.

    No, you don't want to. 😉

    Tell me, if someone claims 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: Wait Type Suspended Wait Type CXPacket Request Command Insert

    You have an expensive, long-running query. That's about all that can be said from the details given. If you want to know more, figure out (from the DMVs) who's running...

    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: Indexes - Clustered indexed column included in a nonclustered index

    My general rule for this:

    If the clustered index key is needed in the index (to cover a query or to make it useful), then it should be there. If 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

Viewing 15 posts - 8,326 through 8,340 (of 49,552 total)