Tagged Questions
The 3nf tag has no wiki summary.
5
votes
3answers
264 views
How do you normalize one-to-one-or-the-other relationships?
I'm storing data on baseball statistics and would like to do so with three tables: players, battingStats, and pitchingStats. For the purpose of the question, each player will have batting stats or ...
5
votes
2answers
2k views
LINQ options.loadwith problem
I am writing a tag-based ASP.net system. Using the following db scheme:
Topic <many-many> TagTopicMap <many-many> Tag
Basically it is a 3NF approach (toxi) that I found from the ...
3
votes
2answers
91 views
Trying to understand database normalization - 3NF
I am trying to understand database normalization, in particular 3NF.
I am building a shop database and in trying to normalize to 3NF have come up with the structure below.
The structure below ...
3
votes
1answer
260 views
Translating functional dependencies into 3rd normal form
I have this problem decomposing a relation schema into a set of schemas that are in 3NF.
I have this relation schema: R= (A, B, C, D, E, F)
With the following set F of functional dependencies:
A → ...
2
votes
1answer
201 views
Simple Database normalization question
I have a quick question regarding a database that I am designing and making sure it is normalized...
I have a customer table, with a primary key of customerId. It has a StatusCode column that has a ...
2
votes
2answers
678 views
DB Tables which are in 3NF or 4NF but not in DKNF
Are there examples of Relational tables which are in 3NF or 4NF but
not in Domain Key Normal Form?
1
vote
3answers
177 views
Is it still normalized db schema? database
I have the following db-schema .
FILE, GROUP and BLOCK represent the object structure of the XML file.
FILE is the root.
GROUP has FK to FILE.
BLOCK has the one FK to GROUP and the another one FK ...
1
vote
3answers
956 views
3NF Vs 2NF, which is more strict?
Which of these is true:
If a table is in 2nd normal-form then it must be in 3rd normal-form.
If a table is in 3rd normal-form then it must be in 2nd normal-form.
I know only one of them is ...
1
vote
1answer
335 views
Combine contents of multiple rows in 3NF mysql tables
Having dutifully normalised all my data, I'm having a problem combining 3NF rows into a single row for output.
Up until now I've been doing this with server-side coding, but for various reasons I now ...
1
vote
1answer
1k views
Grails: Many-to-Many without hasMany/belongsTo - instead using native 3NF - Searching full text
I am implementing a many-to-many mapping in grails using 3NF,
Not using the hasMany or belongsTo property.
Taken from this article it shows and explains quite a lot about its advantages.
Article: ...
0
votes
1answer
46 views
Understanding 3NF
I'm currently in a System Analysis class and I want to better understand the use of Normalization. For 3NF if I was working on a table that contained Student Id, Name, Phone Number, and Major. I would ...
0
votes
1answer
122 views
BCNF/3NF in Relational Databases
How do you tell if a relation R is in BCNF and 3NF?
I'm reading a textbook, and it's telling me that there are 3 main attributes you're looking at, but I'm having trouble understanding what they're ...
0
votes
3answers
135 views
3NF normalized database
I am having trouble creating a 3NF normalized database. Can anyone help please? I can't see any dependencies. This is for a real estate site. The table fields are as follows:
ID - Type - Loc ...
0
votes
1answer
73 views
time automaticly an indicator for 6NF
is this correct:
As soon as entities loose their attribute-invariance through time,( maybe independently e.g only some attribute then again only one attribute), the only way to correctly normalize is ...
0
votes
3answers
201 views
Normalization of an 1:1 or 1:0 relationship
when using relation databases and you want 3NF (do you call it 3NF in english?), then you pull 1:1 relationsships together into one table. But what happens if the rationship is 1:0/1 (/ meaning or)?
...
0
votes
1answer
90 views
is my table in 3nf
i have simple table with the following structure
ID(PK) , title, director, year of production, production company
in 3nf, there must be no transitive relation between non primary keys, but i think ...
0
votes
3answers
335 views
sql 3NF Normalization
is this in 3NF ?
create table movies(
id numeric primary key not null default autoincrement,
name varchar(50) not null,
release-date Date,
price numeric,
rating numeric,
length ...