> 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/sql-server/identity_insert-table.md).

# identity\_insert table

```sql
-- Code demo
SET IDENTITY_INSERT TableA ON -- Bật chế độ không cho insert
... INSERT ON TableA ...  -- Lệnh insert thực hiện được
SET IDENTITY_INSERT TableA OFF -- Tắt chế độ có thể insert được


```
