Forum Replies Created

Viewing 15 posts - 1 through 15 (of 819 total)

  • RE: What Will 2017 Bring?

    The multi platform environment for SQL Server is exciting. If the drivers client side are designed correctly then the applications themselves should be agnostic to which platform (Linux or...

  • RE: moving sql2005 database to sql2014

    Should work OK. Try it on a test instance (you have one of course).

    The compatibility level of the restored database will be at the 2005 level if I remember...

  • RE: Faster Versions and More Support

    GeorgeCopeland (12/13/2016)


    The release cadence may be increasing but the issues remain the same. I recommend upgrading vigorously, say 3-6 months after a release so there is enough time to find...

  • RE: Faster Versions and More Support

    One possible downside of the fast release pace is the expense of upgrading. Paying new license fee each year or two is going to be very unattractive for some...

  • RE: Change Stored Procedure Automaticly

    jonas.gunnarsson 52434 (11/22/2016)


    Nice feature using dbo.sp_HelpText.

    Note, that all CREATE is changed to ALTER!

    My proc used to contain CREATE TABLE and now says ALTER TABLE. Is this script why?...

  • RE: What is Normal?

    I'm all in favor of using identity column surrogate keys. They're narrow, non-volatile, ever-increasing and unique.

    IDENTITY, by itself, is not guaranteed to be unique. Takes a unique constraint...

  • RE: What is Normal?

    Phil Factor (11/22/2016)


    There's nothing that says a table can't have more than one unique index on it.

    it certainly can. It is no crime but it is a sign...

  • RE: What is Normal?

    Stephanie I have a structure for shipped orders. When shipped we instant archive the order there and remove it from the active orders structure. For me this does...

  • RE: What is Normal?

    I have been accused of over normalization. "Why all of these tables?" I was asked what was the cost of adding tables. I took two days and...

  • RE: Introducing the Set-based Loop

    Ed Wagner (10/10/2016)


    The first step to getting out of the RBAR mindset is to recognize that you have it.

    Kind of like any other addiction. First step is...

  • RE: Indexing Foreign Keys

    Given things like your [Customers] and [Orders] tables you would have to have a unique index on [Customers].[CustomerID] in order to set up the FK from the [Orders] table. ...

  • RE: A Case FOR Cursors...

    g.brennan (9/9/2016)


    It's not so much a case for cursors as education by/for designers in using the right tools for a given use case.

    Most developers begin with a row-by-row education then...

  • RE: Hunting in Packs

    Gary Varga (4/21/2016)


    TomThomson (4/21/2016)


    ...And a plethora of newly hyped old ideas contributes a lot to software development failure: the misunderstanding of things like "extreme programming", "agile", and other rather ancient...

  • RE: Hunting in Packs

    On one WinForms project that I remember there was a very long process that made the app appear dead. We got complaints. The developer added a progress bar...

  • RE: Auto-suggesting foreign keys and data model archaeology

    Eric M Russell (1/27/2016)


    I assume the goal of inferring foreign key relationships is for documentation purposes...

    Actually FKs for the purpose of documentation only seems like a bad idea.

    The FK should...

Viewing 15 posts - 1 through 15 (of 819 total)