Hi All,
I have added a uniqueidentifier column to an existing table in Microsoft SQL Server.
All I want to do is populate the existing records with new Guids. I have tried things based on this to no avail:
Any help much appreciated.
Ben
I have added a uniqueidentifier column to an existing table in Microsoft SQL Server.
All I want to do is populate the existing records with new Guids. I have tried things based on this to no avail:
Code:
@GUID uniqueidentifier
AS
UPDATE sysx_groups SET GUID=@GUID
RETURN
Any help much appreciated.
Ben