Introduction to database systems

Slides:



Advertisements
Similar presentations
Intro to Access 2007 Lindsey Brewer CSSCR September 18, 2009.
Advertisements

Database Ed Milne. Theme An introduction to databases Using the Base component of LibreOffice LibreOffice.
Name: Tatiana “Tania” Harrison
Database management system (DBMS)  a DBMS allows users and other software to store and retrieve data in a structured way  controls the organization,
Computer Concepts BASICS 4th Edition
CHAPTER 1 – INTRODUCTION TO ACCESS Aliya Farheen Feb 26, 2015.
With Microsoft Access 2010© 2011 Pearson Education, Inc. Publishing as Prentice Hall1 PowerPoint Presentation to Accompany GO! with Microsoft ® Access.
MICROSOFT OFFICE ACCESS 2007.
33 CHAPTER BASIC APPLICATION SOFTWARE. © 2005 The McGraw-Hill Companies, Inc. All Rights Reserved. 3-2 Competencies Discuss common features of most software.
ETEC 100 Information Technology
Integrating Access with the Web and with Other Programs.
Lecture Microsoft Access and Relational Database Basics.
Access Tutorial 1 Creating a Database
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.
Computers Are Your Future © 2008Prentice-Hall, Inc.
An Introduction to Database Management Systems R. Nakatsu.
Database Software Application
XP New Perspectives on Microsoft Access 2002 Tutorial 71 Microsoft Access 2002 Tutorial 7 – Integrating Access With the Web and With Other Programs.
Access Tutorial 8 Sharing, Integrating, and Analyzing Data
Database Structure Basics National Center for Immunization & Respiratory Diseases Influenza Division Pam Kennedy Analyst, McKing Consulting Regional Training.
MELISSA PICO SUMMER 08 Data Storage & Retrieval: Access instead of Excel.
Microsoft Access Database software. What is a database? … a database is an organized collection of data. A collection of data of similar information compiled.
General-Purpose APPLICATION SOFTWARE
An INTRODUCTION to MICROSOFT ACESS 2000 By Dr. Ennis-Cole.
Introduction to Databases. Overview  What is a Database?  What is a Database Management System?  How is information organized in a database?  What.
Access 2007 Database Application Managing Business Information Effectively BCIS 1 and 2.
PowerPoint 2003 – Level 1 Computer Concepts Cathy Horwitz April 25, 2011.
DAY 15: ACCESS CHAPTER 2 Larry Reaves October 7,
 A databases is a collection of data organized to make it easy to search and easy to retrieve in a useful, usable form.
 A database is a collection of data that is organized so that its contents can easily be accessed, managed, and updated. What is Database?
XP New Perspectives on Integrating Microsoft Office XP Tutorial 2 1 Integrating Microsoft Office XP Tutorial 2 – Integrating Word, Excel, and Access.
Introduction to Excel What Can I Do with a Spreadsheet?
Computers Are Your Future © 2005 Prentice-Hall, Inc.
Relational Databases (MS Access)
Database Essentials. Key Terms Big Data Describes a dataset that cannot be stored or processed using traditional database software. Examples: Google search.
Chapter 17 Creating a Database.
Introduction to Computers Lesson 10B. home Database A collection of related data or facts.
Why use a Database B8 B8 1.
Datafaces Data Base Management Software (DBMS) is a tool used to transform Data into Information. What is Data…? What is Information…? What is a Database…?
33 CHAPTER General- Purpose APPLICATION SOFTWARE.
Microsoft Access Designing and creating tables and populating data.
DAY 14: MICROSOFT ACCESS – CHAPTER 1 Madhuri Siddula October 1, 2015.
ITGS Databases.
C OMPUTING E SSENTIALS Timothy J. O’Leary Linda I. O’Leary Presentations by: Fred Bounds.
McGraw-Hill Technology Education © 2006 by the McGraw-Hill Companies, Inc. All rights reserved. 33 CHAPTER BASIC APPLICATION SOFTWARE.
Database Concepts Track 3: Managing Information using Database.
INTRODUCTION TO ACCESS. OBJECTIVES  Define the terms field, record, table, relational database, primary key, and foreign key  Create a blank database.
Microsoft Access Database Creation and Management.
Classwork: Common Errors Primary keys: don’t forget them! Primary keys: choose the best one! – “Name” and “birthday” are not the best choices. – “Phone.
CHAPTER 1 – INTRODUCTION TO ACCESS Akhila Kondai September 30, 2013.
CPSC 203 Introduction to Computers T97 By Jie (Jeff) Gao.
MSOffice Access Microsoft® Office 2010: Illustrated Introductory 1 Part 1 ® Database & Table.
XP New Perspectives on Microsoft Office Access 2003, Second Edition- Tutorial 8 1 Microsoft Office Access 2003 Tutorial 8 – Integrating Access with the.
Relational Database Systems Bartosz Zagorowicz. Flat Databases  Originally databases were flat.  All information was stored in a long text file, called.
DAY 14: ACCESS CHAPTER 1 RAHUL KAVI October 8,
COMPREHENSIVE Access Tutorial 1 Creating a Database.
Computers Are Your Future Tenth Edition Spotlight 5: Microsoft Office Copyright © 2009 Pearson Education, Inc. Publishing as Prentice Hall1.
ACCESS LESSON 1 DATABASE BASICS VOCABULARY. BACKSTAGE VIEW A menu of options and commands that allows you to access various screens to perform common.
Database Essentials Lesson 1. Software Orientation.
Database (Microsoft Access). Database A database is an organized collection of related data about a specific topic or purpose. Examples of databases include:
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.
Microsoft Office Illustrated
Tutorial 8 Objectives Continue presenting methods to import data into Access, export data from Access, link applications with data stored in Access, and.
What is a Database and Why Use One?
PHP and MySQL.
Microsoft Office Access 2003
Microsoft Office Access 2003
Spreadsheets, Modelling & Databases
Introduction to Access
Microsoft Office Access is the best –selling personal computer database management system. What is Access?
Presentation transcript:

Introduction to database systems

Terminology The term "database" refers to the collection of related records. It is just data! A database management system (DBMS) is a software package with computer programs that controls the creation, maintenance, and use of a database. The database data collection with DBMS is called a database system. Referring to the software as a database is incorrect but not uncommon.

But really what is a database? Databases are used in real life, most of you use them without realizing it WVU Directory – uses databases Facebook – uses databases Google – uses databases Every time you are asked to input data, you’re accessing a database

An example Lets look at the WVU Directory page. What you see is sometimes called a Form – it is nothing more than a friendly front end interface.

Wvu directory

Wvu directory Say we want to search for all students named John Smith When you hit search it will run a query that looks like this: SELECT * FROM Students WHERE (((Students.FirstName)="John") AND ((Students.LastName)="Smith"))

An example – isolating results WVU has a database somewhere that lists all students, when we do a search we search that database for all students who have a first name John AND a last name Smith. We could either get exactly one result, no results or multiple results.

Question This brings up the question, how do we differentiate between the John Smith that is a Math major and the John Smith that is a Education major in our database? One way could be to use email addresses, since we hope everyone has a “unique” email address. But, is there another “unique” identifier that separates one person from another?

Student ID FirstName LastName Major Email A123 John Smith Math jsmith@email.com B122 Jane Finance jsmith1@email.com In this example we can see why using LastName as a “unique” way to identify students maybe a bad idea. StudentID, FirstName, LastName, Major, Email are called Fields. Each entry is called a Record, a collection of records make up a Table. A collection of tables make up a database. The Field StudentID has a special name called Primary Key since it uniquely identifies each student, no two students can have the same StudentID.

What is Access? Is a relational database management system from Microsoft. Allows the user to create relationships between tables It comes together with Graphical User Interface (GUI). Access is NOT a database – it is a database management system. There are numerous other database management systems.

Access vs Excel When to use Access? When you need a relational database to store your data or you anticipate adding more tables. When you have a large amount of data Rely on external databases to derive and analyze the data you need Need to maintain constant connectivity to an external database Need to regroup data from different tables in a single place with complex queries Have many people working in the database and need strong options to update the data

Access vs Excel When to use Excel? Require a flat or ‘non relational’ view of your data Want to run calculations or statistical comparisons on your data Know your data set is manageable (no more than 15,000 rows) 12

Access or excel Depending on the type of data that you are managing and what you want to do with that data. If your goal is to maintain data integrity in a format that can be accessed by multiple users, Access is your best choice, whereas Excel is better suited for complex numerical data that you want to analyze in depth. If you store your data by using Access and analyze it by using Excel, you can gain the benefits of both programs.

The HOME Tab HOME Tab – the basic Access tab. Contains basic editing functions such as cut and paste along with most formatting actions. Views Clipboard Text Formatting Records Sort & Filter Find 14

The CREATE Tab CREATE Tab – Brings together all create operations in one area. Includes ability to create queries through the wizard or in Design view. Tables Queries Forms Reports 15

The EXTERNAL DATA Tab EXTERNAL DATA Tab – Contains all operations to facilitate collaborations and data exchange. Import & Link Export Collect Data 16

The DATABASE TOOLS Tab DATABASE TOOLS Tab – The area that contains the operational backbone of Access. Here you create and maintain relationships of the database. You also analyze the file performance and perform routine maintenance. Tools Relationships 17

Basic elements of a database Field – is a basic entry or a data element, such as the name or a book or the telephone number. A field that uniquely identifies a record is called a Primary Key. Record – is a complete set of all of the data (fields) pertaining to one person, place, etc Table – is a collection of records, every table contains the same fields in the same order Database – consists of one or more tables and the supporting objects used to get data from those tables. 18

objects Objects are the components that make a database function. Four most commonly used object types Tables Queries Forms Reports All these objects can be created and managed from Create tab.

Comparing Access to Excel A FIELD in Access is equivalent to a COLUMN NAME in Excel A RECORD in Access is equivalent to a ROW in Excel A TABLE in Access is equivalent to a WORKSHEET in Excel A DATABASE in Access is equivalent to a WORKBOOK in Excel