Mohammad Dayyan
Mohammad Dayyan

Reputation: 22408

Reset Identity column to zero in SQL Server?

How can I reset the Identity column of a table to zero in SQL Server?

Edit:

How can we do it with LINQ to SQL ?

Upvotes: 15

Views: 28335

Answers (6)

Jeff Patterson
Jeff Patterson

Reputation: 44

To accomplish the same task in a SQL Compact table use:

db.CommandText = "ALTER TABLE MyTable ALTER COLUMN Id IDENTITY (1,1)";   
db.ExecuteNonQuery(  );

Upvotes: 0

diachedelic
diachedelic

Reputation: 2359

Generic extension method:

    /// <summary>
    /// Reseeds a table's identity auto increment to a specified value
    /// </summary>
    /// <typeparam name="TEntity">The row type</typeparam>
    /// <typeparam name="TIdentity">The type of the identity column</typeparam>
    /// <param name="table">The table to reseed</param>
    /// <param name="seed">The new seed value</param>
    public static void ReseedIdentity<TEntity, TIdentity>(this Table<TEntity> table, TIdentity seed)
        where TEntity : class
    {
        var rowType = table.GetType().GetGenericArguments()[0];

        var sqlCommand = string.Format(
            "dbcc checkident ('{0}', reseed, {1})",
            table.Context.Mapping.GetTable(rowType).TableName, 
            seed);

        table.Context.ExecuteCommand(sqlCommand);
    }

Usage: myContext.myTable.ReseedIdentity(0);

Upvotes: 3

Nithesh Narayanan
Nithesh Narayanan

Reputation: 11765

use this code

DBCC CHECKIDENT(‘tableName’, RESEED, 0)

Upvotes: 3

Randy Minder
Randy Minder

Reputation: 48402

DBCC CHECKIDENT (MyTable, RESEED, NewValue)

You can also do a Truncate Table, but, of course, that will remove all rows from the table as well.

To do this via L2S:

db.ExecuteCommand("DBCC CHECKIDENT('MyTable', RESEED, NewValue);");

Or, you can call a stored procedure, from L2S, to do it

Upvotes: 26

Andrew
Andrew

Reputation: 27294

DBCC CHECKIDENT ( ‘databasename.dbo.yourtable’,RESEED, 0)

More info : http://msdn.microsoft.com/en-us/library/ms176057.aspx

Upvotes: 9

Blake Taylor
Blake Taylor

Reputation: 9341

Use the LINQ to SQL ExecuteCommand to run the required SQL.

db.ExecuteCommand("DBCC CHECKIDENT('table', RESEED, 0);");

LINQ is a data-source agnostic query language and has no built-in facilities for this kind of data-source specific functionality. LINQ to SQL doesn't provide a specific function to do this either AFAIK.

Upvotes: 6

Related Questions