Forum Replies Created

Viewing 15 posts - 11,386 through 11,400 (of 49,552 total)

  • RE: Update statistics job is failing

    Update stats on that table manually, see if you get the same error. If so, update stats one by one, see which one gives you the error. Look at what...

    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: Creating Index on all FK (more than 15 per table)

    aleksandar.ivanovski (10/7/2013)


    If there is no single column index per key it will last long right?

    It could, yes.

    My question was, if there is no way to insert/update/delete rows in some 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: Update statistics job is failing

    DBCC CheckDB WITH NO_INFOMSGS, ALL_ERRORMSGS, DATA_PURITY

    If you do a SELECT * FROM TableName do you get the same 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: Are the posted questions getting worse?

    wolfkillj (10/7/2013)


    Well, there is a definition of "wonderful" as "unusual" or "of a sort that causes wonder", without the value judgment of the more common definition as "excellent; great; marvelous",...

    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: Sharepoint Slow, Queries Recompiling everytime

    thisted (10/7/2013)


    I was under the impression that when I would see the 'create procedure' in the sp_whoisactive that meant the SP's were recompiling. My bad. What does that mean...

    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: Sharepoint Slow, Queries Recompiling everytime

    There's nothing there to suggest anything is recompiling. In fact, if those procedures were in the middle of a recompile they couldn't be causing blocking as they'd still be 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: Creating Index on all FK (more than 15 per table)

    Maybe. Test it and see if that index helps with the performance of the application. If it does, implement it. If it doesn't, don't implement it. Either way, it's not...

    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 make the checkbox stays checked when double click

    enriquezreyjoseph (10/4/2013)


    BUT i want checkboxes to behave like radio button(thou it seem stupid but i have my own reason why i am using it)

    That's generally a bad idea. Anyone who'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: Shrink log file in re index job running state....

    Don't shrink the log.

    Take a read through this: http://www.sqlservercentral.com/articles/Administration/64582/

    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?

    Jack Corbett (10/7/2013)


    I actually had a recruiter contact me about a contract in NYC with a title of Data Architect that they wanted to pay 45/hr for.

    That's actually...

    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: Qourum disk running low on disk space

    Jeff Moden (10/5/2013)


    I have a similar problem that turns out to be some rather inefficient code that truncates several very large tables and reloads ALL of the data from an...

    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: disable /enable indices? Is it worth it?

    curious_sqldba (10/6/2013)


    Can we disable PK which is nc index?thanks

    Do you want to disable data integrity constraints in your table? Do you want to potentially allow bad data in and have...

    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: Total/Target memory

    Not enough information to tell. A single data point is never enough to say anything decisive.

    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 Restore from SQL Express backup?

    JimReid (10/6/2013)


    Anyway, SQL seems very difficult to work with

    Bear in mind that SQL is a server product, it's more like Exchange or Lync than Office or Visual Studio.

    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: disable /enable indices? Is it worth it?

    Drop the clustered index = recreate the entire table and rebuild all nonclustered indexes

    Create the clustered index = recreate the entire table (again) and rebuild all nonclustered indexes (again)

    Given 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 - 11,386 through 11,400 (of 49,552 total)