NEW PERSPECTIVES ON MICROSOFT ACCESS 2016 Module 1

  • Slides: 34
Download presentation
NEW PERSPECTIVES ON MICROSOFT ACCESS 2016 Module 1: Creating a Database

NEW PERSPECTIVES ON MICROSOFT ACCESS 2016 Module 1: Creating a Database

 Session 1. 1 Learn basic database concepts and terms Start and exit Access

Session 1. 1 Learn basic database concepts and terms Start and exit Access Explore the Microsoft Access window and Backstage view Create a blank database Create and save a table in Datasheet view Enter field names and records in a table datasheet Open a table using the Navigation Pane OBJECTIVES © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 2

 Session 1. 2 Open an Access database Copy and paste records from another

Session 1. 2 Open an Access database Copy and paste records from another Access database Navigate a table datasheet Create and navigate a simple query Create and navigate a simple form Create, preview, navigate, and print a simple report Use Help in Access Learn how to compact, back up, and restore a database OBJECTIVES (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 3

 Organizing Data A field is a single characteristic or attribute of a person,

Organizing Data A field is a single characteristic or attribute of a person, place, object, event, or idea - Animal ID, animal name, animal type, breed, visit date, reason for visit, and invoice amount Related fields are grouped together into a table A collection of fields that describes a person, place, object, event, or idea The specific content of a field is called the field value This set of field values is called a record INTRODUCTION TO DATABASE CONCEPTS © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 4

INTRODUCTION TO DATABASE CONCEPTS (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May

INTRODUCTION TO DATABASE CONCEPTS (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 5

 A relational database is a collection of related tables Records in the separate

A relational database is a collection of related tables Records in the separate tables are connected through a common field A primary key is a field, or a collection of fields, that uniquely identify each record in a table Including the primary key from one table as a field in a second table to form a relationship between the two tables, it is called a foreign key in the second table DATABASES AND RELATIONSHIPS © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 6

 A database management system (DBMS) is a software program that lets you create

A database management system (DBMS) is a software program that lets you create databases and then manipulate the data they contain In a relational database management system, data is organized as a collection of tables. A relational DBMS the storage of databases and facilitates the creation manipulation, and reporting of data RELATIONAL DATABASE MANAGEMENT SYSTEMS © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 7

 A relational DBMS provides the following functions: Allows you to create database structures

A relational DBMS provides the following functions: Allows you to create database structures containing fields, tables, and table relationships Lets you easily add new records, change field values in existing records, and delete records Contains a built-in query language, which lets you obtain immediate answers to the questions (or queries) you ask about your data Contains a built-in report generator, which lets you produce professional-looking, formatted reports from your data Protects databases through security, control, and recovery facilities RELATIONAL DATABASE MANAGEMENT SYSTEMS © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 8

STARTING ACCESS AND CREATING A DATABASE © 2017 Cengage Learning. All Rights Reserved. May

STARTING ACCESS AND CREATING A DATABASE © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 9

 When you start Access, the first screen that appears is Backstage view which

When you start Access, the first screen that appears is Backstage view which contains commands that allow you to manage Access files and options The Recent screen in Backstage view provides options for you to create a new database or open an existing database To create a new database that does not contain any data or objects, you use the Blank desktop database option Use a template (a predesigned database that includes professionally designed tables, reports, and other database objects) If the database contains objects that match those found in common databases, such as databases that store data about contacts or tasks STARTING ACCESS AND CREATING A DATABASE (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 10

 If you are working on a touch device, such as a tablet, you

If you are working on a touch device, such as a tablet, you can switch to Touch Mode in Access to make it easier for you to tap buttons on the ribbon and perform other touch actions To switch to Touch Mode: On the Quick Access Toolbar, click the Customize Quick Access Toolbar button and make sure the Touch/Mouse Mode is selected (shaded red to indicate that it is selected) The display switches to Touch Mode with more space between the commands and buttons on the ribbon WORKING IN TOUCH MODE © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 11

 On the ribbon, click the CREATE tab In the Tables group, click the

On the ribbon, click the CREATE tab In the Tables group, click the Table button Rename the default ID primary key field and change its data type, if necessary; or accept the default ID field with the Auto. Number data type In the Add & Delete group on the FIELDS tab, click the button for the type of field you want to add to the table and then type the field name; Repeat this step to add all the necessary fields to the table In the first row below the field names, enter the value for each field in the first CREATING A TABLE IN DATASHEET record, pressing the Tab or Enter key to move from one field to the next VIEW © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 12

 After entering the value for the last field in the first record, press

After entering the value for the last field in the first record, press the Tab or Enter key to move to the next row, and then enter the values for the next record On the Quick Access Toolbar, click the Save button, enter a name for the table, and then click the OK button Decision Making: Naming Fields in Access Tables One of the most important tasks in creating a table is deciding what names to specify for the table’s fields. Keep the following guidelines in mind when you assign field names: A field name can of up to characters, including letters, numbers, spaces, CREATING A consist TABLE IN 64 DATASHEET and special characters, except for the period (. ), exclamation mark (!), grave accent VIEW (CONT. ) (`), and square brackets ([ ]) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 13

 A field name cannot begin with a space Capitalize the first letter of

A field name cannot begin with a space Capitalize the first letter of each word in a field name that combines multiple words, for example Visit. Date Use concise field names that are easy to remember and reference, and that won’t take up a lot of space in the table datasheet Use standard abbreviations, such as Num for Number, Amt for Amount, and Qty for Quantity, and use them consistently throughout the database. For example, if you use Num for Number in one field name, do not use the number sign (#) for Number in another CREATING A TABLE IN DATASHEET VIEW (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 14

 Give fields descriptive names so that you can easily identify them when you

Give fields descriptive names so that you can easily identify them when you view or edit records Renaming the Default Primary Key Field To rename the ID field to the Visit. ID field: Right-click the ID column heading to open the shortcut menu, and then click Rename Field. The column heading ID is selected, so that whatever text you type next will replace it Type Visit. ID and then click the row below the heading. The column heading changes to Visit. ID, and the insertion point moves to the row below the heading CREATING TABLE DATASHEET Notice that the. A TABLE TOOLS tab. IN is active on the ribbon. This is a contextual tab, which and provides options for working with objects selected VIEWappears (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 15

 Changing the Data Type of the Default Primary Key Field Notice the Formatting

Changing the Data Type of the Default Primary Key Field Notice the Formatting group on the FIELDS tab (One of the options available in this group is the Data Type option) Each field in an Access table must be assigned a data type The data type determines what field values you can enter for the field The Auto. Number data type automatically inserts a unique key for every record, beginning with the number 1 for the first record, the number 2 for the second, etc. CREATING A TABLE IN DATASHEET VIEW (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 16

 Adding New Fields When you create a table in Datasheet view, you can

Adding New Fields When you create a table in Datasheet view, you can use the options in the Add & Delete group on the FIELDS tab to add fields to your table You can also use the Click to Add column in the table datasheet to add new fields Datasheet view shows a table’s contents in rows (records) and columns (fields) Each column is headed by a field name inside a field selector Each row has a A record selector to. IN its left CREATING TABLE DATASHEET VIEW (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 17

 Clicking a field selector or a record selector selects that entire column or

Clicking a field selector or a record selector selects that entire column or row (respectively) A field selector is also called a column selector A record selector is also called a row selector Saving a Table Records you enter are immediately stored in the database as soon as you enter them However, the table’s design—the field names and characteristics of the fields themselves, plus any layout changes to the datasheet—are not saved until you save the table CREATING A TABLE IN DATASHEET VIEW (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 18

 When you save a new table for the first time, you should give

When you save a new table for the first time, you should give it a name that best identifies the information it contains Like a field name, a table name can contain up to 64 characters, including spaces Opening a Table The tables in a database are listed in the Navigation Pane. You open a table, or any Access object, by double-clicking the object name in the Navigation Pane CREATING A TABLE IN DATASHEET VIEW (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 19

 Close a table by clicking its Close button on the object tab, as

Close a table by clicking its Close button on the object tab, as you did earlier If you want to close the Access program as well, you can click the program’s Close button When you do, any open tables are closed, the active database is closed, and you exit the Access Program If you want to close a table without exiting Access, click the FILE tab to display Backstage view, and then click Close CLOSING A TABLE AND EXITING ACCESS © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 20

COPYING RECORDS FROM ANOTHER ACCESS DATABASE There are many ways to enter records in

COPYING RECORDS FROM ANOTHER ACCESS DATABASE There are many ways to enter records in a table, including copying and pasting records from a table into the same database or into a different database The two tables must have the same structure—that is, the tables must contain the same fields, with the same design, in the same order Kimberly has already created a table named Appointment that contains additional records with visit data The Appointment table is contained in a database named Kimberly located in the Access 1 > Module folder included with your Data Files The Appointment table has the same table structure as the Visit table you created © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 21

COPYING RECORDS FROM ANOTHER ACCESS DATABASE (CONT. ) © 2017 Cengage Learning. All Rights

COPYING RECORDS FROM ANOTHER ACCESS DATABASE (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 22

 Navigation buttons provide another way to move vertically through the records The Current

Navigation buttons provide another way to move vertically through the records The Current Record box appears between the two sets of navigation buttons Displays the number of the current record as well as the total number of records in the table The New (blank) record button works in the same way as the New button on the HOME tab NAVIGATING A DATASET © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 23

CREATING A SIMPLE QUERY (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May

CREATING A SIMPLE QUERY (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 24

 Forms display one record at a time Provide another view of the data

Forms display one record at a time Provide another view of the data that is stored in the table Allowing you to focus on the values for one record Access displays the field values for the first record in the table Each field appears on a separate line As indicated in the status bar, the form is displayed in Layout view In Layout view, you can make design changes to the form while it is displaying data, so that you can see the effects of the changes you make immediately CREATING A SIMPLE FORM © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 25

 Use a form to enter, edit, and view records in a database Although

Use a form to enter, edit, and view records in a database Although you can perform these same functions with tables and queries, forms can present data in many customized and useful ways CREATING A SIMPLE FORM (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 26

 A report is a formatted printout (or screen display) of the contents of

A report is a formatted printout (or screen display) of the contents of one or more tables or queries Reports show each field in a column, with the field values for each record in a row, similar to a table or query datasheet Reports offers a more visually appealing format for the data, with the column headings in a different color, borders around each field value, a graphic of a report at the top left, and the current day, date, and time at the top right Printing a Report Print reports to distribute to others who need to view the report’s contents CREATING A SIMPLE REPORT © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 27

CREATING A SIMPLE REPORT (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May

CREATING A SIMPLE REPORT (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 28

 STEPS Open the report in any view, or select the report in the

STEPS Open the report in any view, or select the report in the Navigation Pane Click the FILE tab to display Backstage view, click Print, and then click Quick Print to print the report with the default print settings or Open the report in any view, or select the report in the Navigation Pane Click the FILE tab, click Print, and then click Print (or, if the report is displayed in Print Preview, click the Print button in the Print group on the PRINT PREVIEW tab). The Print dialog box opens, in which you can select the options you want for printing the report CREATING A SIMPLE REPORT (CONT. ) © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 29

 The Navigation Pane currently displays the default category, All Access Objects, which lists

The Navigation Pane currently displays the default category, All Access Objects, which lists all the database objects in the pane Each object type (Tables, Queries, Forms, and Reports) appears in its own group VIEWING OBJECTS IN THE NAVIGATION PANE © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 30

 Start Help by clicking the Microsoft Access Help button in the top right

Start Help by clicking the Microsoft Access Help button in the top right of the Access window, or by pressing the F 1 key USING MICROSOFT ACCESS HELP © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 31

 Activities involved in database management include compacting and repairing a database and backing

Activities involved in database management include compacting and repairing a database and backing up and restoring a Database Compacting and Repairing a Database Rearranges the data and objects in a database to decrease its file size, thereby making more storage space available and enhancing the performance of the database Backing Up and Restoring a Database The process of making a copy of the database file to protect your database against loss or damage MANAGING A DATABASE © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 32

 The Back Up Database command enables you to back up your database file

The Back Up Database command enables you to back up your database file from within the Access program, while you are working Steps: Click the FILE tab to display the Info screen in Backstage view Click Save As in the navigation bar Click Back Up Database in the Advanced section of the Save Database As pane Click the Save As button MANAGING A DATABASE © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 33

 Ask the following questions Do you need to store data in separate tables

Ask the following questions Do you need to store data in separate tables that are related to each other? Do you have a very large amount of data to store? Will more than one person need to access the data at the same time? If you answer “yes” to any of these questions, an Access database is most likely the appropriate application to use EXCEL OR ACCESS? © 2017 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. 34