What is Normalization ?
Answer Posted / hema kumar sunnapu
Database designed based on the E-R model may have some amount of inconsistency, ambiguity and redundancy. To resolve these issues we have to do some amount of refinement is required. This refinement process is called as Normalization.
(OR)
Normalization is the process of efficiently organizing data in database. There are two goals of the normalization process: eliminating redundant data and ensuring data dependency make sense.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What do you mean by merge in oracle?
How do I decide when to use right joins/left joins or inner joins or how to determine which table is on which side?
What is oracle rowcount?
How do we create privileges in oracle?
How to pass a parameter to a cursor in oracle?
Explain view?
Explain the blob datatype?
How to drop an existing table in oracle?
What are the uses of a database trigger?
What is the purpose of tables, private synonyms and public synonyms in Oracle?
How do you find out from the RMAN catalog if a particular archive log has been backed-up?
Please explain oracle left join with an example?
Where is the export dump file located?
src name sex a,male b,female c,male d,female Required output : male female a,b c,d tried pivot but was not successfull select * from src pivot (max(name) for sex in ('MALE','FEMALE'));
How many types of database triggers exist?