Forum Replies Created

Viewing 6 posts - 1 through 7 (of 7 total)

  • RE: Database Change Management Best Practices : Achieving an Automated App

    This looks like it's going to be a very good series of articles.  I'm always looking for ways to improve how we manage database change.  We are a small team, with...


    Dave Goerlich

    Ross Environmental Services

  • RE: Unique Identifier: Usage and Limitations

    Yup, exactly. FWIW, I have a database that I'm currently converting from using Identity columns to GUIDS, as it it going to become a replicated database. In order...


    Dave Goerlich

    Ross Environmental Services

  • RE: Unique Identifier: Usage and Limitations

    Dave,

    To insert a new record, and 'capture' the new GUID, in a similar manner to using the @@Identity, try this:

    DECLARE @newGUID as UniqueIdentifier

    SELECT @newGUID = NEWID()

    INSERT INTO....  VALUES

    (

    @newGUID,

    ...

    )

    SELECT @newGUID

    END

    This will...


    Dave Goerlich

    Ross Environmental Services

  • RE: Scheduled Frequency of a Job < every 1 minute?

    Nicholas,

    Thanks a bunch for your help.  Based on your input, I put together a proof of concept in our development enviornment, even to the point of dropping a table out...


    Dave Goerlich

    Ross Environmental Services

  • RE: Scheduled Frequency of a Job < every 1 minute?

    That's a good idea, thanks.  Any idea if I kick it off when SQL starts (which won't be often, since this is in a 24/7 environment), will I have any...


    Dave Goerlich

    Ross Environmental Services

  • RE: Need "Source Code Control" system that supports SPs

    We are building VB.NET and ASP.NET applications, using VisualStudio.NET, and I currently wear both DBA and lead developer hats in our current environment.  Therefore I have a full install of VS.NET...


    Dave Goerlich

    Ross Environmental Services

Viewing 6 posts - 1 through 7 (of 7 total)