Tagged Questions
The identity-column tag has no wiki summary.
33
votes
9answers
31k views
Adding an identity to an existing column
I need to change the primary key of a table to an identity column, and there's already a number of rows in table.
I've got a script to clean up the IDs to ensure they're sequential starting at 1, ...
6
votes
5answers
301 views
How do you merge tables with autonumber primary keys?
I suppose everyone runs into this problem once in a while: you have two tables that have autonumber primary keys that need to be merged. There are many good reasons why autonumber primary keys are ...
6
votes
6answers
1k views
Clustered indexes on non-identity columns to speed up bulk inserts?
My two questions are:
Can I use clustered indexes to speed
up bulk inserts in big tables?
Can I then still efficiently use
foreign key relationships if my
IDENTITY column is not the clustered
index ...
6
votes
4answers
157 views
Sql Server Legacy Database To Clustered index or not
We have a legacy database which is a sql server db (2005, and 2008).
All of the primary keys in the tables are UniqueIdentifiers.
The tables currently have no clustered index created on them and ...
4
votes
7answers
575 views
SQL Identity with leading padded zeros
I have marked a column as Identity in my table
create table Identitytest(
number int identity(1,001) not null,
value varchar(500)
)
I need the identity column to be incremented as ...
4
votes
5answers
655 views
Does SQL Server guarantee sequential inserting of an identity column?
In other words, is the following "cursoring" approach guaranteed to work:
retrieve rows from DB
save the largest ID from the returned records for later, e.g. in LastMax
later, "SELECT * FROM MyTable ...
3
votes
4answers
2k views
In Entity Framework, getting the value of an identity column after inserting
I'm using EF4. I want to insert a new MyObject into the database. MyObject has two fields:
Id: int (Identity) and
Name: string
As I've seen in documentation Entity Framework is supposed to set ...
3
votes
5answers
84 views
Is there a smart way to append a number to an PK identity column in a Relational database w/o total catastrophe?
It's far from the ideal situation, but I need to fix a database by appending the number "1" to the PK Identiy column which has FK relations to four other tables. I'm basically making a four digit ...
3
votes
4answers
98 views
Reinserting rows with identity columns
I'm implementing a queue in SQL Server (2008 R2) containing jobs that are to be performed. Upon completion, the job is moved to a history table, setting a flag to success or failure. The items in the ...
3
votes
5answers
279 views
“There can only be one IDENTITY column per table” - Why?
"There can only be one IDENTITY column per table"
Why is it so? Take a scenario of a vehicle, there exists a chasis number which is unique as well as the registration number which turns out to be ...
3
votes
1answer
402 views
Linq to Sql: Can I return the Identity_Scope after an insert?
After I do an insert using linq to sql, can I get the Identity_scope value back if my table has an identity column?
3
votes
8answers
1k views
Sql Server 2005 Primary Key violation on an Identity column
I’m running into an odd problem, and I need some help trying to figure it out.
I have a database which has an ID column (defined as int not null, Identity, starts at 1, increments by 1) in addition ...
3
votes
5answers
5k views
Can a sql server table have two identity columns?
I need to have one column as the primary key and another to auto increment an order number field. Is this possible?
EDIT: I think I'll just use a composite number as the order number. Thanks anyways.
...
2
votes
2answers
153 views
How do I easily find IDENTITY columns in danger of overflowing?
My database is getting old, and one of my biggest INT IDENTITY columns has a value around 1.3 billion. This will overflow around 2.1 billion. I plan on increasing it's size, but I don't want to do it ...
2
votes
0answers
50 views
generate identity for an Oracle database through Entity framework using an exisiting storeprocedure
How to automatically generate identity for an Oracle database through Entity framework.
I have function that i could call and generate the column which is not in the context how do i explicitly call ...
2
votes
1answer
66 views
C# How to Synch Data Between Database Instances Over the Internet
We have an application that requires our customers to have a SQL server instance on sight. At their request, the application needs to synchronize the data in their database with a copy in our ...
2
votes
3answers
72 views
@@IDENTITY and trigger issue
I'm having the well known problem with a trigger and @@IDENTITY.
I created a new Auditing table and a trigger to insert auditing rows on it.
We use a software that is using @@IDENTITY and this is ...
2
votes
2answers
75 views
How to increment the Identity column
I am using identity columns as a primary key in my tables.
In some situations I need to work with primary keys before inserting a new row.
For example, in Oracle I use : select ...
2
votes
3answers
58 views
Will having a pseudo-incremental number for bug ID be a problem?
Note that when I say "client", I mean businesses or organizations that have signed up for the service.
I am creating a bug tracking application. I have decided to go with multi-tenant approach with ...
2
votes
3answers
367 views
Inserting into Oracle and retrieving the generated sequence ID
I have a handful of raw SQL queries for SQL Server which use SCOPE_IDENTITY to retrieve the generated ID for a specific INSERT immediately after that INSERT occurs all in one execution…
INSERT into ...
2
votes
4answers
127 views
What would my SQL statement be to insert “Arnold Schwarzenegger” and “Hasta la vista baby” into these two empty SQL tables?
What would my statement be to insert "Arnold Schwarzenegger" and "Hasta la vista baby" into the following empty SQL tables?
The title of this question was originally going to be "How to insert the ...
2
votes
2answers
281 views
SQL multiple tables with synced IDENTITY columns
I am working on "cleaning up" a database and need to synchronize the IDENTITY columns. I am using stored procedures to handle the data and mirror it from one table to the next (after cleaning it and ...
2
votes
2answers
663 views
Turning IDENTITY_INSERT ON on a table to load it with DB Unit
I try to load a table, that have an identity column, with DB Unit. I want to be able to set the id value myself (I don't want the database generate it for me).
Here is a minimal definition of my ...
2
votes
1answer
36 views
Help determining proper Identity Range sizes
I have a Merge Replication with ~200 subscribers. I am trying to determine what would be appropriate Identity Range Sizes on some of the tables. You see I inherited a DB structure that was not ...
2
votes
2answers
236 views
Best way to move data between tables and generate mapping of old to new identity values
I need to merge data from 2 tables into a third (all having the same schema) and generate a mapping of old identity values to new ones. The obvious approach is to loop through the source tables using ...
2
votes
1answer
102 views
SQL table function or means to tell if identity column has been used?
I was curious if there is a way to tell if an IDENTITY column has ever been incremented if there is no data within the table. (i.e. data item was inserted, then deleted)
2
votes
5answers
464 views
SQL Server - Auto-incrementation that allows UPDATE statements
When adding an item in my database, I need it to auto-determine the value for the field DisplayOrder. Identity (auto-increment) would be an ideal solution, but I need to be able to programmatically ...
2
votes
1answer
259 views
In SQL Server 2008, how should I copy data from database to another database?
I'm trying to write a stored procedure to copy a subset of data from one set of tables to an identical set of tables in a different database. The "source" database needs to be a parameter to the ...
2
votes
1answer
545 views
How to reseed an an auto increment column in a SQLite database?
Is it possible to reseed an auto increment column in a SQLite database, and if so, how is this done?
ie. The equivalent of DBCC CHECKIDENT ('MyTable', RESEED, 1) in SQL Server.
2
votes
3answers
335 views
Compound IDENTITY column in SQL SERVER 2008
An Orders table has a CustomerId column and an OrderId column.
For certain reasons it's important that an order's id is no longer than 2-bytes.
There will be several million orders in total, which ...
2
votes
4answers
308 views
Can I make an identity field span multiple tables in SQL Server?
Can I have an "identity" (unique, non-repeating) column span multiple tables?
For example, let's say I have two tables: Books and Authors.
Authors
AuthorID
AuthorName
Books
BookID
BookTitle
...
2
votes
3answers
3k views
Changing Identity Seed in SQL Server (Permanently!)
Is there any way of changing the identity seed for an identity column permanently? Using DBCC CHECKIDENT just seems to set the last_value. If the table is truncated all values are reset.
dbcc ...
2
votes
1answer
523 views
How to retrieve last autoincremented value in MS-Access like @@Identity in Sql Server
I want to retrieve identity column value in ms access from an autoincremented column.
Basically i m running a transaction in which i have to write two insert queries. 2nd query will be containing ...
2
votes
3answers
1k views
Identity Column as Primary Key
Could you please opine if having identity column as primary key is a good practise?
For ORM tools, having identity column on tables helps. But there are other side effects such as accidental duplicate ...
2
votes
2answers
1k views
return Identity in SQLServer Compact
How do you get the identity column value after an insert in SQL Server Compact 3.5?
1
vote
0answers
24 views
Performance impact of having gaps in Identity Column in SQL Server 2005 [migrated]
We have a number of tables in our database with an identity column as the primary key & clustered index. Over the years records have been added and deleted from these tables and of course there ...
1
vote
1answer
35 views
uniqueidentifier as Identity in SQLCE?
In SQLCE can I create an Identity column with data type uniqueidentifier? If so, how? If not, why not?
I have tried creating it with "New Table"from the Server Explorer in VS2010, and the Identity ...
1
vote
1answer
132 views
Teradata: How can you add an identity column to an existing table?
I need to add an identity column to an existing table with this SQL:
alter table app.employee
add ID INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 1 INCREMENT BY 1 MINVALUE 0 MAXVALUE ...
1
vote
2answers
78 views
Output multiple identity columns from temp table
I'm using SQL Server 2K8 and have a table used solely to generate ids so that the primary key is unique across multiple tables -- the uniqueness across multiple tables is for an element hiearchy tree ...
1
vote
1answer
59 views
Maintaining a foreign key relationship when inserting into tables with autoincrementing Id's
I have two tables: Defect and DefectData. Each Defect may or may not have one or many DefectData. As such DefectData has a DefectId column as a foreign-key.
The Id in both tables is an ...
1
vote
2answers
50 views
Identify of Currently Inserting Row
I'm working on a project and the question came up: Can an insert statement insert it's own identity in to another field?
The idea is that there would be a hierarchical arrangement of records and that ...
1
vote
3answers
63 views
Will a trigger be able to copy a primary key that's an identity id?
Well what I want to do is after I do an INSERT in table X, I want to copy that record into another History table immediately after the INSERT. Now the table has the primary key as an Identity column, ...
1
vote
2answers
546 views
Inserting Entity into SQL Compact 4 Table with Identity column using LINQPad
I'm trying to insert new records into a SQL CE 4 database with LINQPad and having problems with the identity problem of a table. Let's say I have this simple table for instance:
PEOPLE
Id int ...
1
vote
2answers
126 views
SQL Server - how to ensure identity fields increment correctly even in case of rollback
In SQL Server, if a transaction involving the inserting of a new row gets rolled back, a number is skipped in the identity field.
For example, if the highest ID in the Foos table is 99, then we try ...
1
vote
1answer
930 views
SQL: Will setting IDENTITY_INSERT ON disable updating the table's identity table?
All,
I'm currently working on a data migration project and for performance related issues, I want to predefine a set of identities rather then letting the tables generate them themselves.
I found ...
1
vote
1answer
220 views
How should I handle maintaining row Identity for new records in Linq / Entity Framework?
What is the proper way to create a new unique shared key when using Linq and EF with SQL?
I could use a GUID upon inserting the record but I only want want my keys to have 7 digits or characters in ...
1
vote
3answers
236 views
SQL Server 2008: what happened if identity oversteps a maximal value of int?
Imagine we have a table:
create table MYTABLE (
id int IDENTITY(1,1)
,name varchar(10)
)
We have to insert a lot of rows into the table.
Does anybody know what will happen when a generated ...
1
vote
2answers
624 views
EF4 Oracle Identity Insert
Does anyone know if its possible to call an oracle's sequence.NextVal from ef4 without using StoredProcedure? I have an Oracle db from a client which I cannot modify, so stroedproc are not an option ...
1
vote
1answer
1k views
Copy Data from One SQL Server Table to Other in Same Database Without Specifying Columns
In SQL Server there is the ability to INSERT all of the data from one table into another using the following statement:
INSERT INTO TABLE1 SELECT * FROM TABLE2
When running this on a table with an ...
1
vote
4answers
1k views
Reset Identity column to zero in SQL Server?
How can I reset the Identity column of a table to zero in SQL Server?
Edit:
How can we do it with LINQ to SQL ?