Viewing 6 posts - 1 through 6 (of 6 total)
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...
July 28, 2004 at 9:19 am
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...
June 28, 2004 at 4:03 pm
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...
June 28, 2004 at 12:59 pm
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...
June 3, 2004 at 6:28 am
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...
June 2, 2004 at 2:01 pm
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...
April 19, 2004 at 8:58 am
Viewing 6 posts - 1 through 6 (of 6 total)