Microsoft Access 1 Database Creation and Management.

Slides:



Advertisements
Similar presentations
Microsoft Access 2 Database Creation and Management.
Advertisements

1 After completing this lesson, you will be able to: Create a database. Create a table using the Table Wizard. Create and modify a table in Design view.
Introduction to Microsoft Access
Microsoft SQL Server 2008 From the Program menu choose: Microsoft SQL Server 2008 R2  SQL Server Management Studio. You may see a window indicating the.
Microsoft Access 3 Database Creation and Management.
1 After completing this lesson, you will be able to: Create a workbook. Understand Microsoft Excel window elements. Select cells. Enter text, numbers,
ACTIVITY-6 WORKING WITH SPREADSHEET SOFTWARE TO PREPARE/FORMAT DIFFERENT KINDS OF SHEETS/TABLES BRIDGE COURSE of INFORMATION & COMMUNICATION TECHNOLOGY.
Database Creation and Management
MICROSOFT OFFICE ACCESS 2007.
Lab Exercise This Week PHP Basics See last Friday’s slides for requirements Make sure you show the final results to TA to get credit 1IST210.
The Relational Model Chapter Two DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 7 th Edition.
The Relational Model Chapter Two DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 6 th Edition.
Microsoft Access 3 Database Creation and Management.
Microsoft Access 1 Database Creation and Management.
Fundamentals of Relational Database Yong Choi School of Business CSUB, Bakersfield.
Microsoft Access 2003 Introduction To Microsoft Access 2003.
The Relational Model CIS 218. Entity A Person, Place, Thing or Transaction Something the user wants to track.
The Relational Model Chapter Two DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 5 th Edition.
XP New Perspectives on Microsoft Office Access 2003, Second Edition- Tutorial 1 1 Microsoft Access 2003 Tutorial 1 – Introduction To Microsoft Access 2003.
Information systems and databases Database information systems Read the textbook: Chapter 2: Information systems and databases FOR MORE INFO...
Microsoft Access 1 Database Creation and Management.
Microsoft Access 2007 Microsoft Access 2007 Introduction to Database Programs.
1 of 5 This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT. © 2007 Microsoft Corporation.
MS Access Tutorial MGMT 683 J. Rees. Introduction MS Access is a relational database management system (RDBMS) Other PC-based RDMBS include: –MS FoxPro.
Relational Database Need to Knows. What is a database? Data - is just a pile of numbers or stats. A business "organises" the data to be meaningful and.
Module Title? DBMS E-R Model to Relational Model.
Working with Queries in Microsoft Access The Access Workbench: Section Three DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition.
Microsoft Access 2 Database Creation and Management.
Microsoft Office 2007 FastFacts May 6, Topics The Microsoft Office Button The Quick Access Toolbar The Ribbon The Mini Toolbar.
Creating a Web Site to Gather Data and Conduct Research.
Microsoft Access 3 Database Creation and Management.
IE 423 – Design of Decision Support Systems Data modeling and database development.
Fundamentals of Relational Database Yong Choi School of Business CSUB, Bakersfield.
Lesson 17 Getting Started with Access Essentials
Microsoft Access 2000 Presentation 2 Creating Databases Part I (Creating Tables)
The Relational Model Chapter Two DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition.
1 By: Nour Hilal. Microsoft Access is a database software where data is stored in one or more Tables. A Database is a group of related Tables. Access.
Microsoft Access You will need a pen/pencil.. What is Microsoft Access? Access is a database management system.  Create a database, add/change delete.
Database1 Database Creation and Management. About Database Development…. The course is not designed to train you as an IT specialist……. It is not about.
Chapter 17 Creating a Database.
XP New Perspectives on Microsoft Access 2002 Tutorial 1 1 Microsoft Access 2002 Tutorial 1 – Introduction To Microsoft Access 2002.
Lesson 1: Exploring Access Learning Objectives After studying this lesson, you will be able to: Start Access and identify elements of the application.
Chapter 2. The Relational Model IST2101. Chapter 1 Review Potential problems with Lists – Deletion – Update – Insertion Avoid these problems using a relational.
Database Applications – Microsoft Access Lesson 1 Introduction 26 Slides in Presentation Updated 8/12.
XP New Perspectives on Microsoft Access 2002 Tutorial 1 1 Microsoft Access 2002 Tutorial 1 – Introduction To Microsoft Access 2002.
Introduction to Database using Microsoft Access 2013 Part 7 November 19, 2014.
Lesson 01: Introduction to Database Software. At the end of this lesson, students should be able to: State the usage of database software. Start a database.
Ch. 101 Database Management An Introduction to Databases.
+ Relational Model IST210 Class Lecture. + Premiere Products A new company that is going to sells random merchandise via sales representatives You have.
THE RELATIONAL MODEL I IST 210: Organization of Data IST210 1.
The Relational Model Chapter Two DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 4 th Edition.
COMPUTER SKILLS MS-ACCESS. Introduction Access is a piece of software known as a database management system. At its most basic level, it can be used to.
Microsoft Access 2013 ®® Case Study Creating a Database.
INTRODUCTION TO DATABASES (MICROSOFT ACCESS)
Database Essentials Access Lesson 1.
Practical Office 2007 Chapter 10
Introduction to Microsoft Access
After completing this lesson, you will be able to:
Database Essentials Access Lesson 1.
Access Lesson 1 Understanding Access Fundamentals
Tutorial 1 – Introduction To Microsoft Access 2003
Case Study Creating a Database
Database.
Tutorial 1 – Introduction To Microsoft Access 2003
1) What is a Database? A database is an organized collection of information about a subject. Examples: Address Book, Telephone Book.
Access: Access Basics Participation Project
Microsoft Excel 101.
From and Report.
Introduction to Access
Presentation transcript:

Microsoft Access 1 Database Creation and Management

Overview of Access One of database management systems software. Access, SQL Server, Oracle, DB 2 MS Access is a relational model (database). a collection of tables that are related to one another based on a common field. Relational model – developed based on predicate logic and set theory from mathematics.

Relational model (database) A schematic diagram of a relational database (a) and a sample part of a relational database showing different tables (b)

Properties of Relation 1 Based on the set theory 1. There are no duplicate rows. The body of the relation is a mathematical set (i.e., a set of rows), and sets in mathematics by definition do not include duplicate elements. If a "relation" contains duplicate rows, then it is not a relation.

Properties of Relation 2 2. Rows are unordered (top to bottom). Sets in mathematics are not ordered. So, even if a relation A's rows are reversely ordered, it is still the same relation. Thus, there is no such thing as "the 5th row" or the last row. In other words, there is no concept of positional addressing.

Properties of Relation 3 3. Columns are unordered (left to right). The heading of a relation is also defined as a set. There is no such thing as "5 th column" or the last column.

Properties of Relation 4 4. Every value is atomic. At every row-and-column position within the table, there always exists precisely one value, never a list of values. Or equivalently, relations do not contain repeating groups. ** No two rows can be identical **

A Sample Relation EmployeeNumberFirstNameLastName 100MaryAbernathy 101JerryCadley 104AlexCopley 107MeganJackson

A Nonrelation Example EmployeeNumberPhoneLastName , Abernathy Cadley Copley Jackson Cells of the table hold multiple values

Example of a Nonrelational Table EmployeeNumberPhoneLastName Abernathy Cadley Copley Abernathy Jackson No two rows can be identical

Open an existing database To open an existing database, you must first start Access When Access is launched you will see the Access window, with the task pane on the right side of the window. From the task pane, you can open an existing database. Or simply double-click the existing database to open. Download and save “Restaurant 1” database.

How Access creates and saves a new database Create a new database Your first activity (before question #1) for the midterm is creating a new database. Database name: your last name + first initial of your first name When you press the Save button in Access, you are saving the design of the Access objects and NOT the database itself! The Save function in Access differs from the Save function in other Windows programs.

Valle Coffee’s Restaurant DB Valle company sells inexpensive coffee beans to various restaurants. Barbara Hennessey, the Director of CRM, and her staff use Access to maintain company data such as customer orders and billings. Barbara has recently developed Restaurant 1 database to track orders and billings. However, she has not been able to develop the database fully to track and maintain other important company data. So, she is asking for your help in completing and maintaining the Valle database.

Descriptions of Restaurant DB Valle coffee’s Restaurant 1 database will contain five tables: Customer table, which Barbara already has. Order table, which you will create soon. Product and Order Detail tables, which you will import from FineFood database. Billing Address table that is in Excel format and you will import it, and then convert to Access table.