AND SOME MISCELLANEOUS TOPICS CONCURRENT ACCESS AND SORTING Database Objects.

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

Split Databases. What is a split database? Two databases Back-end database –Contains tables (data) only –Resides on server Front-end database –Contains.
Microsoft Office Illustrated Fundamentals Unit K: Working with Data.
Database Management Systems and Enterprise Software
Microsoft Access 2003 Introduction To Microsoft Access 2003.
Mgt 240 Lecture MS Excel and Access: Introduction to Databases September 23, 2004.
Lead Black Slide. © 2001 Business & Information Systems 2/e2 Chapter 7 Information System Data Management.
XP New Perspectives on Microsoft Office Access 2003, Second Edition- Tutorial 1 1 Microsoft Access 2003 Tutorial 1 – Introduction To Microsoft Access 2003.
Database Design IST 7-10 Presented by Miss Egan and Miss Richards.
CORE 2: Information systems and Databases STORAGE & RETRIEVAL 2 : SEARCHING, SELECTING & SORTING.
Page 1 ISMT E-120 Introduction to Microsoft Access & Relational Databases The Influence of Software and Hardware Technologies on Business Productivity.
MS ACCESS 101 ACCESS vs. EXCEL - Concepts ACCESS Components 1.
Create Forms Lesson 5. Software Orientation Creating Forms A form is a database object –enter, edit, or display data from a table or query Providing.
MS Access: Database Concepts Instructor: Vicki Weidler.
Page 1 ISMT E-120 Desktop Applications for Managers Introduction to Microsoft Access.
Copyright © 2010 Pearson Education, Inc. Publishing as Prentice Hall 1 1. Chapter 2: Relational Databases and Multi-Table Queries Exploring Microsoft Office.
Copyright © 2010 Pearson Education, Inc. Publishing as Prentice Hall1 Exploring Microsoft Office Access 2007 Committed to Shaping the Next Generation of.
Copyright © 2003 by Prentice Hall Module 4 Database Management Systems 1.What is a database? Data hierarchy and data organization Field, record, file,
1 Chapter 1: Finding Your Way Through a Database Exploring Microsoft Office Access 2010.
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 Committed to Shaping the Next Generation of IT Experts. Chapter 1: Finding Your Way Through.
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 Committed to Shaping the Next Generation of IT Experts. Chapter 1: Finding Your Way Through.
Application Software: Databases
Copyright © 2010 Pearson Education, Inc. Publishing as Prentice Hall 1 Committed to Shaping the Next Generation of IT Experts. Chapter 1: Finding Your.
Introduction to database systems
Introduction to Microsoft Access 2003 Mr. A. Craig Dixon CIS 100: Introduction to Computers Spring 2006.
Inner Join vs. Outer Join
Lead Black Slide Powered by DeSiaMore1. 2 Chapter 7 Information System Data Management.
Introduction to Computers Lesson 10B. home Database A collection of related data or facts.
XP New Perspectives on Microsoft Access 2002 Tutorial 1 1 Microsoft Access 2002 Tutorial 1 – Introduction To Microsoft Access 2002.
1 Microsoft Access Introduction – Tables and Forms ©Richard Goldman January 2000.
1 Database Concepts 2 Definition of a Database An organized Collection Of related records.
Databases: An Overview Chapter 7, Exploring the Digital Domain.
1 Chapter 1: Finding Your Way Through a Database Exploring Microsoft Office Access 2007.
Microsoft Access 2000 Presentation 1 The Basics of Access.
® 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.
Access Chapter 3-Obtaining Answers to Your Data Questions.
Database Management Supplement 1. 2 I. The Hierarchy of Data Database File (Entity, Table) Record (info for a specific entity, Row) Field (Attribute,
D ATABASE O BJECTS Putting the Objects to Work. Database Objects When creating a database, you are creating a database that will store objects. Database.
Planning & Creating a Database By Ms. Naira Microsoft Access.
IST 220 – Intro to Databases Lecture 2 Touring Microsoft Access.
USING ACCESS TO SEGMENT SURVEY DATA. OPEN ACCESS You May Need to Search for the Program You May Need to Search for the Program Access is a Database Access.
CHAPTER 1 – INTRODUCTION TO ACCESS Akhila Kondai September 30, 2013.
Database Relationships Objective 5.01 Understand database tables used in business.
DAY 14: ACCESS CHAPTER 1 RAHUL KAVI October 8,
Microsoft Access By Ritesh Sharma. Introduction Microsoft Access is a desktop database program that enables you to enter, store, analyze,and present data.For.
EXAM-2 OVERVIEW Aliya Farheen
1 Finding Your Way Through a Database Exploring Microsoft Office Access.
Florida Technical College
IST 220 – Intro to Databases
Exploring Excel Chapter 5 List and Data Management: Converting Data to
This shows the user interface and the SQL Select for a situation with two criteria in an AND relationship.
Access Creating a Database
Microsoft Office Illustrated Fundamentals
Exploring Microsoft Office Access
Access Creating a Database
Database Management  .
RELATIONAL DATABASE MODEL
Exploring Microsoft Office Access 2007
Introduction to Ms-Access Submitted By- Navjot Kaur Mahi
Tutorial 1 – Introduction To Microsoft Access 2003
Tutorial 1 – Introduction To Microsoft Access 2003
Introduction to Access
Microsoft Office Access is the best –selling personal computer database management system. What is Access?
Chapter 3 Database Management
Cycle 3: Unit 27 Lessons 104 – 111.
Exploring Microsoft Office Access
Database Management Systems and Enterprise Software
Presentation transcript:

AND SOME MISCELLANEOUS TOPICS CONCURRENT ACCESS AND SORTING Database Objects

2 Objects Tables Queries Reports Forms Macros Modules Objects

Reports Reports are created when a more formal printout is desired.  Use a wizard to create a report  Executes one or more queries and presents the results in a more organized fashion  Can sort the data, can do simple arithmetic (totals)

Queries Asking questions about the data in the database Two different query interfaces (SQL and QBE) See separate slides for details (Database Queries)

Forms Allows you to customize the interface for entering data See separate set of slides for that topic

Sorting Records Can sort records in a database by field values Single Field Sort  Sort all students in the DB by home state Multi-Field Sort (Field A within Field B)  Sort all students in the DB by home state then by alphabetical order of last name (Name within State) State is primary sort field, Name is secondary sort field  Access sorts multiple fields left to right

7 Sorting Table Data Lists records in ascending or descending order according to one or more fields Last Name field sorted ascending Last Name field sorted descending

Concurrent Processing Large databases allow more than one person to access a file at one time Have to be careful to control access - can lose data that way the user who writes LAST is the change that “sticks”

Concurrent Processing (cont’d) MS Access uses a lock file to control this.laccdb file created when an.accdb file is opened, says that it is "locked" so no one else can use it lock file goes away when database file is closed DO NOT submit it INSTEAD of your database file!

10 Access or Excel? You are working with large amounts of data You need to create relationships between your data Your data is of a manageable data size There is no need for relationships between data You are primarily creating calculations and statistics Use Access when:Use Excel when:

Understand Large Database Differences Most large companies separate their database into front and back ends  Front end – contains the objects needed to interact with data, but not the tables where the record values reside  Back end – contains the tables where the data resides Makes it easier to control security, to hire specialists in both areas, to change vendors of software if needed