Provided that you have a primary key, you can create a unique value by counting the lines. For example (replace #twith the name of your table):
update t
set t.col1 = (select COUNT(*) from
from
If you have varchar(36)or more, you can generate GUIDs that are guaranteed to be unique:
update
set col1 = NEWID()
, . , , :
declare @i int
set @i = 1
update
set col1 = @i
, @i = @i + 1