Skip to main content

Normalization

Normalization in BDMS

Normalization is a process or a technique which is used to reduced or decompose the redundancy(repetition) within the database. In common language you can say that normalization is used to remove repetition of data or record within database.
We have totly six types of normal forms.
  • 1 st NF (1st normal form)
  • 2 nd NF (2nd normal form)
  • 3 rd NF (3rd normal form)
  • BCNF (BOYCE CODD NF)
  • 4 th NF
  • 5 th NF

Dependency

It can be defined as same values in the table are depending on a specific column. There are three type of dependency.
  • Full function dependency
  • Partial function dependency
  • Transitive function dependency

Full function dependency

In this all the non-key attributes fully or functionally depending on only one key attribute column. and the record in the table which is uniquely identify by using key attributed column.

Partial function dependency

In a variable we may have more than one attribute column and some of the column are depending one key attribute column and some other non-key attributes are depending on other key attribute so these table can not follow full function dependency. we can avoid this problem by using 2nd normal form.

Transitive function dependency

Here one non-key attribute function is depending on another non-key attribute table should not maintain transitive function dependency so avoid this by using 3rd normal form.

1st Normal form

In this normal form user need to remove the multi-value attribute on the table.
EXAMPLE
Example First normal formExample First normal form

2nd Normal form

In 2nd Normal form maintain the 1st Normal form and remove the partial function dependency.
EXAMPLE
The following functional dependencies exist:

1. The attribute ProfessorName is functionally dependent on attribute IDProf (IDProf --> ProfessorName)

2. The attribute StudentName is functionally dependent on IDSt (IDSt --> StudentName)

3. The attribute Grade is fully functional dependent on IDSt and IDProf (IDSt, IDProf --> Grade)
Example Second normal form

3rd Normal form


In 3rd Normal form maintain the 1st and 2nd normal form and remove the transitive function dependency.
1. Name, Account_No, Bank_Code_No are functionally dependent on ID (ID --> Name, Account_No, Bank_Code_No) 

2. Bank is functionally dependent on Bank_Code_No (Bank_Code_No --> Bank)
Example Third normal formExample Third normal form

BCNF

Boyce and Codd Normal Form is a higher version of the Third Normal form. This form deals with certain type of anomaly that is not handled by 3NF. A 3NF table which does not have multiple overlapping candidate keys is said to be in BCNF.
normalization in sql

Comments

Popular posts from this blog

SQL Commands

SQL Commands SQL Commands  are mainly classified into four types, which are DDL command, DML command, TCL command and DCL command. SQL is mainly divided into four sub language Data Definition Language(DDL) Data Manipulation Language(DML) Transaction Control Language(TCL) Data Control Language(DCL) Only for remember You can easily remember all these SQL command like below; DDL Commands:  "dr. cat" d-drop, r-remane, c-create, a-alter, t-truncate. DML Commands:  "sudi". s-select, u-update, d-delete, i-insert. TCL Commands:  These commands are related to transaction, commands are: Commit, Rollback, Savepoint

Python - Function

Define Function in Python Function is block of codes. Python provide built-in and user define both types of function. Built-in function User defined function Built-in function This type of functions are pre-defined, you can directly use in your program. For example  print function is used for display message on screen or console. Print hello world in python a = "Hello World!" print a User defined function This type of functions are defined by programmer. According to your requirement you can defined you function name and it's functionality. In python you can define any function by using  def keyword. Syntax for define function in python def function_name ( parameter ) function body Define function in python def my_function(fname): print(fname + " Refsnes") my_function ("Emil") my_function ("Tobias") my_function ("Linus") Output Emil Refsnes Tobias Refsnes Linus Refsnes Explanation

Frames

A framed page is actually made up of multiple HTML pages. There is one HTML document that describes how to break up the single browser window into multiple windowpanes. Each windowpane is filled with an HTML document. Frame Page Architecture §   A <FRAMESET> element is placed in the html document before the <BODY> element. The <FRAMESET> describes the amount of screen real estate given to each windowpane by dividing the screen into ROWS or COLS . §   The <FRAMESET> will then contain <FRAME> elements, one per division of the browser window. §   Note: Because there is no BODY container, FRAMESET pages can't have background images and background colors associated with them. Frame Page Architecture <HTML> <HEAD> <TITLE> Framed Page </TITLE> <FRAMeSET COLS=“23%,77%”> <FRAME SRC=“Doc1.html”> <FRAME SRC=“Doc2.html”> </FRAMeSET > </HEAD> </HTML>