Forum: Database Design Apr 1st, 2009 |
| Replies: 2 Views: 744 If you provide your current solution and what problems you are encountering, you will receive a better response.
This forum is not known for doing your work for you. |
Forum: Database Design Apr 1st, 2009 |
| Replies: 2 Views: 463 Are you repeating content? (Submitted by, Completed by, Approved by)
Normalization usually relates to multiple tables and duplication of data.
I would look at your "by", "comments" and any... |
Forum: Database Design Mar 31st, 2009 |
| Replies: 4 Views: 1,041 Those are not "headers," they are columns.
Do you know what Normalization means in a database setting?
I would work on normalizing the tables first and then worry about the queries, forms, etc. |
Forum: Database Design Mar 25th, 2009 |
| Replies: 2 Views: 624 Two tables.
Table1 is simply Color Names and Type.
create table Colors (
id int not null
,name varchar(16) not null
,system tinyint not null
) |
Forum: Database Design Mar 25th, 2009 |
| Replies: 4 Views: 495 Those requirements are a mixture of data and presentation. You listed the requirements for a web application, not the database back-end.
And I would give serious consideration to the 'ad-hoc... |
Forum: Database Design Jun 2nd, 2007 |
| Replies: 6 Views: 3,883 Many to Many.
Tables:
Posts (id, title, text, etc)
Tags (id, name, description, etc)
PostsTags (postsid, tagsid) |
Forum: Database Design May 6th, 2007 |
| Replies: 7 Views: 2,079 There is no need to give each user their own table. 10,000 users would mean 10,000 tables. That sounds ugly to manage.
Also, big tables are nothing to fear. Proper indexing and crafted queries can... |
Forum: Database Design May 6th, 2007 |
| Replies: 3 Views: 1,455 I would also move pending_ tables into a column within the user table, with values 0 or 1. This is assuming the pending_ tables do not have any additional columns. |