0% found this document useful (0 votes)
14 views

Database Systems: Tutorial - 1

The document describes an employee record management system that stores employee information like name, ID, address, date of birth, department, and current projects in a database. A C program should be written to perform operations on this database like adding records, displaying all records, searching for a specific employee, and retrieving the departments or projects associated with an employee, using a file to store the employee records in a structured format.

Uploaded by

vivek patel
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views

Database Systems: Tutorial - 1

The document describes an employee record management system that stores employee information like name, ID, address, date of birth, department, and current projects in a database. A C program should be written to perform operations on this database like adding records, displaying all records, searching for a specific employee, and retrieving the departments or projects associated with an employee, using a file to store the employee records in a structured format.

Uploaded by

vivek patel
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Database Systems

Tutorial 1
(Structures and Files)

Employee record management system: A record in the system consists of the employees last name, first name and employee id , address, and date of birth. The system should also store information about the department for which the employee is working. An employee may be associated with more than one department. Also the names of the projects, in which the employee is currently involved, should be stored. Certain operations can be performed on this data base of records which allow to 1. 2. 3. 4. 5. Add records to the system, Display all the records in the system, Search for a particular employee record, Retrieve the list of departments in which the employee is working, and Retrieve the names of the projects in which the employee is currently involved.

Write a menu-driven program in C that uses a file to store the employee records of the company in the form of structures and should be able to perform the above operations.

You might also like