What is normalization and types of normalization?
Answer Posted / jasmine
Normalization is a process of designing the table(relation)
with the reduced redundancy and making clear whether the
attributes in a table is depend on the primary key or
dependencies make sense(ie:storing only the related datas
ito the table). This is achieved by normal forms.
Basic types of normal forms are,
1NF-first normal form(Eliminates duplicate or
repeating values)
2NF-second normal form(Eliminates redundant datas in
one or more tables)
3NF-Third normal form(Removing the columns that are
not truely depending on the primary key)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Differentiate between syntax and runtime errors.
How does sql developer connect to oracle database?
When is the update_statistics command used?
What's the difference between a primary key and a clustered index?
What is a table in a database?
name 3 ways to get an accurate count of the number of records in a table? : Sql dba
What is parallel hint?
What are the properties of a transaction?
can sql servers linked to other servers like oracle? : Sql dba
What are the advantages of pl sql over sql?
What is embedded sql in db2?
What are the types of operators available in sql?
How many parts of a pl sql block are optional?
What is the process of copying data from table a to table b?
What is auto increment feature in sql?