Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 SqlCe4 数据库上运行 DBCC CHECKIDENT,但它不会让我这样做。
我需要重置身份列,因为它搞砸了。我认为因为 IDENTITY 已关闭,数据导入已完成,然后 IDENTITY 再次打开,所以我猜它不同步
SQL CE 4 中没有 DBCC CHECKIDENT。
您需要使用 ALTER TABLE。
ALTER TABLE [MyTable] ALTER COLUMN [IdentityColumn] IDENTITY (999,1)。