What is Normalization ?
Answers were Sorted based on User's Feedback
Answer / lakshmi
Database normalization is a technique for designing
relational database tables to minimize duplication of
information and, in so doing, to safeguard the database
against certain types of logical or structural problems,
namely data anomalies.
For example, when multiple instances of a given piece of
information occur in a table, the possibility exists that
these instances will not be kept consistent when the data
within the table is updated, leading to a loss of data
integrity. A table that is sufficiently normalized is less
vulnerable to problems of this kind, because its structure
reflects the basic assumptions for when multiple instances
of the same information should be represented by a single
instance only.
| Is This Answer Correct ? | 169 Yes | 26 No |
Answer / darsh
It is a technique for designing a database system.
(BEST OF LUCK)
| Is This Answer Correct ? | 157 Yes | 57 No |
Answer / darsh
It is a technique for designing a database system.
(BEST OF LUCK)
| Is This Answer Correct ? | 114 Yes | 54 No |
Answer / abhinaw kaushik
Normalization is the process of braking down one table into
more than one tables so that data redudancy can be removed.
There are some rules to perform Normalization are called
Normal Forms.
| Is This Answer Correct ? | 51 Yes | 11 No |
Answer / ram
to avoiding duplicate data and easy maintence
it depends on entity relationship between columns
| Is This Answer Correct ? | 49 Yes | 13 No |
Answer / amarnath
The formal classifications describing the level of database
normalization in a data model are called Normal Forms (NF)
and the process of doing this is Normalization.
First normal form :
· A table is in first normal form when it contains no
repeating groups.
· The repeating column or fields in an un normalized table
are removed from the table and put in to tables of their own.
· Such a table becomes dependent on the parent table from
which it is derived.
· The key to this table is called concatenated key, with the
key of the parent table forming a part it.
Second normal form:
· A table is in second normal form if all its non_key fields
fully dependent on the whole key.
· This means that each field in a table ,must depend on the
entire key.
· Those that do not depend upon the combination key, are
moved to another table on whose key they depend on.
· Structures which do not contain combination keys are
automatically in second normal form.
Third normal form:
· A table is said to be in third normal form , if all the
non key fields of the table are independent of all other non
key fields of the same table.
| Is This Answer Correct ? | 27 Yes | 4 No |
Answer / kamal pratap singh
Normalization is the process of reduce the redundency in
database which is usefull for maintain the database very
smoothly and fast processing.
| Is This Answer Correct ? | 22 Yes | 3 No |
Answer / anshu
It is a technique to simple the design of database system.
| Is This Answer Correct ? | 69 Yes | 51 No |
Answer / sanjit
Step-by-step breakdown of complex data structure into simple
ones without loss of any information and relationship.
| Is This Answer Correct ? | 34 Yes | 16 No |
Answer / jannath
Normalization is the Process of reducing a complex data
structure into its simplest and most stable form by
eliminating redundant attributes, keys, and relationships.
| Is This Answer Correct ? | 14 Yes | 1 No |
I just want to maintain data like an employee can belongs to 3 or more departments . We can resolve this by using composite key but it avoids normalization rules. So Can anyone tell me how can I maintain data.
How do I use os authentication with weblogic jdriver for oracle and connection pools?
difference between truncate and delete ,drop?
Can Multiple instances be run on Single Machine???
What spfile/init.ora file parameter exists to force the CBO to make the execution path of a given statement use an index, even if the index scan may appear to be calculated as more costly?
Describe an oracle table?
What do database buffers contain?
what is the output of select * from emp where null=null & select * from emp where 1=1
What a SELECT FOR UPDATE cursor represent.?
Given two table employee and department EMP ---------------- empid deptid(fk) Dept --------------------- deptid(pk) deptname que-Write a query to find count of employee in each department. Expected Output- deptid countofEmployee --------------------------- 10 57 20 20 30 15
Explain about your project and its relation to the current job position you are applying to?
what is the dual table in oracle?