Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi All I Use a Sql Server Compact Edition DataBase File For Store the Data in My Windows Application Software.In this DataBase I have A Table With Identity Field.When I Insert A Record To the Table, identity Code increment Automatically.But When I Delete All Records From Table,And Insert Records Again,Identity Field don't Start From 1. I Want Reset this Value to 1.

Please Help Me

share|improve this question

2 Answers

up vote 9 down vote accepted

DBCC does not exist in CE. Try

create table t1 
(
id int identity,
val int
);

insert into t1 (val) values (1);
insert into t1 (val) values (2);

select * from t1


ALTER TABLE t1 alter column id
    IDENTITY (1,1)

insert into t1 (val) values (1);
insert into t1 (val) values (2);

select * from t1
share|improve this answer
DBCC CHECKIDENT (mytable, RESEED, 1)

Btw, this is a duplicate of this one: http://stackoverflow.com/questions/510121/reset-autoincrement-in-sqlserver-after-delete

I would have posted this as comment by I've got no reputation.

share|improve this answer
The question was about SQL CE. Don't you dare closing it. – cdonner Mar 17 '10 at 15:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.