Glossary Flashcards
Key Words and Definitions
Data
Stored representations of objects and events that have meaning and importance.
Information
Data that has been processed in such a way as to increase knowledge of the person who uses it.
Database
An organised collection of logically related data.
Entity
A person, a place, an object, an event, or a concept in the user environment about which the organisation wishes to maintain data.
Relational Database
A database that represents data as a collection of tables in which all data relationships are represented by common values in related tables.
Database Management System (DBMS)
A software system that is used to create, maintain, and provide controlled access to a user database.
Entity Relationship Model
A logical representation of the data for an organisation or for a business area, using entities for categories of data and relationships for associations between entities.
Entity Relationship Diagram (ERD)
A graphical representation of an Entity Relationship Model.
Business Rule
A statement that defines or constrains some aspect of the business. It is intended to assert business structure or to control or influence the behaviour of the business.
Identifier / Primary Key
An attribute (or combination of attributes) whose value distinguishes instances of an entity type.
Foreign Key
An attribute in a relation that serves as the primary key of another relation in the same database.
Schema
A structure that contains description of objects created by a user, such as base tables and constraints as part of a database.
Structured Query Language (SQL)
SQL is the language used by all DBMS’s.
Entity Instance
A single occurrence of an entity type.
Referential Integrity Constraint
A rule that states that either each foreign key value must match a primary key value in another relation or the foreign key value must be null.