Creare GUID in SQL Server
SQL Server ha la funzione NEWID che restituisce un uniqueidentifier.
Tra le altre cose è anche compatibile con RFC4122.
Ecco un esempio su come usarlo:
DECLARE @my_id UNIQUEIDENTIFIER
SET @my_id = NEWID()
PRINT @my_id
Io l'ho anche usato per update massivi dentro cicli for, ecc.
Mi è risultato molto comodo.
Se avete bisogno di salvarlo nel database, vi consiglio di creare un campo VARCHAR(255).
Enjoy!
database sql server newid uniqueidentifier
Commentami!