Please show me the way to reset auto increment field in a table of the Advantage Database Server 11.0.
In SQL Server, it works like this:
DBCC CHECKIDENT ('tableName', RESEED, 0);
GO
UPDATE: What I want is to write consecutive values (1,2,3,4....) into the autoincrement column.
When I use explicit SQL to insert the values
INSERT INTO TABLE1 (ID) VALUES (1);
I expect to see an "1" in the table. But I get next identity value instead.
SOLUTION is at the advantage support forum