我MSSQL server 2008
用作我的 Web 应用程序 (JIRA) 的数据库,几天前我通过数据库插入了一些值。现在,当我尝试通过 UI 添加值时,出现以下异常。
com.atlassian.jira.exception.DataAccessException:org.ofbiz.core.entity.GenericEntityException:插入时:[GenericEntity:CustomFieldOption][id,10815][sequence,7][value,TEST][customfieldconfig,10400][parentoptionid ,null][disabled,N][customfield,10300](执行以下操作时出现 SQL 异常:INSERT INTO dbo.customfieldoption(ID、CUSTOFIELD、CUSTOMFIELDCONFIG、PARENTOPTIONID、SEQUENCE、customvalue、optiontype、disabled)VALUES (?, ?, ? , ?, ?, ?, ?, ?) (违反主键约束“PK_customfieldoption”。无法在对象“dbo.customfieldoption”中插入重复键。重复键值为 (10815)。))
我相信这是因为主键是一个自动增量值,我通过查询插入了这个值。有人可以帮我解决这个问题吗?我想重置自动增量序列会有所帮助。