Basic Definitions.

Slides:



Advertisements
Similar presentations
©Silberschatz, Korth and Sudarshan4.1Database System Concepts Lecture-1 Database system,CSE-313, P.B. Dr. M. A. Kashem Associate. Professor. CSE, DUET,
Advertisements

UNIVERSITY OF PALESTINE business computer application College of Business Instructor: Mr. Ahmed Abumosameh.
©Silberschatz, Korth and Sudarshan1.1Database System Concepts Chapter 1: Introduction Purpose of Database Systems View of Data Data Models Data Definition.
Databases Chapter Distinguish between the physical and logical view of data Describe how data is organized: characters, fields, records, tables,
Database Management System (DBMS)
Databases and Processing Modes. Fundamental Data Storage Concepts and Definitions What is an entity? An entity is something about which information is.
1212 CHAPTER DATABASES. © 2005 The McGraw-Hill Companies, Inc. All Rights Reserved Competencies Distinguish between the physical and logical view.
Database Design Concepts Info1408
Yong Choi School of Business CSUB
What is a database? An organized collection of data. This can be in an electronic, paper, or other format. Types of databases Operational -constantly changing.
1 Introduction to databases concepts CCIS – IS department Level 4.
DATABASE MANAGEMENT SYSTEMS BASIC CONCEPTS 1. What is a database? A database is a collection of data which can be used: alone, or alone, or combined /
DATABASE MANAGEMENT SYSTEMS BASIC CONCEPTS 1. What is a database? A database is a collection of data which can be used: alone, or alone, or combined /
1 Advanced Computer Programming Databases. Overview What is a database? Database Basics Database Components Data Models Normalization Database Design.
1 INTRODUCTION TO DATABASE MANAGEMENT SYSTEM L E C T U R E
Relational databases and third normal form As always click on speaker notes under view when executing to get more information!
1 Session 3 Welcome: To session 3- the first learning sequence “ Introduction to Relational Model“ Recap : In the previous learning sequences, we discussed.
Information Systems & Databases 2.2) Organisation methods.
Quiz questions. 1 A data structure that is made up of fields and records? Table.
Data Modeling Yong Choi School of Business CSUB. Part # 2 2 Study Objectives Understand concepts of data modeling and its purpose Learn how relationships.
Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin APPENDIX C DESIGNING DATABASES APPENDIX C DESIGNING DATABASES.
Databases Chapter Copyright © 2011 by The McGraw-Hill Companies, Inc. All rights reserved.
1 Basic Definitions Fundamentals of Data Base Dr. Rashid Al_Zubaidy.
Lecture on Database Management System
Databases Salihu Ibrahim Dasuki (PhD) CSC102 INTRODUCTION TO COMPUTER SCIENCE.
©Silberschatz, Korth and Sudarshan 1.1 Database System Concepts قواعد البيانات Data Base قواعد البيانات CCS 402 Mr. Nedal hayajneh E- mail
DATA SCIENCE MIS0855 | Spring 2016 Designing Data
Database (Microsoft Access). Database A database is an organized collection of related data about a specific topic or purpose. Examples of databases include:
Lesson Objectives Aims You should know about: 1.3.2: (a) Relational database, flat file, primary key, foreign key, secondary key, entity relationship modelling,
Databases and Database User ch1 Define Database? A database is a collection of related data.1 By data, we mean known facts that can be recorded and that.
Data Preliminaries CSC 600: Data Mining Class 1.
CS 325 Spring ‘09 Chapter 1 Goals:
Let try to identify the conectivity of these entity relationship
Chapter 9 Domain Models.
Databases Chapter 9 Asfia Rahman.
Entity Relationship Model
Fundamentals of Database Design
Fundamentals of Databases
IS 130 Information systems 1
Creating a Database Microsoft Access.
Databases Chapter 16.
Data Structures & File Processing
Database Systems Chapter 3 1.
© The McGraw-Hill Companies, All Rights Reserved APPENDIX C DESIGNING DATABASES APPENDIX C DESIGNING DATABASES.
Chapter 1: Introduction
Entity-Relationship Model
CSCI-100 Introduction to Computing
بسم الله الرحمن الرحيم.
Introduction to Database Systems
Overview of Entity‐Relationship Model
What is a Database? A collection of data organized in a manner that allows access, retrieval, and use of that data.
Microsoft Applications
Database Modeling using Entity Relationship Model (E-R Model)
Relational Model.
CHAPTER 1: THE DATABASE ENVIRONMENT AND DEVELOPMENT PROCESS
Database Design Hacettepe University
Chapter 1: Introduction
Spreadsheets, Modelling & Databases
Entity-Relationship Diagram (ERD)
Chapter 1: Introduction
Chapter 1: Introduction
Data Preliminaries CSC 576: Data Mining.
Chapter 1: Introduction
Common Core Math I Unit 1, Day 1 One-Variable Statistics
Databases and Information Management
Database Management system
Chapter 1: Introduction
Entity-Relationship Design
Information system analysis and design
Database Design Chapter 7.
Presentation transcript:

Basic Definitions

A collection of incoming facts to the organization. Basic Definitions DATA A collection of incoming facts to the organization. DATA-ITEM NAME The context for a recorded data-item is often indicated by a name, such as date, name, age, etc. Information Incoming facts Data processing data Output

Basic Definitions DATA-ITEM VALUE It is the specific quantitative or qualitative values given to a specific data-item. For example: If ‘AGE’ is an attribute of some entity and it is equal to ’22’, then 22 is the related data value and it is quantitative. And if ‘CITY’ is an attribute of some entity and it is ‘Baghdad’ then ‘Baghdad’ represent the data item value for data-item name CITY, and it’s qualitative.

GROUP ITEMS AND ELEMENTRY ITEMS Basic Definitions GROUP ITEMS AND ELEMENTRY ITEMS A group item is a collection of closely related items of information. For example DATE usually has three parts, MONTH, DAY, YEAR, when any of there has no further subdivision into meaningful parts they are called ELEMENTRY data-item else the called GROUP data-item or (Aggregate).

An ENTITY Basic Definitions Items about which we store information are referred to as Entities. An Entity may be Tangible object such as: A person (Employee), place (Amman), or thing (parts) An Entity may be Intangible, such as: An event (something happens at a particular time), customer-account, etc.

Basic Definitions AN ATTRIBUTE An Entity has various properties which we may wish to record, so that we can recognize, remember, and describe it. These properties are called Attributes. For example: Attributes of human being include items such as: (height, weight, name, age, eye color, ets.) Attributes of car accident include items such as: (driver-name, time, location, cause of accident, ets.)

Basic Definitions RECORD Is a collection of related data-item which share a common context about a particular entity. FILE A file may be defined as a set of (Logical) records all of which related to a particular area of interest.

Basic Definitions ENTITY IDENTIFIER It is necessary for the programmer or data administrator to be able to refer to a record relating to a given entity, and it is necessary for the computer to be able to identify it and to have a means of finding it in the storage unit. For this purpose one of the attributes is usually designated an entity identifier.

Basic Definitions ENTITY IDENTIFIER It is necessary for the programmer or data administrator to be able to refer to a record relating to a given entity, and it is necessary for the computer to be able to identify it and have a means of finding it in the storage unit. For this purpose one of the attributes is usually designated an entity identifier. For example the entity identifier of an employee would be EMPLOYEE-NUMBER. And the entity identifier of an account record would be the ACCOUNT-NUMBER. Some time more than attribute is required in order to identify a record. For example, to identify an airline flight record the FLIGHT-NUMBER and FLIGHT-DATE are needed.

Basic Definitions KEY Is an attribute or a set of attributes which the computer uses to identify a record. PRIMARY KEY Is defined as that key used to uniquely identify one record. Such as ‘STUDENT-NUMBER’, ‘EMPLOYEE-ID’, etc.

Basic Definitions CUSTOMER table Customer-id Customer-name Customer-street Customer-city 192-83 Ahmed 23 Alma St. Jbeha 182-74 Kasim 12 Main St. Sweleh 677-600 Rana 7 Park Ave. Marka 321-140 Susan 57 North St. Jabal 710-569 Tarik 33 Alma St. 210-872 Ali 88 East St. Gardens Data-item name (Attributes) (Fields)

Basic Definitions CUSTOMER table Customer-id Customer-name Customer-street Customer-city 192-83 Ahmed 23 Alma St. Jbeha 182-74 Kasim 12 Main St. Sweleh 677-600 Rana 7 Park Ave. Marka 321-140 Susan 57 North St. Jabal 710-569 Tarik 33 Alma St. 210-872 Ali 88 East St. Gardens Data-item name Data-item value

Basic Definitions CUSTOMER table Customer-id Customer-name Customer-street Customer-city 192-83 Ahmed 23 Alma St. Jbeha 182-74 Kasim 12 Main St. Sweleh 677-600 Rana 7 Park Ave. Marka 321-140 Susan 57 North St. Jabal 710-569 Tarik 33 Alma St. 210-872 Ali 88 East St. Gardens Primary key

Basic Definitions CUSTOMER table Records . . Customer File Customer-id Customer-name Customer-street Customer-city 192-83 Ahmed 23 Alma St. Jbeha 182-74 Kasim 12 Main St. Sweleh 677-600 Rana 7 Park Ave. Marka 321-140 Susan 57 North St. Jabal 710-569 Tarik 33 Alma St. 210-872 Ali 88 East St. Gardens Records . . Customer File

END