I've been assigned a task to carry out the following exercise using C
code:
Functional Dependencies & Normalization:
a. Specifying & testing Functional Dependencies on a relation
b. Normalization based on Functional Dependencies
c. Testing for lossless decomposition
d. Testing for dependency preservation
For this I've taken a books database that consists of the following
attributes:
ISBN,Title,Auth or,Published year,Publisher, Price,Genre,Pag es,country.
the functional dependencies present in this relation are:
ISBN -Title,Author,Pu blished
year,Publisher, Price,Genre,Pag es,country.
Title -ISBN,Author,Pub lished
year,Publisher, Price,Genre,Pag es,country.
Author -Country
Author -publisher
could anyone please tell me how to proceed with it in the first step?
i've no clue about how to implement database concepts using C
language.How do i specify the dependencies?ho w do i test them using C?
etc etc.
could anyone please help me out with the code?
code:
Functional Dependencies & Normalization:
a. Specifying & testing Functional Dependencies on a relation
b. Normalization based on Functional Dependencies
c. Testing for lossless decomposition
d. Testing for dependency preservation
For this I've taken a books database that consists of the following
attributes:
ISBN,Title,Auth or,Published year,Publisher, Price,Genre,Pag es,country.
the functional dependencies present in this relation are:
ISBN -Title,Author,Pu blished
year,Publisher, Price,Genre,Pag es,country.
Title -ISBN,Author,Pub lished
year,Publisher, Price,Genre,Pag es,country.
Author -Country
Author -publisher
could anyone please tell me how to proceed with it in the first step?
i've no clue about how to implement database concepts using C
language.How do i specify the dependencies?ho w do i test them using C?
etc etc.
could anyone please help me out with the code?
Comment