DB: To use identity column or not? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T17:46:42Z http://stackoverflow.com/feeds/question/186369 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/186369/db-to-use-identity-column-or-not 1 DB: To use identity column or not? Kishork 2008-10-09T08:14:42Z 2009-11-23T10:37:24Z <p>While designing a table my colleague here says that I should avoid identity column as it is specific to SQL Server and MS Access, But I differ with his views as it makes my coding simpler. </p> <p>Should I use identity column or not? If not what is best way to create the identity columns from application code?</p> http://stackoverflow.com/questions/186369/db-to-use-identity-column-or-not/186378#186378 3 Answer by MDCore for DB: To use identity column or not? MDCore 2008-10-09T08:18:32Z 2008-10-09T08:18:32Z <p>Does it matter that it is specific to the Microsoft platform? Is your application meant to be portable, i.e. are you planning to migrate it to mysql/postgres/whatever? </p> http://stackoverflow.com/questions/186369/db-to-use-identity-column-or-not/186382#186382 6 Answer by Phill Sacre for DB: To use identity column or not? Phill Sacre 2008-10-09T08:18:42Z 2008-10-09T08:30:40Z <p>You can't completely divorce an application from the database vendor. If you do you won't be able to take advantages of whatever features your database provides you.</p> <p>I'd say use the identity column. If you move over to Oracle (for example), you can use a Sequence. Hardly a big change.</p> <p>I don't know what technology you're using, but one thing that would help is using a tool such as Hibernate or iBATIS (I think they're both available for Java and .NET) which separates you a bit from the database implementation details. Then if you change database vendor you won't need to change application code, just configuration. (In theory, at least!)</p> http://stackoverflow.com/questions/186369/db-to-use-identity-column-or-not/186444#186444 2 Answer by Kris for DB: To use identity column or not? Kris 2008-10-09T08:45:58Z 2008-10-09T08:45:58Z <p>As far as i am aware, every slightly serious RDBMS has some sort of unique numbering scheme per table.</p> <ol> <li>Access and SQL Server have identity columns</li> <li>MySQL has auto increment columns</li> <li>PostgreSQL has sequences</li> <li>sqlite has an implicit ROWID column</li> <li>Oracle has some sort of sequence though I'm not at all familiar with it</li> </ol> <p>I mostly use it, theoretically it's not always a requirement but if you want to maintain referential integrity an int is less to store and easier to compare than a varchar, especially if your foreign keys would be more complex than a single column.</p> http://stackoverflow.com/questions/186369/db-to-use-identity-column-or-not/186446#186446 2 Answer by Ekkmanz for DB: To use identity column or not? Ekkmanz 2008-10-09T08:47:37Z 2008-10-09T08:47:37Z <p>Use Identity column!</p> <p>It do separate your "Application Logic" from "Business Logic"</p> <p>Let's say you use "email" as primary key (which do make sense in term of "business logic"). You'll get into trouble when that email no longer exist and your user want to edit your email.</p> http://stackoverflow.com/questions/186369/db-to-use-identity-column-or-not/1782300#1782300 0 Answer by Ojulari Hakeem for DB: To use identity column or not? Ojulari Hakeem 2009-11-23T10:37:24Z 2009-11-23T10:37:24Z <p>This is one of the problems I face with Oracle, and could be anybody that has SqlServer background. I was developing a code generator tool (for stored procedure) for Oracle, and I wanted to detect identity columns. It was a difficult task because oracle corp does not store information on column that uses a particular sequence.</p> <p>I tried to manage though ALL_SEQUENCES and ALL_TRIGGER_COLS metadata tables.</p> <p>cheer!</p> <p>Ojulari Hakeem</p>