Tagged Questions
The primary-key tag has no wiki summary.
46
votes
4answers
19k views
Sqlite primary key on multiple columns
What is the syntax for specifying a primary key on more than 1 column in SQLITE ?
39
votes
5answers
30k views
How to 'insert if not exists' in MySQL?
I started by googling, and found this article which talks about mutex tables.
I have a table with ~14 million records. If I want to add more data in the same format, is there a way to ensure the ...
37
votes
27answers
5k views
How do you like your primary keys?
In a fairly animated discussion in my team I was made to think what most people like as primary keys. We had the following groups-
Int/ BigInt which autoincrement are good enough primary keys.
There ...
30
votes
14answers
5k views
Surrogate vs. natural/business keys
Here we go again, the old argument still arises...
Would we better have a business key as a primary key, or would we rather have a surrogate id (i.e. an SQL Server identity) with a unique constraint ...
27
votes
11answers
14k views
How to reset postgres' primary key sequence when it falls out of sync?
I ran into the problem that my primary key sequence is not in sync with my table rows.
That is, when I insert a new row I get a duplicate key error because the sequence implied in the serial ...
22
votes
4answers
7k views
ADO.NET Entity Framework: Update Wizard will not add tables
I added a new ADO.Net Entity Data Model into my project and used the Update Wizard to add tables into the model. Five of the selected tables were added to the design surface. Two other tables will ...
20
votes
7answers
11k views
Using Rails, how can I set my primary key to not be an integer-typed column?
I'm using Rails migrations to manage a database schema, and I'm creating a simple table where I'd like to use a non-integer value as the primary key (in particular, a string). To abstract away from my ...
19
votes
7answers
7k views
What are the performance improvement of Sequential Guid over standard Guid?
Has someone ever measured performance of Sequential Guid vs. Standard Guid when used as Primary Keys inside a database?
18
votes
12answers
1k views
Is it a bad idea to use GUIDs as primary keys in MS SQL?
We have a system that uses UniqueIdentifier as the primary key of each of the tables. It has been brought to our attention that this is a bad idea. I have seen similar post on the subject but I am ...
18
votes
7answers
50k views
Can I have multiple primary keys in a single table?
Can i have multiple primary keys in a single table?
17
votes
12answers
6k views
Strings as Primary Keys in SQL Database
I am not very familiar with databases and the theories behind how they work. Is it any slower from a performance standpoint (inserting/updating/querying) to use Strings for Primary Keys than ...
15
votes
1answer
902 views
Django queries - id vs pk
When writing django queries one can use both id/pk as query parameters.
Object.objects.get(id=1)
Object.objects.get(pk=1)
I know that pk stands for Primary Key and is just a shortcut, according to ...
15
votes
11answers
2k views
Should I have a dedicated primary key field?
I'm designing a small SQL database to be used by a web application.
Let's say a particular table has a Name field for which no two rows will be allowed to have the same value. However, users will be ...
14
votes
13answers
2k views
Picking the best primary key + numbering system
We are trying to come up with a numbering system for the asset system that we are creating, there has been a few heated discussions on this topic in the office so I decided to ask the experts of SO.
...
14
votes
10answers
13k views
sql primary key and index
Say I have an ID row (int) in a database set as the primary key. If I query off the ID often do I also need to index it? Or does it being a primary key mean it's already indexed?
Reason I ask is ...
14
votes
16answers
4k views
Reasons not to use an auto-incrementing number for a primary key
I'm currently working on someone else's database where the primary keys are generated via a lookup table which contains a list of table names and the last primary key used. A stored procedure ...
13
votes
8answers
311 views
Efficient method to find collision free random numbers
I have a users table, the user ID is public. But I want to obfuscate the number of
registered user and trends of the project, so I don't want to have public incrementing IDs.
When a new user is ...
13
votes
9answers
7k views
Is there a REAL performance difference between INT and VARCHAR primary keys?
Is there a measurable performance difference between using INT vs. VARCHAR as a primary key in MySQL? I'd like to use VARCHAR as the primary key for reference lists (think US States, Country Codes) ...
12
votes
1answer
1k views
Fluent NHibernate primary key constraint naming conventions
Is there any way to create a naming convention for my primary key constraints in Fluent NHibernate?
I know you can name foreign key constraints, but it does not appear possible to name the primary ...
11
votes
1answer
94 views
Primary key index with a DATETIME as first part of the compound key is never used [migrated]
I have a problem with INDEXING a DATETIME (or even a date) as first part of my PRIMARY KEY.
I use MySQL 5.5
Here are my two tables:
-- This is my standard table with dateDim as a dateTime
CREATE ...
11
votes
4answers
50 views
MySQL unique id or combined id
I have the following structure for my project and developer program:
developer table
id
developer name
etc...
project table
id
project name
etc...
developer _project table
???
Because a developer ...
11
votes
3answers
16k views
Sql Server add auto increment primary key to existing table
As the title, I have an existing table which is already populated with 150000 records. I have added an Id column (which is currently null).
I'm assuming I can run a query to fill this column with ...
11
votes
4answers
2k views
Why does select SCOPE_IDENTITY() return a decimal instead of an integer?
So I have a table with an identity column as the primary key, so it is an integer. So, why does SCOPE_IDENTITY() always return a decimal value instead of an int to my C# application? This is really ...
11
votes
8answers
21k views
Foreign key refering to primary keys across multiple tables?
I have to two tables namely employees_ce and employees_sn under the database employees.
They both have their respective unique primary key columns.
I have another table called deductions, whose ...
10
votes
9answers
519 views
Why do I read so many negative opinions on using composite keys?
I was working on an Access database which loved auto-numbered identifiers. Every table used them except one, which used a key made up of the first name, last name and birthdate of a person. Anyways, ...
10
votes
6answers
355 views
Should a database table that contains two columns that are foreign keys have a third column which is the primary key?
I am guessing no, since the foreign keys are the primary keys in their own tables, so they will be unique.
More info
I am using MySQL and the following three tables are using the InnoDB engine.
...
10
votes
5answers
366 views
When i should use primary key or index?
When i should use primary key or index?
Which are the differences between primary key and index and which is the best?
10
votes
12answers
2k views
What is the difference between a primary key and a unique constraint?
Someone asked me this question on an interview...
9
votes
4answers
259 views
performance penalty of strings as primary keys?
What would be the performance penalty of using strings as primary keys instead of bigints etc.? String comparison is much more expensive than integer comparison, but on the other hand I can imagine ...
9
votes
4answers
2k views
SQL - many-to-many table primary key
This question comes up after reading a comment in this question:
http://stackoverflow.com/questions/2190089/database-design/2190101
When you create a many-to-many table, should you create a ...
9
votes
5answers
3k views
Remove Primary Key in MySQL
I have the following table schema which maps user_customers to permissions on a live MySQL database:
mysql> describe user_customer_permission;
...
9
votes
8answers
2k views
Composite primary key: to use or not to use
I am working on the design of a database that will be used to store data that originates from a number of different sources. The instances I am storing are assigned unique IDs by the original sources. ...
9
votes
6answers
13k views
make an ID in a mysql table auto_increment (after the fact)
I acquired a database from another developer. He didn't use auto_incrementers on any tables. They all have primary key ID's, but he did all the incrementing manually, in code.
Can I turn those into ...
9
votes
6answers
3k views
Pros and cons of using md5 hash of URI as the primary key in a database
I'm building a database that will store information on a range of objects (such as scientific papers, specimens, DNA sequences, etc.) that all have a presence online and can be identified by a URL, or ...
8
votes
1answer
95 views
Can i use BigDecimal as an id type in hibernate hbm?
i am using hibernate. it has id column with 20 precisions as below but of NUMBER type.
NUMBER(38,20) - this is the size given to id column of the table(Oracle database).
This id is generated by our ...
8
votes
3answers
124 views
What do you do when your primary key overflows?
We have a table, with an auto-increment int primary key, whose max value is now at the limit for the T-SQL int type. When we try to re-seed the table (because there are large gaps in the keys, nowhere ...
8
votes
3answers
331 views
Primary key versus key
When creating a mysql dump containing the structure of my database, one of the tables shows the following:
CREATE TABLE `completedTransactions` (
`paymentId` int(10) unsigned NOT NULL,
...
8
votes
8answers
1k views
Why is it not good to have a primary key on a join table?
I was watching a screencast where the author said it is not good to have a primary key on a join table but didn't explain why.
The join table in the example had two columns defined in a Rails ...
8
votes
9answers
560 views
What if 2^32 is just not enough?
what if you have so many entries in a table, that 2^32 is not enough for your auto_increment ID within a given period (day, week, month, ...)?
What if the largest datatype MySQL provides is not ...
8
votes
12answers
8k views
@@IDENTITY after INSERT statement always returns 0
I need a function which executes an INSERT statement on a database and returns the Auto_Increment primary key. I have the following C# code but, while the INSERT statement works fine (I can see the ...
7
votes
3answers
1k views
Why does MYSQL higher LIMIT offset slow the query down?
Scenario in short: A table with more than 16 million records [2GB in size]. The higher LIMIT offset with SELECT, the slower the query becomes, when using ORDER BY *primary_key*
So
SELECT * ...
7
votes
6answers
352 views
How to choose my primary key?
I found this reading material on choosing a primary key.
Is there a guide / blog post on how to choose the primary key for a given table?
Should I use a auto-incremented/generated key, or should I ...
7
votes
9answers
195 views
Unique identifiers for users
If I have a table of a hundred users normally I would just set up an auto-increment userID column as the primary key. But if suddenly we have a million users or 5 million users then that becomes ...
7
votes
3answers
612 views
Linq to SQL: How to delete using only the primary key?
How do I delete a record using Linq to SQL using only the primary key, without having to retrieve the exsting record from the database?
7
votes
7answers
4k views
PHP: Get primary key of table?
Is there a way to get the name of primary key field from mysql-database? For example:
I have a table like this:
+----+------+
| id | name |
+----+------+
| 1 | Foo1 |
| 2 | Foo2 |
| 3 | Foo3 |
...
7
votes
5answers
219 views
Are usernames a valid candidate for a primary key?
I know surrogate primary keys are generally recommended over natural primary keys, but are there any arguments in favor of surrogate primary keys when it comes to usernames?
7
votes
4answers
1k views
Auto-increment on Azure Table Storage
I am currently developing an application for Azure Table Storage. In that application I have table which will have relatively few inserts (a couple of thousand/day) and the primary key of these ...
7
votes
9answers
2k views
Deciding between an artificial primary key and a natural key for a Products table
Basically, I will need to combine product data from multiple vendors into a single database (it's more complex than that, of course) which has several tables that will need to be joined together for ...
7
votes
5answers
951 views
Best Practice for PK in SQL Server
I have been wondering what the best practices or ramifications are in setting up the PK in a M2M table in SQL Server. For instance:
I have 2 tables
Users
Roles
I am making a new table
UserRole
...
6
votes
3answers
124 views
Managing identity/primary key across servers
I'm in the middle of designing a new database that will need to support replication and I'm stuck on the decision what to choose as my primary key.
In our current database for primary key we use two ...