Forum Replies Created

Viewing 15 posts - 2,221 through 2,235 (of 49,552 total)

  • RE: Sql server standard edition 2016 - alwayson

    Standard Edition AG has a single DB per AG, and two servers only. (same as database mirroring was)

    If you have multiple DBs that you need to make highly available, 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: DBCC Checkdb cannot exclusively lock database

    SQL Guy 1 (10/17/2016)


    Maybe this is the reason?

    No.

    When last did checkDB succeed?

    Can you manually create a database snapshot on that database?

    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 cannot exclusively lock database

    CheckDB shouldn't need to lock the DB. It'll only try to do that if it can't create the usual database snapshot it uses.

    Are there any other messages in the 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: HELP! I've got to give a talk to our local .NET geek meet on SQL server

    aaron.reese (10/17/2016)


    I am thinking I should probably try to cover the following topics

    --Data Type considerations and mapping .NET datatypes to SQL datatypes

    --Indexing strategies (Don't use GUIDs as PK, make sure...

    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?

    Anyone seen the crystal ball?

    http://www.sqlservercentral.com/Forums/FindPost1826636.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: Are the posted questions getting worse?

    jasona.work (10/17/2016)


    Yeah, the company in question stands up every workstation "from scratch," every time. No two PCs are the same model, there's no standardized OS deployment, nothing. It'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: User database corruption - "No catalog entry found for partition X in database Y"

    Gut feel here, an updated resume and a script, export, recreate (and you may not get everything back)

    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: Transaction log is not truncated even after log backup in FULL recovery model

    Why do you say the log isn't being truncated? Where are you looking and what are you expecting to see that you aren't?

    It sounds like you're expecting the file size...

    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: With recompile in the master stored proc

    Since SQL executes those sequentially, there's only one running at a time. If you stop the execution (SSMS stop button or app timeout) then that session stops executing, the 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: With recompile in the master stored proc

    My earlier statements stand.

    Investigate your queries and make sure that what you think is happening is really happening, and targeted recompile hints on the queries are far better than on...

    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: With recompile in the master stored proc

    river1 (10/14/2016)


    Every time I call this procedures I pass difterent parameters and it seems that the query plans demage performance based on this.

    With recompile might fix that, might...

    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: MDF not growing

    I'm no sure what you're asking regarding the unlimited size. A data file won't automatically grow to unlimited (and you wouldn't want it to, that's 16TB). It'll grow by its...

    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: With recompile in the master stored proc

    No, it applies only to the procedure it's on.

    Why are you planning to add it? There's very few good reasons to recompile an entire procedure.

    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: Add data to Clustered Table Or Building Clustered Index after inserting data - Which is better ?

    er.mayankshukla (10/14/2016)


    Now, after the statistics is created on the index, whenever I insert rows to the table, shouldn't the statistics be auto-updated when the number of row inserts reaches 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: executing SP with Output parameters

    That's not an error, it's a warning that nulls are being eliminated due to aggregates.

    Depending on the requirements, that may be a warning you can ignore, or an indication that...

    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 - 2,221 through 2,235 (of 49,552 total)