1.Sql server :-
sqlserver is a database platform for large-scale online transaction processing(OLTP),it is also a business intelligence platform for dataintegration,analysis, and reporting solutions.
2.Normalization
|
Steps of
normalization:
First Normal form
Entities of the table must have unique identifier or entity key.
Second Normal Form
All the attributes of the table must depend on the entity key for that entity.
Third Normal Form
All attributes that are not part of the key must not depend on any other non-key attributes.
Entities of the table must have unique identifier or entity key.
Second Normal Form
All the attributes of the table must depend on the entity key for that entity.
Third Normal Form
All attributes that are not part of the key must not depend on any other non-key attributes.
(or)
Defination: Normalization is the process of reducing data redundancy and
maintains data integrity. This is performed by creating relationships among
tables through primary and foreign keys. Normalization procedure includes 1NF,
2NF, 3NF, BCNF, and then the data is normalized.
3.De-normalization
The process of adding redundant data to get rid of complex join,
in order to optimize database performance. This is done to speed up database
access by moving from higher to lower form of normalization.
or
No comments:
Post a Comment