Data Elements and Tables IT Key Ideas, Dynamic Database Systems, 2002 Chapter 7.

Slides:



Advertisements
Similar presentations
Chapter 2.7 Data management.
Advertisements

ICDL Software Applications - Database Concepts. Unit 6 Data and Data Representation Database Concepts –File Structure –Relationships Database Design –Data.
Database Modeling IT Key Ideas, Dynamic Database Systems, 2002 Chapter 8.
What is an Information System?. What is data?  DATA is raw facts and figures.  These have very little meaning until they are sorted or they are used.
Computer Concepts 5th Edition Parsons/Oja Page 492 CHAPTER 10 File And Database Concepts Section A PARSONS/OJA Databases.
Database Design Concepts Info 1408 Lecture 2 An Introduction to Data Storage.
Database Design Concepts Info 1408 Lecture 2 An Introduction to Data Storage.
Information Storage and Retrieval CS French Chapter 3.
Relational Databases What is a relational database? What would we use one for? What do they look like? How can we describe them? How can you create one?
Dr Derek Peacock14/08/20151 Database Design 1:1 Relationships Dr Derek Peacock.
Databases. Objectives Define what a database is. Understand the difference between a flat and relational database Design and create a relational database.
Database terms Mr. Brunton.
Marcel VanLandeghem Ext 2488
Querying and Sorting IT Key Ideas, Dynamic Database Systems, 2002 Chapter 3.
2.3 Organising Data for Effective Retrieval
1 Advanced Computer Programming Databases. Overview What is a database? Database Basics Database Components Data Models Normalization Database Design.
DATABASE. A database is collection of information that is organized so that it can easily be accessed, managed and updated. It is also the collection.
Lesson 1 -What is a Database? -Fields and Records
MICROSOFT ACCESS Database Applications. Database Management System A database is a collection of organized data whose elements are in some way related.
Driving School Database
Databases. Basic Data Management Concepts 2 Database  Collection of all the data related to a particular topic or purpose -- for example, student data,
Database Management Systems
Databases: Tools for the Information Age. Sometime, during the second half of the 20th century, Western Society evolved from an industrial to a post-industrial,
Database A database program is a piece of software to organize and sort information. It creates an electronic list of information that can be sorted very.
Software. Records Fields Each record is made up of fields – categories of information. The fields here are Name, Surname, Address, Telephone and Date.
Slide 1 Standard Grade Computing Databases. Slide 2 Standard Grade Computing Definitions DatabaseA database is a structured collection of similar information.
Relational Databases (MS Access)
Complete theory from last lesson… Put today’s date in the front of your book Read pages 46 and 47 of the textbook…
Statistical Outcomes IT Key Ideas, Dynamic Database Systems, 2002 Chapter 6.
Information Systems & Databases 2.2) Organisation methods.
ATADESAB. BATLE CORDER DLEIF Lesson objectives In this lesson you will learn some basic database terms and learn how a database is created.
Microsoft Access Database Software.
Database Design Shortcuts. What’s your problem? Sort out the basic idea for the Database… e.g. : Your local Angling Club is looking to set up a Database.
Surname:Brown Forename:James Form:7B Date of Birth: Telephone:
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.
DATABASE SYSTEMS. DATABASE u A filing system for holding data u Contains a set of similar files –Each file contains similar records Each record contains.
Introduction to Data Bases. What is (are) Data Information? - no Information is PROCESSED data Data are facts - descriptions of an entity, Entity -> Me.
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.
3 / 12 Databases MIS105 Lec13 Irfan Ahmed Ilyas CHAPTER Prepared By:
Access Review. Access Access is a database application A database is a collection of records and files organized for a particular purpose Access supports.
ERD ( Conceptual data model From the statement of data requirements a conceptual data model is produced. This describes.
Relational Databases. Relational database  data stored in tables  must put data into the correct tables  define relationship between tables  primary.
Quiz questions. 1 A data structure that is made up of fields and records? Table.
Microsoft Access is a database program to manage sort retrieve group filter for certain records.
Databases.  A database is simply a collection of information stored in an orderly manner.  A database can be as simple as a birthday book, address book.
ACIS Introduction to Data Analytics & Business Intelligence Database s Benefits & Components.
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.
Introduction to Access Chapter 13 pages 1-4. What is a database??? Related information is stored in databases  All SC student information is stored in.
Access Lessons 1, 2 and 3 ©2009 M and K Solutions, LLC – All Rights Reserved.
Different key fields for different cases More to Learn A key field is a field that can be used to uniquely identify one specific record from other records.
Instructor: Pavlos Pavlikas1 How Data is Stored Chapter 8.
Part 1.  To answer the question “what is a database?”  To understand the basic components of a database and start to plan/create our own.
Howard Paul. Sequential Access Index Files and Data File Random Access.
BIS 360 – Lecture Six (Part 1) Conceptual Data Modeling (Chapter 10 and partial Chapter 12)
Today You will become familiar with the Appleworks software. You will create your own ‘fields’ and ‘records.’ In the actually program!!!!
Marcel VanLandeghem Website ait.saultcollege.ca/marcel.vanlandeghem.
INFORMATION TECHNOLOGY DATABASE MANAGEMENT. A database is a collection of information organized to provide efficient retrieval. The collected information.
Access Lessons 1, 2 and 3 ©2009 M and K Solutions, LLC – All Rights Reserved.
G057 - Lecture 05 From Scenario To Design Mr C Johnston ICT Teacher
Database Relationships
Creating a Database Microsoft Access.
Databases Chapter 16.
Chapter 12 Information Systems.
Database Relationships
GCSE Computing Databases.
Database Design and Development
Database Relationships
Databases.
Presentation transcript:

Data Elements and Tables IT Key Ideas, Dynamic Database Systems, 2002 Chapter 7

Databases Table IT Key Ideas, Dynamic Database Systems, 2002 Record Field A table or file is a collection of related data. For example, a book with pages listing the details of all the members in a club. A record, card or form, is a collection of data for one individual entity. Each record contains the same type of data. For example, the information about a single member is a record (one line of the membership page). A field is one element of data, one single attributes of the entity. For example, the member’s date of birth is a single element of data. page 75

Table IT Key Ideas, Dynamic Database Systems, 2002 of members

Record IT Key Ideas, Dynamic Database Systems, 2002 a member

Data IT Key Ideas, Dynamic Database Systems, 2002 a word, character

Database Management Systems A relational database management system consists of a number of tables. Each table stores data about a particular entity. The tables are related through common fields creating a system, from which data can be retrieved quickly and efficiently.

Data Elements IT Key Ideas, Dynamic Database Systems, 2002 a person’s surname a person’s hair colour a person’s date of birth a car’s registration number a teacher’s qualification a student’s semester grade a venue’s seat number a venue’s seating capacity page 75

Calculated Data Elements IT Key Ideas, Dynamic Database Systems, 2002 page 75 a student’s percentage (on a test) a club’s number of financial members a business’s profit in a theatre the seats available

Data Elements page 76 suggest at least six elements of data that would be stored IT Key Ideas, Dynamic Database Systems, 2002

Data Elements Exercise 7.1page 77 IT Key Ideas, Dynamic Database Systems, 2002

Stored or Calculated Fields IT Key Ideas, Dynamic Database Systems, 2002 Data ElementStored or Calculated? Lesson Date Lesson Time Instructor Swimmer Number of swimmers Date of Birth Group Number of lessons Fees paid stored calculated stored calculated stored

Data Elements & Tables page 79 suggest at least six elements of data that would be stored in a Stores table IT Key Ideas, Dynamic Database Systems, 2002 Store Number Shop Number Address Suburb Phone Number Fax Number Manager

Data Elements Exercise 7.3page 80 IT Key Ideas, Dynamic Database Systems, 2002

Data Elements Exercise 7.4page 81 IT Key Ideas, Dynamic Database Systems, 2002

Grouping Data Elements page 82 suggest at least ten fields and group them IT Key Ideas, Dynamic Database Systems, 2002

SurnameRegistration #Date Paid AddressMakeAmount Paid SuburbTypeExpiry Date Driver Licence #Engine #Renewal Period DriverVehicleRenewal Registration

Grouping Data Elements Exercise 7.5page 83 IT Key Ideas, Dynamic Database Systems, 2002

Chapter 7 ********************************