Forum Replies Created

Viewing 15 posts - 16 through 30 (of 154 total)

  • RE: Code smells versus transgressions

    I've used SQLVariant as an EAV when required to "Have the ability to add or remove columns from data objects without changing the data structure, and make sure the data...

  • RE: The MidnightDBAs release Minion Backup

    And why would you make a blanket statement like that?

    Because as I said in the previous comment, shrinking logs should never be a matter of routine.

    There's good stuff in...

  • RE: The MidnightDBAs release Minion Backup

    And it was going so well.

    Features were being described that I could imagine myself using, and then I got to the bottom of the page.

    Shrink logs.

    Why? Why would you...

  • RE: Stairway to Advanced T-SQL Level 5: Turning Data On Its Side Using PIVOT Operator

    I appreciate that this is an example for an exam, and learning how to PIVOT (and UNPIVOT) is important.

    I haven't redone the performance testing recently, but from memory there was...

  • RE: DBCC Shrinkdatabase run every week?

    Maybe a clarification is necessary.

    WHY is shrinking the database weekly so bad?

    Firstly, the database is likely to grow again throughout the week. Growing a database file can be an...

  • RE: Reducing Index Fragmentaion during Inserts

    Just a really simple idea.

    Try setting PAD_INDEX = ON and FILLFACTOR = 80 as an initial step.

    It will grow the index fairly significantly but you'll avoid daily index rebuilds.

    Jeff's suggestion...

  • RE: DBCC Shrinkdatabase run every week?

    The shrink and regrow will result in these files becoming more and more fragmented.

    All I can suggest is that you start providing statistics around the fragmentation of the database files...

  • RE: No catalog entry found for partition ID (MSSQL 2005)

    Just ran into this issue over the weekend on a user database (ID 16). We're running SQL Server 2012 (11.0.3128)

    Fairly comfortable that we don't have corruption as I have run...

  • RE: Are There That Many GUIDs?

    For what its worth...

    We have a redevelopment going on at the moment which is using GUIDs for all the clustered keys. Some of the data is generated through a distributed...

  • RE: The Worst Comments

    Many years ago I found a comment by my boss in the code which read something along the lines of

    -- Don't touch this code

    -- It does fancy statistical maths on...

  • RE: The Number that shouldn't be a number

    Well now I feel a little ashamed.

    I put a duration as a time on a recent project. I had no idea the issues it would cause! We did encounter another...

  • RE: Managerial Moneyball

    When we factor in our own desire to "progress" and "achieve", we see the issue with picking managers solely based on management skills. It creates a ceiling through which we...

  • RE: We're not craftsmen and craftswomen

    Chiming in a little late I know, but FWIW.

    This comes back to a couple of rules that are surfaced very clearly in some of the Agile frameworks, but are still...

  • RE: Runtime Code

    Ultimately we will see more and more of this from the likes of LINQ and other ORM tools.

    Admittedly these aren't particularly complex SQL most of the time, and we can...

  • RE: Five Rules For Sucessful Conversations With DBAs

    I've had many an argument with App Developers about how to access the data, and there's another rule I would like to suggest.

    Don't try and sneak it in. You may...

Viewing 15 posts - 16 through 30 (of 154 total)