Skip to main content

Create or reset the identity value of a column in sql server


Introduction:
In my previous article I have explained about Convert string to upper,lower and title case using c#.net. In this article I am going to explain about how to set the identity value to a column in a table.

Explanation:
If you want a column in your table to auto increment then you may achieve it using IDENTITY property. Syntax to create a IDENTITY column and a example query is given below.
Syntax:

IDENTITY( seed , increment )

Seed -Is the value that is used for the very first row loaded into the table.

Increment - Is the incremental value that is added to the identity value of the previous row that was loaded.

You must specify both the seed and increment or neither. If neither is specified, the default is (1,1).

Example:

CREATE TABLE MyTable(Id INT IDENTITY(1,1),Name VARCHAR(100))


To get the current identity value of a table below command is used.
Syntax:

DBCC CHECKIDENT (tablename, NORESEED)

Example:

DBCC CHECKIDENT (MyTable, NORESEED)
To set the value of the identity column to a particular value as per our wish for example 5000,you can use the below command:
Syntax:

DBCC CHECKIDENT (‘Table name’, RESEED, ‘New Identity Value’)

Example:

DBCC CHECKIDENT (MyTable, RESEED, 4999)

Comments

Popular posts from this blog

Code to create log files in C#.Net|Asp.Net

Introduction: In my previous article I have explained about how to create, delete and check whether the directory exists using C#.Net . In this article I am going to explain about  How to create log files in C#.Net. Explanation: Log files are useful to track any runtime errors and exceptions in all the applications. Below code will code will get the Message and Pagename as the input and creates the log file in that date. For that first i have imported below two namespaces.

Dynamically programmatically add contols at run time Asp.Net

Introduction: In my previous article I have explained about What is View State? How to Store and retrieve values from View State . In this article I am going to explain how to add controls programmatically on run time. Explanation: This example adds a text box and button to a Web Forms page at run time. It also dynamically binds an event handler to the button's   Click   event. The handler displays the values of the dynamically generated text box. The controls are added into a   Panel   Web server control, which acts as a placeholder. The controls are separated in the panel with line breaks (HTML <BR> elements), which are added to the panel using the   LiteralControl   control.

Code To Convert rupees(numbers) into words using C#.Net

Introduction: In my previous article I have explained about how to validate emailid using javascript . In this article I am going to explain about code used to convert rupees(numbers) into words using C#.Net . Explanation: For explanation purpose I have a page. It has a textbox to input the numbers. And when you click on the convert to words button then it will convert the input numbers into words and shows it in the below label. Below is the C# code used to do this functionality. public static string NumbersToWords( int inputNumber) {     int inputNo = inputNumber;     if (inputNo == 0)         return "Zero" ;     int [] numbers = new int [4];     int first = 0;     int u, h, t;     System.Text. StringBuilder sb = new System.Text. StringBuilder ();     if (inputNo < 0)     { ...