SQL Server 2005 - Developer Edition (32)
Windows XP SP2 Professional
I'd like to be able to do this:
CREATE TABLE x1
(
col UNIQUEIDENTIFIER DEFAULT(NEWSEQUENTIALID())
)
GO
DECLARE @y UNIQUEIDENTIFIER
INSERT x1
OUTPUT @y = inserted.col
DEFAULT VALUES
GO
Faster Development
Improved Performance
Mainly, performance -- no need for table variables or temp tables