查看: 672|回复: 1
|
不能insert record into a table for SQL Server.
[复制链接]
|
|
当我要insert a record into a table in SQL Server, 就会有error message "Cannot insert explicit value for identity column in table 'TACLTABLE' when IDENTITY_INSERT is set to OFF." 我不知道要怎样set the IDENTITY_INSEERT to ON? |
|
|
|
|
|
|
|
发表于 9-3-2006 02:31 PM
|
显示全部楼层
你是否尝试在一个已经 set 成 Identity 的 column 里输入资料? Identity 是会自动输入资料 (根据你的 Indentity seed).
如果要输入自己的资料... 可以这样写:
SET IDENTITY_INSERT [table name] ON
INSERT INTO [table name] ([column 1], [column 2])
VALUES ('x', 'xx') |
|
|
|
|
|
|
| |
本周最热论坛帖子
|