Need To Have 2 Auto Increment Columns (Seed, Increment)

Dec 11, 2007

Hello,

I Have a table that needs to have 2 unique number.

detail_id and detail_print_id.

detail_id is already an IDENTITY.

both fields need to be different, because when importing, it imports the same data into a table twice, with only a slight data change (and id is not one of the changes).

So I thought i could do the following:

detail_id INT NOT NULL IDENTITY(1,2),
detail_print_id INT NOT NULL IDENTITY(2,2),
--blah blah

that way, the detail_id will always be odd, and the detail_print_id will always be even. however SQL Server 2005 only allows 1 identity per table, and both these fields need to be auto generated when the field is inserted, so as to prevent double data.

is there anyway I can create a int column to auto increment, without the column being an IDENTITY??

also, I would prefer to not have to create a second table with a single column just for this work.

Thanks,
Justin

View 5 Replies


ADVERTISEMENT

Reset The Auto Increment Columns In MSDE

Oct 24, 2001

Can Ne1 tell me how to reset the auto increment colum of a table in the Microsoft Data Engine??, Does ne1 know where to find a free MSDE administration utility.

View 1 Replies View Related

Identity, Seed, Increment

Aug 25, 2005

Iam trying to add a column to an existing table that would be an "identifier". I called it "ReadingNumber" and selected Identity "Yes" and "Identity increment" as 1.
When I add it, it just gives the rows random numbers instead of by the order they were inserted into the database by.....is there a way to autonumber the columns correctly? I have a COLUMN called Date and also one called Time that have the date and Time, but the format is char.
Would I have to convert the date time columns into something SQL understands, sort them ASC or DESC and then do the Identity column add?
Thanks for any help

Edited

View 15 Replies View Related

Reset Increment Seed

Sep 10, 2007

I'm still in the development stage and am frequently deleting all data from all tables and then filling those tables anew. However, the increment seed for identifying fields doesn't reset to 1 (or 0--not sure which). While not important for operation of the database, I would prefer that the field identifiers start with 1 when I am ready to release the database for operation. Is there a way to do this?

I can generate scripts to rebuild the database structure to do this, but scripts aren't generated for database diagrams and the graphical representation of the table structure is very useful.

View 4 Replies View Related

Identity Column-- Seed/Increment Value

Oct 1, 1998

I have created a table that generates a sequential id and a
stored procedure that will return that id. The trouble is
no matter what I set the Seed or Increment values to, the
id will always start with #1 and increment by 1.

My table is BILLING_TIME_ID
Identity field BT_GEN_ID
(SEED 200, INCREMENT 1)

The sp is as follows:
CREATE PROCEDURE BT_NEXT_ID
AS
INSERT dbo.BILLING_TIME_ID DEFAULT VALUES
select count (*) from dbo.BILLING_TIME_ID
GO
I have double checked that Identity_Insert is set to off for
this table. (does this default to off unless it is set to on?) Since
there is only 1 field in the table, I don`t have any indexes set.

Thanks for your help!
Toni

View 1 Replies View Related

Changing Identity Seed And Increment After The Fact

Mar 16, 2004

Hi all,

I've been thrown a curve ball late in the game on an application I'm developing. Without getting into the specifics of the application I store a unique employee ID number for all person records in it. This ID is provided to us by the companies we're servicing. Up until this point in time we didn't have need of an externally visable ID other than the one provided to us. Now, a need for an internally generated (by our application) unique ID has been discovered. This number needs to be a minimum 5 digits (e.x. 10001, 10002, ....). I could achieve this nicely by seeding an identity column at 10000 with an increment of 1. However, I've alredy made different settings for this and there are records in the db with the old ones.

My question is: If I initially set the seed / increment at 1/1 can I change this after the fact without causing data integrity problems. Will all subsequent insertions into this table just start at the new values?

Or, ideally I'd like to create a new column seperate from the PK Identity column already in place that serves the same function, incrementing a 5 digit number by 1 for each new record. Seems that you're only allowed one identity column per table though. Is there another way to achieve get the same result as identity?

Thanks!

View 4 Replies View Related

Change The Seed && Increment Value Of An Identity Column.

Sep 5, 2007



Dear Sir,


the following code is copied from the SQL Server Help Example.



CREATE TABLE MyCustomers2 (CustID INTEGER IDENTITY (100,1) PRIMARY KEY, CompanyName NvarChar (50))

INSERT INTO MyCustomers2 (CompanyName) VALUES ('A. Datum Corporation')

ALTER TABLE MyCustomers2 ALTER COLUMN CustId IDENTITY (200, 2)

It gives the following error.

Msg 156, Level 15, State 1, Line 3

Incorrect syntax near the keyword 'IDENTITY'




Can U please guide me abt the error.

with regards,
wilfi

View 5 Replies View Related

Auto Increment Auto Non-identity Field

Jan 23, 2004

I have an MS SQL Server table with a Job Number field I need this field to start at a certain number then auto increment from there. Is there a way to do this programatically or within MSDE?

Thanks, Justin.

View 3 Replies View Related

Auto Increment

Mar 24, 2008

 DIAGID is the
field in database which is integer. i want to increment this when page is
loaded.but it is not working..

plz
find mistake ... thanks in advance

 

SqlCommand sqlCmd = new SqlCommand("Select max(DIAGID)  from tblDxactual",
sqlCon);

       
SqlDataReader sqlDr;

       
sqlCon.Open();

       
sqlDr = sqlCmd.ExecuteReader();

       
if (sqlDr.Read())

       
{

           
txtbxDiagID.Text = sqlDr[0].ToString()+ "1"
;    

       
}

       
else

        
txtbxDiagID.Text="1";

       
sqlCon.Close();

View 3 Replies View Related

MS-SQL: Where's Auto Increment?

Feb 4, 2005

It's been a long time since I've had to check an index for the highest value, then add 1, to create a new unique key. These past few years, it seems this is usually done for you. But now that I'm working with MS-SQL, I don't see it. Is it there? It's doesn't seem to be inherent in the definition.

View 5 Replies View Related

MS SQL 05 Auto Increment

Jan 26, 2006

Hello,
Firstly Hello to everyone I'm new the forum and fairly new to .net
I'm working on web datbase application using visual studios 05 and MS SQL05 I've used 2003 (briefly) before but 2005 is very new to me.
To my problem I download the GUI interface from microsoft so I can now setup a local database and do my own testing.
I have created the table and fields with in it however on a particular table i have made a primary Key and left it as an INT but I would like to set it as auto increment ! I dont know how to select that option as i was used to mysql way of doing things or does this have to be done as a stored procedure ?
Any assistance much appreciated.
 

View 1 Replies View Related

Auto Increment.... Key's... Etc..

Apr 4, 2001

I am very new to using SQL server 7. I've always used mysql in the past. I cant figure out howto create a autoincrementing key for my tables... is it possible to do in SQL7?? If so.. how.. i thought you just set the datatype to auto increment etc...

sorry for any oversights...


dave

View 1 Replies View Related

Auto Increment

Sep 23, 2002

I would like to avoid using a cursor. I am updating several rows in a table with sequential numbers starting at a number I pass into the Stored Procedure. Is there a way to do this with one update statement?

Thanks,
Ken Nicholson
Sara Lee Corporation

View 3 Replies View Related

Auto-Increment

May 30, 2008

Hey,

Here is what happened:

Users for a long time have been able to post new topics in our forums. However, a short time ago, the some users began to experience problems. What I have narrowed it down to is that upon inserting into the table, sometimes id value for the topic is the same as an id that is already in the table, so it fails to insert the record (due to a constraint). However, the topic id column is an auto-increment column and should just assign the next number for the id value.

Any ideas?

View 3 Replies View Related

Auto Increment

Mar 15, 2006

I have important a table from mircosoft access into ms sql server 2000, I've created a new ID row and set the primary key - but I need to use the ID from microsoft access as well. therefore I'd like to add an auto increment +1 on the old access ID field... but how do I do that?

View 1 Replies View Related

Please Tell Me How To Auto Increment

Nov 6, 2006

hi, i have columns(name,id,salary) in my emp table,see to that there is no primary key in my table, but i want to do auto increment, in my table id has to be auto incremented,so please give me coding to do that,pleaseeeeeeee

View 3 Replies View Related

Auto Increment

Apr 14, 2008



Hi,
I have one table:
Appid | Cols
1 | xx
2
3

In this table Appid is the primary key. I want to change the Appid column as Auto increment column. How to change the appid to Auto increment with data in that column. Is it possible?

Thanks in advance

View 4 Replies View Related

Auto Increment In SQL

Jul 25, 2007

Hi.
Am creating a database in SQL and one of the field of my table is customer_id. I want this customer_id to be auto generated and auto increment. I was reading about Identity but it was too complicated to grasp. So how can that be done in a very simple way.
Thanks

View 9 Replies View Related

Auto Increment An Primary Key

Jun 26, 2007

How do I make a Primary Key in a table automatically increment as a new row of data is entered? do i have to do it with a trigger?? if so what is the code behind it....what I have is a Applicant table, which holds the ApplicantID (<<<needs auto incremented), FirstName, LastName, Address, City, State, Zip, and PhoneNumber.  I enter all the other information through visual web developer, and what I need to do when the hit submit on the form with the data i want to automatically set an id right there.  any suggestions will help!

View 3 Replies View Related

Regarding Auto Increment Of Id In Sql Table

Jun 27, 2007

I currently working asp.net with c# and inserting data from webpage into sqlserver 2000 data table. I have an auto increment ID in a table. Let's say 10 are inserted. Then you delete those 10. You add another and the auto increment sets the id at 11. How can I get that table to start back to 0? Plz help me and give code for increment id programmatically using c#. Thanks in Adv,

View 2 Replies View Related

[*-)] About Auto Increment Field

Nov 27, 2007

Hi,
I have one Auto increment field in the table.
I have a problem that suppose I have 10 Records in the table, Now If someone delete record no 3 and 5 then it has 8 records.
But The field will give 11 no to new record I want it first fill 3 and 5 then give 11 to the new record.
Is it possible with the auto increment field in sql server 2005.
 

View 1 Replies View Related

Auto-increment My Primary Key: Why 2 Instead Of 1?

Dec 21, 2007

Hi all,I have a table where I have my ProdPK set up as Primary key, turned on "Is Identity" and set the Identity increment to 1. But each time I add a new item, the number incremented by 2... I have couple of other tables and they are all fine, just this particular table increased twice as it should. I check the setting against other tables and everything seems to be the same. By the way, this is adding the data to the table inside MS SQL Server Management Studio manually. I haven't done anything in the ASP.NET page yet. Thank you very much,Kenny. 

View 5 Replies View Related

Auto Increment Field

Apr 5, 2008

Hey,
Im building a site within Visual Studio 2005 and im using the SQL database system it provides. I currently have a number of tables each with a primary key that is set to the 'int' field type and also set to auto increment 1, 2, 3 etc etc. My question is it there a way to make this field increment automatically, providing a unique value but also automatically placing a couple of pre-defined letters before the number? Obviously it can't be an 'int' anymore because it'll be holding something like MEM1, MEM2 etc. Is there a way to do this is Visual Studio?
 Many Thanks!

View 3 Replies View Related

Auto Increment Primary Key

Apr 13, 2008

Dear all,
I am using SQL express 2005 in visual studio 2008. I would like to use Form View to insert new record in the table. There is a column call "id". I think it is too stupid to let user enter a unique identifier instead of generating by the system.
I know how to generate a random integer number in a normal TextBox. However, when I edit the InsertItemTemplate, I cannot modified the value of that textbox. For example, i couldn't use "TextBox1.Text = temp;" here. How can I achieve to change this TextBox's value by the system that I would like to generate a random interger. Thanks a lot.
Regards,
Eric Chan 

View 4 Replies View Related

Auto Increment Primary Key

Dec 7, 2004

How do I make my Primary Key Auto Increment from Enterprise Manager?

Thanks

View 1 Replies View Related

Auto-increment In MSDE

Oct 19, 2005

ive been working through the tutorial/tour of .net web matrix (version
0.6 build 812).  when creating my database i cannt find the option
for setting an auto increment for my primary key.  can anyone help?

thanks
slh

View 1 Replies View Related

How Do I Create An Auto Increment?

Apr 29, 2006

Hi all
 
I just got SQL server 2k5 installed and working....im just trying to figure out how to make an auto incremement column wiht an integer..
 
or has it been replaced with the "unique identifyer"
 
 
Abyss

View 4 Replies View Related

How To Make Auto-increment ID?

May 25, 2006

I've created a table. How do I modify the ID so that it is
auto-increment? I'm using Microsoft SQL Server Management Studio to
access my tables.

View 2 Replies View Related

Auto Increment In VBScript?

Aug 31, 2006

Ok, I've been charged with the task of setting up an IVR(interactive voice response) system for remote data entry. It was all going great till I got to the utility's Database connector. It wouldn't work, but I saw that the program also supported VBScript, great! I know VBScript.

Simple task, setup a simple flow where data can be entered. I setup a DSN for the access database(not quite MS SQL, but close enough) I'd created. It gave me a syntax error when I tried to use '' in an auto increment field. I think the exact query was:
"INSERT INTO test_table VALUES('',$RV[Store Number],'$RV[Objective]','question1','question2',question3');"

The database setup was:
id(AutoNumber),store_number(number),objective(text),q1(text),q2(text),q3(text)

Changed the auto number in the query to a 0 and it worked fine, but of course it was only to test if it would work. It would create a duplicate row if it went further than the first row.

I don't understand what my syntax error was. The $RV[*] are variables retrieved by procedures in the IVR scripting program. Need this for work so I can setup a demo of the system to present to my boss' bosses' bosses

View 1 Replies View Related

Auto Increment Issues

Sep 25, 2007

I am trying to insert a bunch of data into a table with an auto-increment field (ProductID) and my insert query fails.
Error message:
Code:


PHP Warning: mssql_query() message: Cannot insert the value NULL into column 'ProductID', table 'RCDBTest.dbo.ServiceDefaults'; column does not allow nulls. INSERT fails. (severity 16) in C:InetpubwwwrootMS_updater.php on line 13


But I am not inserting into that ProductID column...shouldnt it just use the next auto-increment number?
Query:
Code:


INSERT INTO tablename (Product_Type_Number) VALUES ('100')


Any helpful thoughts?

View 3 Replies View Related

Leading Zero For Auto Increment Id

Aug 21, 2007

Is it possible to have leading zero for an auto increment id field? I need to do this when i am migrating a table. I am thinking if i cannot do this when migrating then i will have to use stored procedure to achieve this.

Thanks.

View 4 Replies View Related

Auto Increment Problem

Jul 10, 2007

hi
I am facing problem in auto increment
when i enter to commit the row if data is right then incerment is 1
if enter data is wrong then error shows after correcting error
it increments not by 1 as shows in picture

does auto increment supports numeric(10)
as
id numeric(10) IDENTITY (1, 1),

View 14 Replies View Related

Auto Increment On Non PK Column

May 2, 2008

How can I put an Auto increment on a non PK field?
for ordering contents items?

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved