当 IDENTITY_INSERT 设置为 OFF 时,不能向表"A" 中的标识列插入显示值。
一般来说是自增ID造成的。
因此可以在数据库insert语句前加上 SET identity_insert tiexie_config on
查询语句之后加上 SET identity_insert tiexie_config off
即可。
例如:
SET identity_insert tiexie_config ON
INSERT INTO [GMIS2000S].[dbo].[tiexie_config] (
[Id],
[Info_Car_Id],
[Tiexie_Num],
[Tiexie_RFID],
[Modify_User_Id],
[Create_User_Id],
[Create_Date],
[Modify_Date],
[Sts]
)
VALUES
(
'',
'',
'HG-004',
'',
NULL,
'',
'2017-08-25 16:30:02.557',
NULL,
'Y'
);
SET identity_insert tiexie_config off
Copyright © 广州京杭网络科技有限公司 2005-2025 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有