CHAPTER 1 – INTRODUCTION TO ACCESS Akhila Kondai September 30, 2013.

Slides:



Advertisements
Similar presentations
Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Technology Education Copyright © 2006 by The McGraw-Hill Companies,
Advertisements

Intro to Access 2007 Lindsey Brewer CSSCR September 18, 2009.
Name: Tatiana “Tania” Harrison
AS ICT Finding your way round MS-Access The Home Ribbon This ribbon is automatically displayed when MS-Access is started and when existing tables.
Database management system (DBMS)  a DBMS allows users and other software to store and retrieve data in a structured way  controls the organization,
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.
Lecture Microsoft Access and Relational Database Basics.
ISP 121 Week 1 Introduction to Databases. ISP 121, Winter Why a database and not a spreadsheet? You have too many separate files or too much data.
Access Tutorial 1 Creating a Database
XP New Perspectives on Microsoft Office Excel 2003, Second Edition- Tutorial 11 1 Microsoft Office Excel 2003 Tutorial 11 – Importing Data Into Excel.
FIRST COURSE Access Tutorial 2 Building a Database and Defining Table Relationships.
Tutorial 11: Connecting to External Data
Access Tutorial 3 Maintaining and Querying a Database
Database Software Application
MELISSA PICO SUMMER 08 Data Storage & Retrieval: Access instead of Excel.
Page 1 ISMT E-120 Introduction to Microsoft Access & Relational Databases The Influence of Software and Hardware Technologies on Business Productivity.
Microsoft Access Database software. What is a database? … a database is an organized collection of data. A collection of data of similar information compiled.
Tutorial 1 Creating a Database. Objectives Learn basic database concepts and terms Learn basic database concepts and terms Explore the Microsoft Access.
Introduction to Database Systems
Your Tour Guide is Jim Provensal. What We Will Cover s Introduction to MicroSoft Access u What is a database u What is a “Relational” Database s The Major.
Introduction to Databases. Overview  What is a Database?  What is a Database Management System?  How is information organized in a database?  What.
Databases C HAPTER Chapter 10: Databases2 Databases and Structured Fields  A database is a collection of information –Typically stored as computer.
1 Chapter 1: Finding Your Way Through a Database Exploring Microsoft Office Access 2010.
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.
Introduction to database systems
Microsoft Access Lesson 1 Lexington Technology Center February 11, 2003 Bob Herring On the Web at
® Microsoft Access 2010 Tutorial 1 Creating a 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?
Lesson 17 Getting Started with Access Essentials
Relational Databases (MS Access)
Access 2013 Microsoft Access 2013 is a database application that is ideal for gathering and understanding data that’s been collected on just about anything.
Database Essentials. Key Terms Big Data Describes a dataset that cannot be stored or processed using traditional database software. Examples: Google search.
Introduction to Databases Trisha Cummings. What is a database? A database is a tool for collecting and organizing information. Databases can store information.
Key Applications Module Lesson 21 — Access Essentials
Chapter 17 Creating a Database.
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.
1 Chapter 1: Finding Your Way Through a Database Exploring Microsoft Office Access 2007.
® Microsoft Office 2013 Access Creating a Database.
Database Management Systems.  Database management system (DBMS)  Store large collections of data  Organize the data  Becomes a data storage system.
DAY 14: MICROSOFT ACCESS – CHAPTER 1 Madhuri Siddula October 1, 2015.
ITGS Databases.
1/62 Introduction to and Using MS Access Database Management and Analysis Yunho Song.
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.
INTRODUCTION TO ACCESS. OBJECTIVES  Define the terms field, record, table, relational database, primary key, and foreign key  Create a blank database.
Classwork: Common Errors Primary keys: don’t forget them! Primary keys: choose the best one! – “Name” and “birthday” are not the best choices. – “Phone.
CPSC 203 Introduction to Computers T97 By Jie (Jeff) Gao.
DAY 18: MICROSOFT ACCESS – CHAPTER 3 CONTD. Akhila Kondai October 21, 2013.
MSOffice Access Microsoft® Office 2010: Illustrated Introductory 1 Part 1 ® Database & Table.
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.
Created by Kamila zhakupova
Access Maintaining and Querying a Database
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?
Exploring Microsoft® Access® 2016 Series Editor Mary Anne Poatsy
Spreadsheets, Modelling & Databases
Introduction to Access
Presentation transcript:

CHAPTER 1 – INTRODUCTION TO ACCESS Akhila Kondai September 30, 2013

INTRODUCTION TO DATABASES A computer database is a structured collection of records or data that is stored in a computer system. A database relies upon software to organize the storage of the data and to enable a person or program to extract desired information. The term "database" refers to the collection of related records, and the software should be referred to as the database management system (DBMS); this is sometimes shortened to database manager or database system.

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 –MySpace – uses databases And many more

AN EXAMPLE Let’s look at the WVU Directory page. What you see is sometimes called a form – it is nothing more than a friendly front end interface. Say we want to search for all students named James 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 James AND a last name Smith. We could either get exactly one result, no results or multiple results. This brings up the question, how do we differentiate between the James Smith that is a History major and the James Smith that is a Radiology major in our database? One way could be to use addresses, since we hope everyone has a “unique” address. But, is there another “unique” identifier that separates one person from another?

AN EXAMPLE – SIMPLE DATABASE In this example we can see why using last name as a “unique” way to identify students maybe a bad idea. StudentID, FirstName, LastName, Major, 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. Student IDFirstNameLastNameMajor

WHAT IS ACCESS? “Is a relational database management system from Microsoft which combines the relational Microsoft Jet Database Engine with a graphical user interface.” Access is NOT a database – it is a database management system. There are numerous other database management systems. 7

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 8

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) 9

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 Font Rich Text Records Sort & Filter Find 10

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 Forms Reports Other 11

THE EXTERNAL DATA TAB EXTERNAL DATA Tab – Contains all operations to facilitate collaborations and data exchange. Import Export Collect Data SharePoint Lists 12

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 maintanance. Macro Show/Hide Analyze Move Data Database Tools 13

BASIC ELEMENTS OF A DATABASE Field – is a basic entry or a data element, such as the name of 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. 14

ACCESS TABLE EXAMPLE Fields RecordsRecords

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 16