Database naming conventions - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T11:09:13Z http://stackoverflow.com/feeds/question/324163 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/324163/database-naming-conventions 5 Database naming conventions Fernando 2008-11-27T16:26:50Z 2009-06-04T21:04:53Z <p>We are deciding the naming convention for tables, columns, procedures, etc. at our development team at work. The singular-plural table naming has already been decided, we are using singular.</p> <p>We are discussing wether to use a prefix for each table name or not. I would like to read suggestions about using a prefix or not, and why.</p> <p>Does it provide any security at all? (At least one more obstacle for a possible intruder)</p> <p>I think it's generally more comfortable to name them with a prefix, in case we are using a table's name in the code, so to not confuse them with variables, attributes, etc. But I would like to read opinions from more experienced developers.</p> http://stackoverflow.com/questions/324163/database-naming-conventions/324183#324183 4 Answer by Ian Nelson for Database naming conventions Ian Nelson 2008-11-27T16:32:26Z 2008-11-27T16:32:26Z <p>I prefer prefixing tables and other database objects with a short name of the application or solution.</p> <p>This helps in two potential situations which spring to mind:</p> <ol> <li><p>You are less likely to get naming conflicts if you opt to use any third-party framework components which require tables in your application database (e.g. asp net membership provider).</p></li> <li><p>If you are developing solutions for customers, they may be limited to a single database (especially if they are paying for external hosting), requiring them to store the database objects for multiple applications in a single database.</p></li> </ol> http://stackoverflow.com/questions/324163/database-naming-conventions/324187#324187 1 Answer by kristof for Database naming conventions kristof 2008-11-27T16:33:01Z 2008-11-27T16:33:01Z <p>Look at this post <a href="http://stackoverflow.com/questions/238267/what-is-your-naming-convention-for-stored-procedures">What is your naming convention for stored procedures?</a></p> http://stackoverflow.com/questions/324163/database-naming-conventions/324195#324195 1 Answer by kristof for Database naming conventions kristof 2008-11-27T16:35:49Z 2008-11-27T16:35:49Z <p>If you use SqlServer the good start would be to look at the sample databases provided for some guidance. </p> http://stackoverflow.com/questions/324163/database-naming-conventions/324197#324197 -2 Answer by nickf for Database naming conventions nickf 2008-11-27T16:36:44Z 2008-11-27T16:36:44Z <p>If you're worried about mixing up your table names, employ a hungarian notation style system in your code. Perhaps "s" for string + "tn" for table name:</p> <pre><code> stnUsers = 'users'; stnPosts = 'posts'; </code></pre> <p>Of course, the prefix is up to you, depending on how verbose you like your code... <code>strtblUsers, strtblnmeUsers, thisisthenameofatableyouguysUsers...</code></p> <p>Appending a prefix to table names does have some benefits, especially if you don't hardcode that prefix into the system, and allow it to change per installation. For one, you run less risk of conflicts with other components, as Ian said, and secondly, should you wish, you could have two or instances of your program running off the same database.</p> http://stackoverflow.com/questions/324163/database-naming-conventions/324240#324240 4 Answer by Stein Gauslaa Strindhaug for Database naming conventions Stein Gauslaa Strindhaug 2008-11-27T16:59:05Z 2008-11-27T16:59:05Z <p>I don't see how any naming convention can improve security...</p> <p>If an intruder have access to the database (with harmful permissions), they will certainly have permissions to list table names and select to see what they're used for.</p> <p>But I think that truly confusing table names might indirectly worsen security. It would make further development hard, thus reducing the chance security issues will be fixed, or it could even hide potential issues:</p> <p>If a table named (for instance) 'sro235onsg43oij5' is full of randomly named coloumns with random strings and numbers, a new developer might just think it's random test data (unless he touches the code that interact with it), but if it was named 'userpasswords' or similar any developer who looks at the table would perhaps be shocked that the passwords is stored in plaintext.</p> http://stackoverflow.com/questions/324163/database-naming-conventions/324251#324251 9 Answer by Dustin for Database naming conventions Dustin 2008-11-27T17:09:37Z 2008-11-27T17:09:37Z <p>I find hungarian DB object prefixes to indicate their types rather annoying.</p> <p>I've worked in places where every table name had to start with "tbl". In every case, the naming convention ended up eventually causing much pain when someone needed to make an otherwise minor change.</p> <p>For example, if your convention is that tables start with "tbl" and views start with "v", thn what's the right thing to do when you decide to replace a table with some other things on the backend and provide a view for compatibility or even as the preferred interface? We ended up having views that started with "tbl".</p> http://stackoverflow.com/questions/324163/database-naming-conventions/953088#953088 0 Answer by ajmastrean for Database naming conventions ajmastrean 2009-06-04T21:04:53Z 2009-06-04T21:04:53Z <p>Why not name the tables according to the guidelines you have in place for coding? Consider the table name a "class" and the columns a "property" or "field". This assists when using an ORM that can automatically infer table/column naming from class/member naming.</p> <p>For instance, <a href="http://www.castleproject.org/activerecord/index.html" rel="nofollow">Castle ActiveRecord</a>, declared like below <a href="http://www.castleproject.org/activerecord/documentation/trunk/usersguide/class.html" rel="nofollow">assumes the names are the same</a> as the member they are on.</p> <pre><code>[ActiveRecord] public class Person { [PrimaryKey] public Int32 Id { get; set; } [Property] public String Name { get; set; } } </code></pre>