How can I set a Microsoft SQL field as identity but to START with a certain number?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Take a look at this msdn post, the value from which you want to start your identity is called seed.
If you want to do it from the GUI, then you can select that column and in its properties, in the identity specification section look of the IsIdentity and set it to true, then look for Identity Seed and specify the value which ever you want, you can also specify the increment as well.