Forum Replies Created

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

  • RE: Should Production Databases Be in a VCS?

    I am surely controversial in my opinions about version control systems here and that is fine by me.

    Let me start with this. I consider complete models, including the associated...

  • RE: Logging Tables

    Kristen-173977 (10/15/2015)


    peter-757102 (10/15/2015)


    The App writes a new file using a filename that contains a timestamp and UUD. Then another asynchronous process pulls those files in, batches them and takes care...

  • RE: Logging Tables

    Kristen-173977 (10/15/2015)


    How does the APP write to a text file, for later bulk-import, in a multi-user friendly way? Isn't it going to have to open the file, lock it,...

  • RE: Logging Tables

    Eric M Russell (10/14/2015)


    One design consideration for an application event logging table is the acceptable latency between when the event occurs and when the record is available for querying. If...

  • RE: Logging Tables

    @Kristen-173977

    When building a log table there is nearly always a chronological order that can be exploited. Create the clustered index such that date and time (or sequence number)...

  • RE: Logging Tables

    For me it is very much dependent on what gets logged and how frequent log events happen.

    1) Which details are relevant and are known at logging time and which can...

  • RE: Who's a Good Developer?

    A good developer works towards keeping designs and implementations as simple and understandable as can be. And provides solutions that are complete as based on what is actually important. There...

  • RE: Is It Worth Writing Unit Tests?

    I agree that it adds complexity, but I'm not sure what you mean when you say it limits what can architecturally work. All the same things are possible with...

  • RE: Is It Worth Writing Unit Tests?

    ZZartin (7/23/2015)


    peter-757102 (7/23/2015) solution.

    The reasoning that it's a small step from testing to unit tests I cannot subscribe to.

    Some factors that are needed to make the step are:

    * Persisting and...

  • RE: Is It Worth Writing Unit Tests?

    cgeswein (7/23/2015)


    Running tests to see if the code works as intended is common sense, even part of coding itself and has always been since the first computers.

    Indeed, so why not...

  • RE: Is It Worth Writing Unit Tests?

    ZZartin (7/23/2015)


    peter-757102 (7/23/2015)


    ZZartin (7/23/2015)


    Shouldn't a better question be, can you write code perfectly on the first try 100% of the time?

    If the answer is anything other than a definitely yes...

  • RE: Is It Worth Writing Unit Tests?

    ZZartin (7/23/2015)


    Shouldn't a better question be, can you write code perfectly on the first try 100% of the time?

    If the answer is anything other than a definitely yes then yes...

  • RE: Is It Worth Writing Unit Tests?

    Ed Elliott (7/23/2015)


    Have you looked at tSQLt? It really makes writing unit tests a lot simpler and easier.

    I talk about why it is good and makes it easier to write...

  • RE: Is It Worth Writing Unit Tests?

    ben.pittoors (7/23/2015)


    peter-757102 (7/23/2015)


    ...

    Code that is testable, regardless of the quality of the tests, already leads to better design. And don't get me started on 'design decisions'... if you make...

  • RE: Is It Worth Writing Unit Tests?

    John Mitchell-245523 (7/23/2015)


    peter-757102 (7/23/2015)


    Tests can only prove that ** when ** the developer works precise, the implementation does what the developer thinks it should do (which changes as soon the...

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