> For the complete documentation index, see [llms.txt](https://kythuat.dtechvn.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kythuat.dtechvn.com/cai-dat-dtech/ban-service/kiem-tra-khoa-ban-dich-vu.md).

# KIỂM TRA KHÓA BẢN DỊCH VỤ

```sql
// Đ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'
```
