what is narmalization
Answers were Sorted based on User's Feedback
Answer / mithun
Normalization is a process of organizing data in databased, which includes creating tables and establishing relationship between them.
1st Normal Form - Do not use multiple fields to store same data.
Eliminate repeating groups in individual tables.
Create a separate table for each set of related data.
Identify each set of related data with a primary key.
2nd Normal Form - Records should not depend on anything other than a table's primary key.
Create separate tables for sets of values that apply to multiple records.
Relate these tables with a foreign key.
3rd Normal Form - Eliminate fields that do not depend on the key.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / reji
Normalization is the process of splitting a single table of
data into miltiple one's inorder to get an easy access.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sri
The process of removing redendency and inconsistency from
the relation/table.
Is This Answer Correct ? | 0 Yes | 1 No |
Explain about asp.net state management?
How to consume a webservice in a windows application without adding through the web reference?
Where is session cookies stored?
Explain the use of duration attribute of @outputcache page directive.
What is difference between web config and global asax?
Where code pages are used?
How can exception be handled with out the use of try catch?
Why we are using mvc instead of asp.net? : Asp.Net MVC
Any alternative to avoid name collisions other then Namespaces?
what does membership class provide?
What is web.config and machine.config ?
3 Answers Collabor, NDPL, TCS,
How to create events for a control?