﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / SQL Server 2008 / T-SQL (SS2K8)  / identity column / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Sat, 25 May 2013 01:10:56 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: identity column</title><link>http://www.sqlservercentral.com/Forums/Topic1381106-392-1.aspx</link><description>Check the initial value before the insert:[code="sql"]DBCC CHECKIDENT('myTable',NORESEED)[/code]If it is not 1, your creation script has initial value that is not 1.To reset identity to start from 1 use this:[code="sql"]DBCC CHECKIDENT('myTable',RESEED,0) [/code]But it is better to fix the creation script.</description><pubDate>Mon, 05 Nov 2012 18:04:57 GMT</pubDate><dc:creator>Vedran Kesegic</dc:creator></item><item><title>RE: identity column</title><link>http://www.sqlservercentral.com/Forums/Topic1381106-392-1.aspx</link><description>Check the source where the data is coming from in the package and your transformations, if your inserting a column from the source into the identity column in the destination it will take what ever the values are from the source, it wont start from 1.</description><pubDate>Mon, 05 Nov 2012 08:19:13 GMT</pubDate><dc:creator>anthony.green</dc:creator></item><item><title>identity column</title><link>http://www.sqlservercentral.com/Forums/Topic1381106-392-1.aspx</link><description>hi,my identity column  should start with 1,1 .but when i insert data from package , it starts 1133.even if i drop table and create again and insert data from package,it starts with 1133any help</description><pubDate>Mon, 05 Nov 2012 08:17:47 GMT</pubDate><dc:creator>harri.reddy</dc:creator></item></channel></rss>