Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2000-07-02 : 00:00:00
|
This article covers the basics of database design including normalization, relationships and cardinality. A great tutorial on database design. Article Link. |
|
MossyBlog
Starting Member
1 Post |
Posted - 2005-12-05 : 05:13:30
|
Great article, except there seems to be a bit of confusion surrounding entities..In SQLTeam.com via "Database object naming conventions" article, the following was put forward:[url]http://vyaskn.tripod.com/object_naming.htm[/url] quote: Tables: Tables represent the instances of an entity. For example, you store all your customer information in a table. Here, 'customer' is an entity and all the rows in the customers table represent the instances of the entity 'customer'. So, why not name your table using the entity it represents, 'Customer'. Since the table is storing 'multiple instances' of customers, make your table name a plural word. So, name your customer table as 'Customers'. Name your order storage table as 'Orders'. Name your error messages table as 'ErrorMessages'.
|
|
|
|
|
|