Blog

“For creating a Employee Management Information System of an Organisation a database management system(DBMS) is better or a file management system.” Justify the statement given above.

According to me for creating a Employee Management Information System of an Organisation a Database Management System(DBMS) is better then a File Management System. Drawbacks of File Management System Data Redundancy – Data redundancy refers to the duplication of data, lets Read More …

Design the Relational Schema for the E-R diagram that you have drawn for part Question 1. The relations must be at least in 2 NF. Perform the following on the relations :Identify the Foreign keys and referential integrity constraints in the relations.

In the relational databases, a foreign key is a field or a column that is used to establish a link between two tables. In simple words you can say that, a foreign key in one table used to point primary Read More …

Design the Relational Schema for the E-R diagram that you have drawn for part Question 1. The relations must be at least in 2 NF. Perform the following on the relations : Identify the Primary keys of all the relations.

A primary key is a column in a table that uniquely identifies the rows in that table. In the above ER-Diagram there are 5 Primary Key : c_code → (c_name, course_fees)Attribute c_code uniquely identifies each row in course table. So c_code is the Primary Key of Read More …

Design the Relational Schema for the E-R diagram that you have drawn for part Question 1. The relations must be at least in 2 NF. Perform the following on the relations :

b) Identify the domain of various attributes. Table Name : course Field Name Data Type Constraint Description c_code varchar(10) Primary Key Uniquely identify each course in this table c_name varchar(100) Course name course_fees int Total course fee Table Name : faculty Field Read More …