Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
3answers
146 views

MySQL Database normalization

Should I implement a read database normalization (using join tables) or should I use the ENUM type for static or dynamic data? For example: I have a table USER with a user_status. Should I create a ...
11
votes
10answers
889 views

Should we denormalize database to improve performance?

We have a requirement to store 500 measurements per second, coming from several devices. Each measurement consists of a timestamp, a quantity type, and several vector values. Right now there is 8 ...
8
votes
13answers
1k views

Database Normalization

I'm new to database design and I have been reading quite a bit about normalization. If I had three tables: Accommodation, Train Stations and Airports. Would I have address columns in each table or an ...
6
votes
2answers
184 views

Database Normalization

I have recently broken up a very large database table into smaller, manageable tables and for the most part I am satisfied with my work and I feel that the data is properly normalized. But there is ...
5
votes
2answers
158 views

design - sixth normal form

I have the following tables: Blogs { BlogName } BlogPosts { BlogName, PostTitle } Blog posts is modeling an entity and a relationship at the same time which is invalid according to 6nf (according ...
5
votes
7answers
337 views

Data normalization and writing queries

I'm a jr. developer (5 months on the job), and I have a question about data normalization. Now, as I understand it, the general principle behind data normalization is to create a RDBMS where data ...
5
votes
3answers
196 views

What is data normalization?

Can someone please clarify data normalization? What are the different levels? When should I "de-normalize"? Can I over normalize? I have a table with millions of records, and I believe I ...
5
votes
5answers
258 views

What is the best database design for thousand rows

I'm about to start a Database Design that will simply manage users under companies. Each company will have a admin area that can manage users Each company will have around 25.000 users Client ...
5
votes
3answers
277 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
5answers
525 views

What exactly does database normalization do?

New to database and so no to get upset with simple questions. As far as my googled and gathered knowledge normalization reduces redundancy of data and increase the performance. But really, I didn't ...
4
votes
6answers
153 views

Which normal form does this table violate?

Consider this table: +-------+-------+-------+-------+ | name |hobby1 |hobby2 |hobby3 | +-------+-------+-------+-------+ | kris | ball | swim | dance | | james | eat | ...
4
votes
2answers
224 views

should this database table be normalized?

i have taken over a database that stores fitness information and we were having a debate about a certain table and whether it should stay as one table or get broken up into three tables. Today, there ...
3
votes
1answer
65 views

Database Design for Multiple Room Reservation: One To Many

Primary Entities: Client Guest Reservation RoomAssignment I want to implement a multiple room reservation database design. First, I want to explain first the concept: The Client is the one who ...
3
votes
1answer
133 views

6NF and historical attribute data

When using a database normalized accoring to 6NF principles, how would you store historical attribute data? Let say for example we take this example from @PerformanceDBA but with the following extra ...
3
votes
2answers
109 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
2answers
49 views

Compacting tables after normalisation

I recently increased the level of normalisation in my database, going from something like this: +--------------------------------------+ | state_changes | ...
3
votes
2answers
84 views

Is it practical to dynamically normalize a table?

Let's say my database tracks bird sightings (Note: I'm really scraping the bottom of the barrel for examples). The fields are: sighting_id | common_name | park_name | location | time | etc.... ...
3
votes
3answers
922 views

Normalisation - 2NF vs 3NF

Struggling to see the differences between them. I know we say 2NF is "the whole key" and 3NF "nothing but the key". Referencing this great answer by Smashery: Can someone please give an example of ...
3
votes
3answers
352 views

any practices ,samples for ERD?

Q: I want any web sites or books just for training on ERD and normalization. I want a lot of sample, practices, and case studies with recommended answers, to strengthen my skill in database design ...
3
votes
2answers
76 views

Is this database schema practical?

As sort of a follow up to this previous question: Normalizing a variety of properties with similar data types I've created this setup now: http://schemabank.com/p/VwWHn My question is am I on the ...
2
votes
5answers
44 views

How to design database to handle which users have watched which videos?

For the sake of simplicity, let's say my database has two tables, videos and users. Videos being a list of different videos, and users being a list of different users. I need to be able to have a ...
2
votes
0answers
144 views

finding all candidate keys of relation

I am following the algorithm in this PDF in order to find all candidate keys for my relation from the given functional dependencies. I have found that all my attributes are middle ground attributes ...
2
votes
2answers
253 views

Designing lossless-join, dependency preserving, 3NF database

I need to design database which would keep track of the following attributes: stdnum // student number postcode // postal code phone_number // student phone number city ...
2
votes
2answers
57 views

1 to 0..1 relationship - which way should FK point?

Say I have a customer table with 1:0..1 relationship with another table, I would normally have a Nullable FK in the customer table pointing to the other table. However, say the number of additional ...
2
votes
3answers
363 views

Database “supertable” vs more tables vs generic table

I'm trying to decide on a database design. More specifically, this is a sub-part of a larger design. Basically, there are "Locations" - each location can have any number of sensors associated with ...
2
votes
5answers
282 views

relational database design (normalizing many-to-many mappings)

The following is an analogous (and simplified) example to the design question I'm facing: Suppose you have students, classes, and grades. Students can be in many different classes. Each class has ...
2
votes
2answers
266 views

Normalizing a table: finding unique columns over series of rows (Oracle 10.x)

I have a table with the following structure: WorkerPersons ------------------------------- ID (PK) PersonID (Indicates which version of Person the record describes) SomeColumn1 (data ...
2
votes
5answers
70 views

Is the set of data always normalized in one form or the other in Databases

Suppose I have a set of data, given the data and the relation schemas can I assume that the set of data is normalized in one form or the other. In my opinion raw data given, has to be normalized into ...
1
vote
1answer
73 views

Database normalization for Addresses

I am trying to build a database for a limousine company and I got stuck on how much Normalization should I do for Addresses related to Customers, Drivers, Affiliates and Orders. Basically the ...
1
vote
1answer
76 views

Database Normalization and Entity-relationship model

I've created the Entity-relationship model of my database and the I normalized it, but I've a issue, I don't know if after of the normalization I've to create new relations between news tables derived ...
1
vote
0answers
49 views

database normalization and optimization for postOffice DB [closed]

I am designing a web application for a post office. Database performance in database is critical for them. I have designed the below structure for the post database, is there any flaw in my db ...
1
vote
1answer
37 views

Decomposition that does not preserve functional dependency

When can a BCNF decomposition not preserve functional dependency... I am trying to figure this out for say R=(V,W,X,Y,Z)
1
vote
3answers
78 views

Multivalue Dependency violation?

i am confused about mvd violation, simply i cant figure out anything that will violate mvd, for example there are A B C three columns, each row is a tuple A B C a2 b2 c1 a1 ...
1
vote
4answers
88 views

Normalization: Is it considered Normal Form compliant to split static, numeric values like a year into their own table?

I am having an interesting discussion with another database designer about normalization. In this example, we have a GameTitles table and each record must contain the year in which the game was ...
1
vote
2answers
101 views

Is this good Database Normalization?

I am a beginner at using mysql and I am trying to learn the best practices. I have setup a similar structure as seen below. (main table that contains all unique entries) TABLE = 'main_content' ...
1
vote
1answer
73 views

How to: one to many to some to many? In PHP

I am building an online store. The store has several categories (~10), the categories have several products (~10 each), the products have many sub-products(20+ each). This is the part I am getting ...
1
vote
3answers
77 views

problem related to atomicity in database table

I am creating a forum page for which i have created following database schema: Forum(questionId, postedByUserId, questionSubject, questionBody, TagIds); Tags(tagId, tagName); Entries in Forum will ...
1
vote
2answers
137 views

Normalization properties

what are the properties of Normalization related to Database? Is there any relation between ACID properties and Normalization properties?
1
vote
1answer
29 views

DB representation of Product “Specials” where specials varies by fields

I am trying to work out the best way to represent the concept of "Specials" in my database - these relate to "products for sale". Each special will offer some sort of discount however they will vary ...
1
vote
2answers
85 views

Moving to second form

Guys, how would you create second form of this table (primary key is: {isbn,copy}): isbn AB-1234-X authorID IC45 authorName I.Conn title The final curtain copy 2 ...
1
vote
2answers
160 views

Should i to normalize this MySQL table

i'm designing a web site for a friend and i'm not sure what's the best way is to go in regards to one of my database tables. To give you an idea, this is roughly what i have Table: member_profile ...
1
vote
1answer
201 views

Checking 3rd Normal Form from Functional Dependencies

I have a question about determining whether a relation is in 3rd Normal Form based on functional dependencies. R = {A,B,C,D,E} A -> B BC -> E ED -> A From this, I determined the candidate ...
1
vote
2answers
139 views

Database Normal Forms

Looking for some good articles for beginner level about the different Normal forms.
1
vote
5answers
126 views

Recording how many times a user failed login

How would you design you database if say you had a table called user: User_Table : id, username, password, password_salt, email, email_salt Where would you store how many times they have failed ...
1
vote
1answer
144 views

Common Database Normalization Scenarios

I'm interested in reading a resource (book, or perhaps a web site) that covers normalization of database tables for common scenarios. I'm looking to store contact data for organizations, which ...
1
vote
3answers
113 views

Question about Normalisation

I am just wondering which of these would be better to use in a web application. I have a web app that lets the user post to the site. There are three different types of posts but similar enough that I ...
1
vote
4answers
176 views

database is normalized but the resulting keys are a problem

but the prob is there are relations ships which are so huge that after normalizing they have like a 20 primary keys( composite keys) which are really foreign keys but have to be declared as primary ...
1
vote
3answers
867 views

How to answer this interview question? [closed]

As i am in between 1-2 years experience what should i say to this interview question.... What are the types of Normalization? Should i say all the normal forms or what?
1
vote
3answers
202 views

Python code for determining which normal form tabular data is in

I'm looking for Python code that can take tabular data and establish which normal form(s) it is in (if any) and show any functional dependencies, etc.
0
votes
1answer
26 views

Normalising DataBase with MultiValued Dependency (4NF/5NF)

I am planning to do a job portal database. Here I have a some candidates subscribing to some notifications. (of course candidate name will be ID & the candidate have more columns associated ...

1 2