This is my Technical area of troubleshooting and learning new Programming skills and many more. Here you will find answers for many new technologies like asp.net 2.0/3.5,4.0 C# access, mysql, Amazon Webservice ,Sql-server, JD Edwards, SAS, Salesforce, APIs, MVC and many more. please visit & discuss.
Tuesday, January 25, 2011
Alter table add identity column
If there is exising filed you want to change
Alter
Table temp_inscsv Drop Column id
if not want to add a brand new use pnly following:-
Alter Table temp_inscsv Add id int identity(1,1) primary key
No comments:
Post a Comment