dATABASE Presentation
dATABASE Presentation
CT042-3-1-IDB
GROUP ASSIGNMENT
Presentation By:
Advantage of DBMS
• Control of data redundancy
• Data security
• Data Backup and Recovery
• Data Integrity
Business Rule
• The business rule is a set of company behavior requirements. When company rules are
developed independently of process applications, they provide a powerful and flexible
approach to help companies achieve their goals faster and better satisfy changing business
requirements.
Normalization
• Its goals are to reduce redundancies and improve data integrity are to be achieved by
normalizing columns and tables in a database.
ER Model is a high-level data model which plays a significant role in terms of system
requirements, design and assessment for the handling and tracking of a system database.
Data design is a graphical approach to database design.
• Component of ER Diagrams
• Entity
• Attributes
• Relationship
Database Schema and Diagram
• A schema for a database is a set of metadata that can be presented in a visual diagram
describing the relationships between the objects and the data in a database.
Branch Table
EMPLOYEE
Data Dictionary
A database is the set of the names, definitions and features of the data components used or
recorded in the database of the information system.
A database stores metadata that identifies, describes and enhances the knowledge of data for
anyone who wants to use or assess it in the future.
SQL
• SQL is a structured query language for describing and carrying out database operations.
• SQL statements are used in activities such as updating the database or retrieving the
database.
DDL
• CREATE Statement
create table Employee_Login(E_Num int primary key not null foreign key references
Employee(E_Num), Username varchar(30) unique not null,Password varchar(30) not null);
• ALTER statement
• DROP statement