发布:2022/12/26 17:05:21作者:管理员 来源:本站 浏览次数:1014
当 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 2014 - 2024 柏港建站平台 ejk5.com. 渝ICP备16000791号-4