1
vote
8answers
169 views
Is this good XML?
Hi all,
I'm working for a client who's been using this XML structure for his website's content:
<section title="title1" layoutType="VideoViewer" xmlPath="xml/ita/title1.xml" p …
5
votes
4answers
73 views
De-normalization for the sake of reports - Good or Bad?
What are the pros/cons of de-normalizing an enterprise application database because it will make writing reports easier?
Pro - designing reports in SSRS will probably be "easier" …
13
votes
12answers
360 views
Users asking for denormalized database
I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity wit …
11
votes
15answers
671 views
Explaining why “Just add another column to the DB” is a bad idea, to non programmers.
I have sales people and bean counters who are trying to sell customizations to clients, which is fine. But when a complex change request comes in that I send back a large estimate …
1
vote
2answers
119 views
3NF Database Normalization
There is a report table for overdue DVD rentals. The store has multiple copies of the same DVD (they are all numbered to be identified). How can I normalize this data to meet 3NF r …
0
votes
7answers
57 views
Should I use an inline varchar(max) column or store it in a seperate table?
I want to create a table in MS SQL Server 2005 to record details of certain system operations. As you can see from the table design below, every column apart from Details is is non …
0
votes
3answers
34 views
Generic database logging system: Storing a reference to another database.table.column
My question is, how can I link a reference stored in the Log table to a piece of data in another database?
We're building a system (Called Fusion) that will perform certain key ta …
1
vote
3answers
163 views
ER Diagram (Drawing)
For a relational database that represents the current term enrollment at a large university, what is the ER diagram for a schema that takes into account all the assertions given:
…
2
votes
14answers
184 views
How do you know when an SQL database needs more normalization?
Is it when you're trying to get data and there is no apparent easy way of doing it?
When you find something should be a table on it's own?
What are the laws?
1
vote
2answers
95 views
Should I split this table into two?
I am trying to wrap my head around database normalization. This is my first time trying to create a working database so please forgive me for my ignorance. I am trying to create a …
31
votes
22answers
2k views
Is there ever a time where using a database 1:1 relationship makes sense?
I was thinking the other day on normalization, and it occurred to me, I cannot think of a time where there should be a 1:1 relationship in a database.
Name:SSN? I'd have them in …
1
vote
3answers
54 views
Should I make another table or just use arrays? (To normalize or not to normalize)
The current situation is that topics are sorted by 3 main categories. There is the potential to add more than just the 3 categories but the higher ups wish to implement the abilit …
0
votes
1answer
27 views
How can I present information from normalized data entities in my tableView cells?
I'm currently thinking about the modeling of data in an iPhone app. My first instinct is to try to normalize the data into entities.
For example a Professor entity might look s …
0
votes
1answer
66 views
SSIS Data Migration: Split Flat table into Parent + Child/Grandchild tables
Hello,
I need to migrate data in a large flat table located in SQL Server 2005 into a new SQL Server 2005 schema that consists of a parent table and multiple child tables. This s …
1
vote
1answer
167 views
Represent three way database functional dependency in 5th normal form
Is it possible to represent a composite key functional dependency of a non key column in fifth normal form?
I have three tables,
users
----------
id
name
events
----------
id
na …
