// Đoạn lệnh kiểm tra
select Name from DRegistry2 where Name = 'FileContentLIC'
//Đoạn copy khóa từ database gốc sang database khác
declare @key varbinary(max)
select @key=Value from [HoangKha_PhuQuoc].dbo.DRegistry2 where Name = 'FileContentLIC'
update DRegistry2
set value=@key
where Name = 'FileContentLIC'