Search Results

0
votes
3answers
628 views

Increment a uniqueidentifier in TSQL

I am looking for a way to increment a uniqueidentifier by 1 in TSQL. For example, if the id is A6BC60AD-A4D9-46F4-A7D3-98B2A7237A9E, I'd like to be able to select A6BC60AD-A4D9-46F4-A7D3-98B2A7237 …
1
vote

Diagnosing Deadlocks in SQL Server 2005

Will you care if your user profile is a few seconds out of date? A few seconds would definitely be acceptable. It doesn't seem like it would be that long, anyw …
0
votes

Increment a uniqueidentifier in TSQL

Here is one way I've come up with, but I'm hoping there is a better way. LEFT([ID], 19) + RIGHT(CONVERT(uniqueidentifier, CONVERT(binary(16), CONVERT(binary(16), [ID]) + CONVERT(big …