Creating and Managing Database Tables

Slides:



Advertisements
Similar presentations
Working with Tables 1 of 5. Working with Tables 2 of 5.
Advertisements

Access 2007 ® Use Databases How can Microsoft Access 2007 help you structure your database?
Access Lesson 2 Creating a Database
COMPREHENSIVE Access Tutorial 2 Building a Database and Defining Table Relationships.
FIRST COURSE Access Tutorial 2 Building a Database and Defining Table Relationships.
Access 2007 ® Use Databases How can Microsoft Access 2007 help you to enter and organize information?
Access 2007 ® Use Databases How can Access help you to find and use information?
Business Computer Information Systems Microsoft Office XP Access Review Lessons 1 through 5.
ACCESS CHAPTER 1. OBJECTIVES Tables Queries Forms Reports Primary and Foreign Keys Relationship.
With Microsoft ® Access 2010© 2011 Pearson Education, Inc. Publishing as Prentice Hall1 Create a Table and Define Fields in a New Blank Database.
Unit J: Creating a Database Microsoft Office Illustrated Fundamentals.
© 2008 The McGraw-Hill Companies, Inc. All rights reserved. ACCESS 2007 M I C R O S O F T ® THE PROFESSIONAL APPROACH S E R I E S Lesson 4 – Creating New.
Access Tutorial 2 Building a Database and Defining Table Relationships
1 Lesson 22 Getting Started with Access Essentials Computer Literacy BASICS: A Comprehensive Guide to IC 3, 3 rd Edition Morrison / Wells.
DAY 14: ACCESS CHAPTER 1 Tazin Afrin October 03,
IE 423 – Design of Decision Support Systems Data modeling and database development.
® Microsoft Office 2013 Access Building a Database and Defining Table Relationships.
Lesson 2.  To help ensure accurate data, rules that check entries against specified values can be applied to a field. A validation rule is applied to.
Lesson 17 Getting Started with Access Essentials
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.
XP New Perspectives on Microsoft Office Access 2003, Second Edition- Tutorial 2 1 Microsoft Office Access 2003 Tutorial 2 – Creating And Maintaining A.
MS-ACCESS BY SANGEETHA PARTHASARATHY Topics to be covered §Comparing Values in Selection Criteria §Calculating Values in a Query §Changing the appearance.
Chapter 17 Creating a Database.
® Microsoft Office 2010 Building a Database and Defining Table Relationships.
Access Project 3 Notes. Introduction Maintaining the Database  Modifying the data to keep it up-to-date Restructure the Database  To change the database.
Part II. Query Types On the design query table pane, right click and the cascading window will appear.
Access 2007 ® Use Databases How can Microsoft Access 2007 help you structure your database?
Unit 5, Lesson 1 Working with Databases. Objectives Identify the parts of the Access screen. Identify the parts of the Access screen. Understand the purpose.
Maintaining a Database Access Project 3. 2 What is Database Maintenance ?  Maintaining a database means modifying the data to keep it up-to-date. This.
Course ILT Forms and queries Unit objectives Create forms by using AutoForm and the Form Wizard, and add or modify form headers and footers Open and enter.
Planning & Creating a Database By Ms. Naira Microsoft Access.
MSOffice Access Microsoft® Office 2010: Illustrated Introductory 1 Part 1 ® Database & Table.
VOCAB REVIEW. A field that can be computed from other fields Calculated field Click for the answer Next Question.
2 Copyright © 2008, Oracle. All rights reserved. Building the Physical Layer of a Repository.
1 Database Systems Introduction to Microsoft Access Part 1.
Access Tutorial 2 Building a Database and Defining Table Relationships
New Perspectives on Microsoft Access 2016
Prepared By: Bobby Wan Microsoft Access Prepared By: Bobby Wan
Practical Office 2007 Chapter 10
Access Tutorial 3 Maintaining and Querying a Database
DATABASE CONCEPTS A database is a collection of logically related data designed to meet the information needs of one or more users Data bases are store-houses.
Objectives Query for top values Create a parameter query
and Defining Table Relationships
SQL MODELER - OPEN There are Three Ways to open the SQL Modeler
Objectives Create an action query to create a table
Access Creating a Database
Microsoft Office Illustrated Fundamentals
Access Lesson 14 Import and Export Data
Microsoft Access 2003 Illustrated Complete
Access Creating a Database
Access Maintaining and Querying a Database
Microsoft Access 2003 Illustrated Complete
Examples of Poor Primary Keys
Access Lesson 1 Understanding Access Fundamentals
Database Queries.
Chapter 9 Lesson 2 Notes.
Access Lesson 2 Creating a Database
Access: Access Basics Participation Project
Microsoft Office Access 2003
Manipulating and Sharing Data in a Database
Access Tutorial 2 Building a Database and Defining Table Relationships
Access Tutorial 2 Building a Database and Defining Table Relationships
Spreadsheets, Modelling & Databases
Introduction to Access
Lesson 23 Getting Started with Access Essentials
Query-by-Example Transparencies
Unit J: Creating a Database
Tutorial 9 Using Action Queries and Advanced Table Relationships
New Perspectives on Microsoft
Presentation transcript:

Creating and Managing Database Tables ICT Database Lesson 3 Creating and Managing Database Tables

Inserting Records Adding information to a set of database fields Manually enter in Datasheet View or Form – small amounts of data Import data for a large number of records Usually a spreadsheet, another database, or as a text file (.txt, .csv) Map corresponding fields

Exporting Records Preparing data to be used in another application Run a query to create a table with the appropriate information Export function as (.txt, .csv, or .xlsx)

Updating Records Updating or modifying information in an existing set of fields Datasheet View for limited amounts of data SQL routine for larger sets of data

Deleting Records Information is permanently deleted from the database Datasheet View for small amounts of data SQL routine for larger amounts of data Must make sure to delete all related material in related tables May impact other database objects

Database Schema The skeleton structure that represents the logical view of the entire database. Lists: The tables to be used in the database each of the fields to be included in each of the tables the data type of each of the fields and the relationship among the various tables. It also includes all the constraints that are to be applied on the data.

Database Schema 1 8

Datasheet View Displays fields in a table similar to how it would look in a spreadsheet Rows and columns Columns are fields Rows are records Can add or edit fields Can add, modify or delete records

Design View Displays and edit table and field properties Data type Default value Required

Query A question that you ask a database using a set of criteria and in return the database provides its answer Returns information in the form of a new table Will display only the particular fields and records from a database you want to see Data returned by a query can come from tables, other queries or reports Automatically create a join between Primary and Foreign Key

Query Example List all pool companies that have purchased BN-0609-TGOLD bullnose and what is my price?

Types of Queries: Select The simplest type of query and most common Used to select and display data from either a single table or a group of tables depending on what information is wanted It creates a "virtual" table where the data is displayed and kept. The data in a virtual table can only be changed 1 record at a time

Types of Queries: Action Creates a specific action to be performed on the database Examples: creating new tables, deleting rows from existing ones and updating records or creating entirely new ones. Popular query to run because they allow for many records to be changed at one time Five kinds of action queries are: Insert Query – adds data to an existing table Append Query – takes the set results of a query and "appends" (or adds) them to an existing table Delete Query – deletes records from the table based on the results of the query Make Table Query (Create) – creates a table based on the results of a query Update Query – allows for one or more fields in a table to be updated