INFORMATION TECHNOLOGY DATABASE MANAGEMENT. A database is a collection of information organized to provide efficient retrieval. The collected information.

Slides:



Advertisements
Similar presentations
Information Systems Today: Managing in the Digital World
Advertisements

Organisation Of Data (1) Database Theory
The Relational Database Model – some relations you might want to avoid!!!
The Relational Database Model
Chapter 3 The Relational Model Transparencies © Pearson Education Limited 1995, 2005.
The Relational Database Model
Chapter 3. 2 Chapter 3 - Objectives Terminology of relational model. Terminology of relational model. How tables are used to represent data. How tables.
Relational Model Stores data as tables –Each column contains values about the same attribute –Each column has a distinct name –Each row contains values.
3-1 Chapter 3 Data and Knowledge Management
Introduction to Databases CIS 5.2. Where would you find info about yourself stored in a computer? College Physician’s office Library Grocery Store Dentist’s.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
Databases and Database Management Systems
Data at the Core of the Enterprise. Objectives  Define of database systems  Introduce data modeling and SQL  Discuss emerging requirements of database.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
APPENDIX C DESIGNING DATABASES
Database Design Concepts
Introduction to Databases. Overview  What is a Database?  What is a Database Management System?  How is information organized in a database?  What.
Database Lecture # 1 By Ubaid Ullah.
Lecture 2 The Relational Model. Objectives Terminology of relational model. How tables are used to represent data. Connection between mathematical relations.
Chapter 4 The Relational Model Pearson Education © 2014.
© Pearson Education Limited, Chapter 2 The Relational Model Transparencies.
Relational Model Session 6 Course Name: Database System Year : 2012.
Chapter 3 The Relational Model Transparencies Last Updated: Pebruari 2011 By M. Arief
Introduction –All information systems create, read, update and delete data. This data is stored in files and databases. Files are collections of similar.
Access 2007 Database Application Managing Business Information Effectively BCIS 1 and 2.
PHP Programming with MySQL Slide 8-1 CHAPTER 8 Working with Databases and MySQL.
Oracle Data Block Oracle Concepts Manual. Oracle Rows Oracle Concepts Manual.
Databases. Database A database is an organized collection of related data.
Chapter 3 The Relational Model. 2 Chapter 3 - Objectives u Terminology of relational model. u How tables are used to represent data. u Connection between.
Relational Databases (MS Access)
DAY 12: DATABASE CONCEPT Tazin Afrin September 26,
1 The Relational Database Model. 2 Learning Objectives Terminology of relational model. How tables are used to represent data. Connection between mathematical.
Information Systems & Databases 2.2) Organisation methods.
Databases. What is a database?  A database is used to store data. The word DATA is actually Latin for FACTS. A database is, therefore, a place, or thing.
System Design System Design - Mr. Ahmad Al-Ghoul System Analysis and Design.
1 Database & DBMS The data that goes into transaction processing systems (TPS), also goes to a database to be stored and processed later by decision support.
Unit 5 Advanced Databases The Purpose and features of a relational database.
Introduction to Databases. What is a database?  A database program is nothing more than an electronic version of a 3x5 card file  A database is defined.
Database Objective Demonstrate basic database concepts and functions.
Information Systems Today: Managing in the Digital World TB3-1 3 Technology Briefing Database Management “Modern organizations are said to be drowning.
Lection №4 Development of the Relational Databases.
A table is a set of data elements (values) that is organized using a model of vertical columns (which are identified by their name) and horizontal rows.
Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin APPENDIX C DESIGNING DATABASES APPENDIX C DESIGNING DATABASES.
The Relational Model. 2 Relational Model Terminology u A relation is a table with columns and rows. –Only applies to logical structure of the database,
Principles of Database Design, Part I AIMS 2710 R. Nakatsu.
Instructor: Pavlos Pavlikas1 How Data is Stored Chapter 8.
McGraw-Hill Career Education© 2008 by the McGraw-Hill Companies, Inc. All Rights Reserved. Concept 1 Database – Organized collection of related information.
* Database is a group of related objects * Objects can be Tables, Forms, Queries or Reports * All data reside in Tables * A Row in a Table is a record.
Howard Paul. Sequential Access Index Files and Data File Random Access.
CHAPTER 2 : RELATIONAL DATA MODEL Prepared by : nbs.
The Relational Model © Pearson Education Limited 1995, 2005 Bayu Adhi Tama, M.T.I.
Chapter 3 The Relational Model. Objectives u Terminology of relational model. u How tables are used to represent data. u Connection between mathematical.
Chapter 4 The Relational Model Pearson Education © 2009.
Database (Microsoft Access). Database A database is an organized collection of related data about a specific topic or purpose. Examples of databases include:
Client/Server Databases and the Oracle 10g Relational Database
Databases Chapter 16.
Chapter 2: Relational Model
© The McGraw-Hill Companies, All Rights Reserved APPENDIX C DESIGNING DATABASES APPENDIX C DESIGNING DATABASES.
Information Systems Today: Managing in the Digital World
CSCI-100 Introduction to Computing
Chapter 8 Working with Databases and MySQL
Chapter 4 The Relational Model Pearson Education © 2009.
Chapter 4 The Relational Model Pearson Education © 2009.
Databases and Structured Files: What is a database?
MANAGING DATA RESOURCES
The Relational Model Transparencies
Databases and Information Management
Database Fundamentals
Design tools and techniques for a relational database system
Databases WOW!! A database is a collection of related data.
Presentation transcript:

INFORMATION TECHNOLOGY DATABASE MANAGEMENT

A database is a collection of information organized to provide efficient retrieval. The collected information could be in any number of formats (electronic, printed, graphic, audio, statistical, combinations). There are physical (paper/print) and electronic databases. WHAT IS A DATABASE?

Database management is the process by which data is stored on a computer of other means so that there is efficient retrieval, updating and manipulation of data. DATABASE MANAGEMENT

A database package is a programme that is used to create and manage a computerised database. DATABASE PACKAGE

A manual database is one in which the data is stored physically. Example a filing cabinet. Each draw may store different type of data relating to the same subject. Manual and computerised database.

In a computerised database the data is stored electronically and can be managed more efficiently and effectively. Manual and computerised database.

Read chapter 14 LOG ON TO IT. List five (5) advantages and five disadvantages of a computerised database. ASSIGNMENT

Relational database A relational database is one that stores data in tables that consist of rows and columns. Each column has a unique name and each row has a primary key. DATABASE TERMINOLOGIES

Structure of a relational database DATABASE TERMINOLOGIES Database FileTableFieldCharacterRecord

Table A table is a set of data elements (values) that is organized using a model of vertical columns (which are identified by their name) and horizontal rows. A table has a specified number of columns, but can have any number of rows.... DATABASE TERMINOLOGIES

Table A table may also be referred to as a relation A table consist of rows also referred to as (record or tuple) and, Columns also referred to as (attribute or fields) DATABASE TERMINOLOGIES

Entity An entity is a person, place, thing or event for which data is collected and maintained. for example... A library system may contain data about different entities like BOOK and MEMBER. The entity may also be referred to as the subject DATABASE TERMINOLOGIES

Primary key – Field in a database table that uniquely identifies each record. The primary key cannot be null or duplicated. It is used mainly for accessing or searching a database since it will only return one record. DATABASE TERMINOLOGIES

Secondary key – An attribute (field) designed as an alternate means of accessing data; this attribute is not necessarily unique, or non-null. A search using a secondary key may return more than one record. DATABASE TERMINOLOGIES

Composite key – A primary index in a table that consists of more than one field so that no two records within the table can have the same combination of values in these fields. An example would be a table of contacts where the composite key combined the name and phone number fields.... DATABASE TERMINOLOGIES

Alternate key – any key which is not selected to be the primary key. Another name for the secondary key. DATABASE TERMINOLOGIES

Foreign Key– A column (field) in a database table that is used to match records with data in another table. One example would be a Customer ID field which is used as the primary key in the main Customer table and then as a foreign key in a table which lists the customer orders.. The first table is referred to as the referencing table and the second table is referred to as the referenced table. DATABASE TERMINOLOGIES