Database Systems Unit 16.

Slides:



Advertisements
Similar presentations
How data is stored. Data can be stored in paper-based systems including: Reference books Dictionaries Encyclopaedias Directories Index Files Filing systems.
Advertisements

Database Management Systems and Enterprise Software
INFORMATION TECHNOLOGY Software Applications. WORD PROCESSING WP is the most commonly used package in business. A large number of documents are produced.
Database management system (DBMS)  a DBMS allows users and other software to store and retrieve data in a structured way  controls the organization,
Databases & Data Warehouses Chapter 3 Database Processing.
Microsoft Access Database software. What is a database? … a database is an organized collection of data. A collection of data of similar information compiled.
Information and Data What’s the difference between two? Information systems = hardware and software working together… It will take DATA that has been put.
Database Management Systems. This lesson includes the following sections  Databases and Management Systems Working with a Database Enterprise Software.
Access 2007 Database Application Managing Business Information Effectively BCIS 1 and 2.
MICROSOFT ACCESS 2007 BTA – Spring What is Access?  Microsoft Access is a database management system…this means that it contains database information.
 A database is a collection of data that is organized so that its contents can easily be accessed, managed, and updated. What is Database?
Making a great Project 2 OCR 1994/2360. Design Some candidates dive in, make a database or spreadsheet, then try and make a design afterwards. This won’t.
Software. Records Fields Each record is made up of fields – categories of information. The fields here are Name, Surname, Address, Telephone and Date.
Relational Databases (MS Access)
What have we learned?. What is a database? An organized collection of related data.
Relational Databases. Relational database  data stored in tables  must put data into the correct tables  define relationship between tables  primary.
GIS Data Models GEOG 370 Christine Erlien, Instructor.
Databases and Speadsheets
Database Management Systems (DBMS)
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.
Databases Letts Chapter 11. A database program can be used to:  sort a file into a different order;  search through the records for a matching string.
Lesson 13 Databases Unit 2—Using the Computer. Computer Concepts BASICS - 22 Objectives Define the purpose and function of database software. Identify.
1 Databases A database is a collection of related pieces of information A database can be computerised or non- computerised (manual - such as filing system,
Microsoft Access Database Creation and Management.
Instructor: Pavlos Pavlikas1 How Data is Stored Chapter 8.
Lesson 13 Databases Lesson Objective: Understand the main features of database software Learning Outcome: Clearly identify the uses of database software.
GCSE ICT How data is stored. How is data stored? Data can be stored in paper-based systems including: –Reference books –Dictionaries –Encyclopaedias –Directories.
Database Presentation BIM, Mrs. Bailey. **Database Notes** Use new sheet of paper! Microsoft Access - known as a database management system or DBMS Database.
Database (Microsoft Access). Database A database is an organized collection of related data about a specific topic or purpose. Examples of databases include:
Edexcel OnCourse Databases Unit 9. Edexcel OnCourse Database Structure Presentation Unit 9Slide 2 What is a Database? Databases are everywhere! Student.
Relational Databases Today we will look at: Different ways of searching a database Creating queries Aggregate Queries More complex queries involving different.
Section 3 Computing with confidence. The purpose of this section The purpose of this section is to develop your skills to achieve two goals: 1-Becoming.
N5 Databases Notes Information Systems Design & Development: Structures and links.
Tutorial 1 Creating a Database
DATABASE.
IGCSE 4 Cambridge Designing a database table Computer Science
Prepared By: Bobby Wan Microsoft Access Prepared By: Bobby Wan
Ashima Wadhwa Assistant Professor(giBS)
IST 220 – Intro to Databases
Databases.
Databases.
GO! with Microsoft Office 2016
IS 130 Information systems 1
IBC233 Week 6.
Creating a Database Microsoft Access.
Databases Chapter 16.
Introduction to Database Systems
Introduction to Computing
Database Systems Chapter 3 1.
BASIC INFORMATION ABOUT DATABASE MANAGEMENT SOFTWARE
The Database Application
GO! with Microsoft Access 2016
Access Creating a Database
Microsoft Office Illustrated Fundamentals
Created by Kamila zhakupova
Introduction to Database Systems
ICT Database Lesson 1 What is a Database?.
Access Creating a Database
Access Maintaining and Querying a Database
Database Management  .
What is a Database and Why Use One?
Databases.
More about Databases.
Data Types and Field Properties
Spreadsheets, Modelling & Databases
DATABASES WHAT IS A DATABASE?
The ultimate in data organization
Databases This topic looks at the basic concept of a database, the key features and benefits of a Database Management System (DBMS) and the basic theory.
IBC233 Week 5.
Database Management Systems and Enterprise Software
Presentation transcript:

Database Systems Unit 16

What is a Database? Databases are everywhere! Student records Mobile phone call records Supermarket stock records Why use a database? Word Processors are used to process text Spreadsheets are used to process numbers What do databases process? What is data? Database Structure Presentation Unit 16

What is a Database A database is a collection of data Database Management Software (DBMS) is the application that creates and accesses the database Common DBMS include: Microsoft Access Oracle MySQL Databases store data in a structured way Database Structure Presentation Unit 16

Database Structure Databases are divided into tables so all the data about a certain thing (student, telephone call, stock item) is stored together Tables are further sub-divided into fields, which set the structure of a table by defining the data items to be stored Each table has a number of Records. Each record describes one ‘thing’ with values for each of the fields What are the benefits of storing data in a structure like this? Database Structure Presentation Unit 16

Primary Key One field within each table is normally chosen to be the primary key Unique identifier for each record Usually a numeric or alphanumeric code Ensures each record can be uniquely identified Additional keys can be defined to speed up searching for records in a large database Database Structure Presentation Unit 16

Database Objects Tables – store the data itself Queries – used to answer questions about the data. Can extract records which match certain criteria Reports – used to format the output of data from tables or queries in a user friendly way – mainly for printing. Forms – used to input and/or output data in a user friendly way – for on-screen use Database Structure Presentation Unit 16

Database Advantages Compared to a paper based filing system: Creating and inserting records is quicker You can sort the records in any order Records can be found quickly, searches can be done on any field Amendments can be easily done Space required is much less Data is more easily shared Compiling reports which draw data from many records is much easier Database Structure Presentation Unit 16

Database Advantages Compared to other software (e.g. Spreadsheet) Can create multiple related tables (not covered in this unit) Designed for large, multi-user databases Searches can be more complex and can be saved (queries) Can create reports and forms Can create complete end user applications Database Structure Presentation Unit 16

Database Disadvantages Database software can be quite expensive, complex to understand and difficult to learn how to use. Large multi-user databases require high performance hardware and expert technical support Databases need to be carefully designed in order to provide the required functionality and performance Care must be taken to ensure that the data that is put into the database is correct. If the database stores data about real people then it must be registered with the Data Protection Act and its requirements must be complied with. Database Structure Presentation Unit 16