Access Tutorial 2: Tables
|
|
|
- Jasper Greene
- 9 years ago
- Views:
Transcription
1 Access Tutorial 2: Tables 2.1 Introduction: The importance of good table design Tables are where data in a database is stored; consequently, tables form the core of any database application. In addition to basic data, Access permits a large amount of domain knowledge (such as captions, default values, constraints, etc.) to be stored at the table level. Extra time spent thinking about table design can result in enormous time savings during later stages of the project. Non-trivial changes to tables and relationships become increasingly difficult as the application grows in size and complexity. 2.2 Learning objectives How do I enter and edit data in the datasheet view of a table? How do I create a new table? How do I set the primary key for a table? How do I specify field properties such as the input mask and caption? Why won t an autonumber field restart counting at one? What are the different types of keys? 2.3 Tutorial exercises In this tutorial, you will learn to interact with existing tables and design new tables. Michael Brydon ([email protected]) Last update: 25-Aug-1997 Home Previous 1 o f 18
2 2.3.1 Datasheet basics If you have not already done so, open the univ0_vx.mdb database file from Tutorial 1. Open the Departments table. The important elements of the datasheet view are shown in Figure 2.1. Use the field selectors to adjust the width of the DeptName field as shown in Figure 2.1. Add the Biology department (BIOL) to the table, as shown in Figure 2.2. Delete the Basket Weaving record by clicking on its record selector and pressing the Delete key Creating a new table In this section you will create and save a very basic skeleton for table called Employees. This table could be used to keep track of university employees Tutorial exercises such as lecturers, department heads, departmental secretaries, and so on. Return to the database window and create a new table as shown in Figure 2.3. In the table design window shown in Figure 2.4, type in the following information: Field name Data type Description (optional) EmployeeID Text use employee S.I.N. FName Text First name LName Text Last name Phone Text Salary Currency Select File > Save from the main menu (or press Control-S) and save the table under the name Employees. Home Previous 2 o f 18
3 Tutorial exercises FIGURE 2.1: The datasheet view of the Departments table. The field names are shown in the field selectors across the top of the columns. You can temporarily sort the records in a particular order by right-clicking any of the field selectors. Resize the DeptName column by clicking near the column border and dragging the border to the right. The records are shown as rows. The black triangle indicates the current record. The grey boxes are record selectors. The asterisk (*) indicates a place holder for a new record. The navigation buttons at the bottom of the window indicate the current record number and allow you to go directly to the first, previous, next, last, or new record. Home Previous 3 o f 18
4 Tutorial exercises FIGURE 2.2: Adding and saving a record to the table. Add a new record by clicking in the DeptCode field of the new record field (marked by the asterisk). It is seldom necessary to explicitly save new records (or changes to existing records) since Access automatically saves whenever you move to another record, close the table, quit Access, etc. To permanently save the change to the data, click on the record selector (note the icon changes from a pencil to a triangle). Home Previous 4 o f 18
5 Tutorial exercises FIGURE 2.3: Create a new table. Click the New button to create a new table. Select design view (avoid using the table wizard at this point). Home Previous 5 o f 18
6 Tutorial exercises FIGURE 2.4: Use the table design window to enter the field properties for the Employees table. Enter the field names and data types for the five fields. The description column allows you to enter a short comment about the field (this information is not processed in any way by Access). The field properties section allows you to enter information about the field and constraints on the values for the field. Home Previous 6 o f 18
7 2.3.3 Specifying the primary key Tables normally have a primary key that uniquely identifies the records in the table. When you designate a field as the primary key, Access will not allow you to enter duplicate values into the field. Follow the steps in Figure 2.5 to set the primary key of the table to EmployeeID. Tutorial exercises FIGURE 2.6: Set the field properties for the EmployeeID field Setting field properties In this section, you will specify a number of field properties for the EmployeeID field, as shown in Figure 2.6. Since we are going to use the employees Social Insurance Number (S.I.N.) to uniquely identify them, set the Field Size property to 11 characters (9 for numbers and 2 for separating spaces) Set the Input Mask property to the following: 000\ 000\ 000;0 Set the Caption property to Employee ID Home Previous 7 o f 18
8 Tutorial exercises FIGURE 2.5: Set the primary key for the Employees table. Click on the grey box beside the field (or fields) that form the primary key. To select more than one field for use as the primary key, hold down the Control key while clicking on the grey boxes. Either click the key-shaped icon in the tool bar or select Edit > Primary Key from the menu. Home Previous 8 o f 18
9 Select View > Datasheet from the main menu to switch to datasheet mode as shown in Figure 2.7. Enter your own S.I.N. and observe the effect of the input mask and caption on the EmployeeID field. Select View > Table Design from the main menu to return to design mode. Set the field properties for FName and LName (note that Length and Caption are the only two properties that are relevant for these two fields) Using the input mask wizard In this section, you will use the input mask wizard to create a complex input mask for a standard field type. You will also use the help system to learn more about the meaning of the symbols used to create input masks. Select the Phone field, move the cursor to the input mask property, and click the button with Discussion three small dots ( ) to invoke the input mask wizard. Follow the instructions provided by the wizard as shown in Figure 2.8. Press F1 while the cursor is still in the input mask property. Scroll down the help window to find the meaning of the 0, 9, > and L input mask symbols. 2.4 Discussion Key terminology A key is one or more fields that uniquely determine the identity of the real-world object that the record is meant to represent. For example, there is a record in the student information system that contains information about you as a student. To ensure that the record is associated with you and only you, it con- Home Previous 9 o f 18
10 Discussion FIGURE 2.7: Observe the effect of the input mask and caption properties on the behavior of the EmployeeID field during data entry Try entering various characters and numbers into the EmployeeID field. If a caption is specified, it replaces the field name in the field selector. Press the Escape key when you are done to clear the changes to the record. Note that the input mask will not let you type any characters other than numbers from 0-9. In addition, the spaces between the groups of numbers are added automatically. Input masks provide a relatively easy way to avoid certain basic data input errors without having to write complex error checking programs. Note, however, that it is possible to over-constrain a field so that users are unable to enter legitimate values. Home Previous 10 o f 18
11 Discussion FIGURE 2.8: Use the input mask wizard to create an input mask. Select phone number from the list of commonlyused field types. The items in this list depend on the international settings specified for Windows (e.g., Zip Code may show instead of Postal Code ). In Step 2, you may edit the input mask (e.g., remove the area code section). Since the input mask controls how the information in the field looks, it is possible to save some disk space by storing the data without the extras symbols, spaces, etc. For the size of system we are building, however, this savings is negligible. Home Previous 11 o f 18
12 Discussion tains a field called student number that is guaranteed to be unique. The advantage of using student number as a key instead of some other field like student name is that there may be more than one person with the same first and last name. The combination of student name and address is probably unique (it is improbable that two people with the same name will at the same address) but using these two fields as a key would be cumbersome. Since the terminology of keys can be confusing, the important terms are summarized below. 1. Primary key The terms key and primary key are often used interchangeably. Since there may be more than one candidate key for an application, the designer has to select one: this is the primary key. 2. Concatenated key: The verb concatenate means to join together in a series. A concatenated key is made by joining together two or more fields. Course numbers at UBC provide a good example of a concatenated key made by joining together two fields: DeptCode and CrsNum. For example, department alone cannot be the primary key since there are many courses in each department (e.g., COMM 335, COMM 391). Similarly, course number cannot be used as a key since there are many courses with the same number in different departments (e.g., COMM 335, HIST 335, MATH 335). However, department and course number together form a concatenated key (there is only one COMM 335). 3. Foreign key: In a one-to-many relationship, a foreign key is a field (or fields) in the child record that uniquely identifies the correct parent record. For example, DeptCode and CrsNum in the Sections table are foreign keys since these two keys taken together are the primary key of Home Previous 12 o f 18
13 the Courses table. Foreign keys are identified in Access by creating relationships (see Tutorial 3) Fields and field properties Field names Access places relatively few restrictions on field names and thus it is possible to create long, descriptive names for your fields. The problem is that you have to type these field names when building queries, macros, and programs. As such, a balance should be struck between readability and ease of typing. You are advised to use short-but-descriptive field names with no spaces. For example, in Section you created a field with name FName. However, you can use the caption property to provide a longer, more descriptive label such as First name. The net result is a field name that is easy to type when programming and a field caption that is easy to read when the data is viewed. Discussion In addition, you can use the comment field in the table design window to document the meaning of field names. It is strongly recommended that you avoid all non-alphanumeric characters whenever you name a field or database object. Although Access will permit you to use names such as Customer#, non-alphanumeric characters (such as #, /, $, %, etc.) may cause undocumented problems later on Data types The field's data type tells Access how to handle the information in the field. For instance, if the data type is date/time, then Access can perform date/time arithmetic on information stored in the field. If the same date is stored as text, however, Access treats it just like any other string of characters. Normally, Home Previous 13 o f 18
14 the choice of data type is straightforward. However, the following guidelines should be kept in mind: 1. Do not use a numeric data type unless you are going to treat the field as a number (i.e., perform mathematical operations on it). For instance, you might be tempted to store a person's student number as an integer. However, if the student number starts with a zero, then the first digit is dropped and you have to coerce Access into displaying it. Similarly, a UBC course number (e.g., 335) might be considered a number; however, since courses like 439B have to accommodated, a numeric data type for the course number field is clearly inappropriate. 2. Access provides a special data type called Auto Number (Counter in version 2.0). An autonumber/counter is really a number of type Long Integer that gets incremented by Access every time a new record is added. As such, it is convenient Discussion for use as a primary key when no other key is provided or is immediately obvious. Since an autonumber is really Long Integer and since relationships can only be created between fields with the same data type, it is important to remember that if an autonumber is used on the one side of a relationship, a long integer must be used for the many side Disappearing numbers in autonumber fields If, during the process of testing your application, you add and delete records from a table with an autonumber key, you will notice that the deleted keys are not reclaimed. For instance, if you add records to your Customer table (assuming that CustID is an autonumber), you will have a series of CustID values: 1, 2, 3 If you Home Previous 14 o f 18
15 later delete customer 1 and 2, you will notice that your list of customers now starts at 3. Clearly, it would be impossible for Access to renumber all the customers so the list started at 1. What would happen, for instance, to all the printed invoices with CustID = 2 on them? Would they refer to the original customer 2 or the newly renumbered customer 2? The bottom line is this: once a key is assigned, it should never be reused, even if the entity to which it is assigned is subsequently deleted. Thus, as far as you are concerned, there is no way to get your customers table to renumber from CustID = 1. Discussion Of course, there is a long and complicated way to do it, but since used an autonumber in the first place, you do not care about the actual value of the key you just want it to be unique. In short, it makes absolutely no difference whether the first customer in your customers table is CustID = 1 or Input masks An input mask is a means of restricting what the user can type into the field. It provides a template which tells Access what kind of information should be in each space. For example, the input mask >LLLL consists of two parts: 1. The right brace > ensures that every character the user types is converted into upper case. Thus, if the user types comm, it is automatically converted to COMM. 2. The characters LLLL are place holders for letters from A to Z with blank spaces not allowed. What this means is that the user has to type in exactly four letters. If she types in fewer than four or types a character that is not within the A to Z scope (e.g., &, 7, %), Access will display an error message. Home Previous 15 o f 18
16 There are a large number of special symbols used for the input mask templates. Since the meaning of many of the symbols is not immediately obvious, there is no requirement to remember the character codes. Instead, simply place the cursor on the input mask property and press F1 to get help. In addition, the wizard can be used to provide a basic input mask which can later be modified Input masks and literal values To have the input mask automatically insert a character (such as a space or a dash) in a field, use a slash to indicate that the character following it is a literal. For example, to create an input mask for local telephone numbers (e.g., ), you would use the following template: 000\-0000;0 (the dash is a literal value and appears automatically as the user enters the telephone number). Discussion The semicolon and zero at the end of this input mask are important because, as the on-line help system points out, an input mask value actually consists of three parts (or arguments ), each separated by a semicolon: the actual template (e.g., 000\-0000), a value (0 or 1) that tells Access how to deal with literal characters, and the character to use as a place holder (showing the user how many characters to enter). When you use a literal character in an input mask, the second argument determines whether the literal value is simply displayed or displayed and stored in the table as part of the data. For example, if you use the input mask 000\- 0000;1, Access will not store the dash with the telephone number. Thus, although the input mask will always display the number as , the number is actually stored as By using the Home Previous 16 o f 18
17 input mask 000\-0000;0, however, you are telling Access to store the dash with the rest of the data. If you use the wizard to create an input mask, it asks you a simple question about storing literal values (as shown in Figure 2.8) and fills in the second argument accordingly. However, if you create the input mask manually, you should be aware that by default, Access does not store literal values. In other words, the input mask 000\-0000 is identical to the input mask 000\-0000;1. This has important consequences if the field in question is subject to referential integrity constraints (the value is not the same as ). Application to the assignment 2.5 Application to the assignment You now have the skills necessary to implement your tables. Create all the tables required for the assignment. Use the autonumber data type (counter in version 2.0) for your primary keys where appropriate. Specify field properties such as captions, input mask, and defaults where appropriate. If you create an input mask for ProductID, ensure you understand the implications of Section Set the Default property of the OrderDate field so that the current date is automatically inserted into the field when a new order is created (hint: see the Date() function in the on-line help system). Home Previous 17 o f 18
18 Application to the assignment Do not forget to modify your Products table (the data types, lengths, and field properties of imported tables normally need to be fine tuned) Populate (enter data into) your master tables. Do not populate your transaction tables. For the purpose of the assignment, the term transaction tables refers to tables that contain information about individual transactions (e.g., Orders, OrderDetails, Shipments, ShipmentDetails). Master tables, in contrast, are tables that either do not contain information about transactions (e.g., Customers) or contain only summary or status information about transactions (e.g., BackOrders). Home Previous 18 o f 18
Microsoft Access Tutorials: Table of Contents
Microsoft Access Tutorials: Table of Contents 1. Introduction to Microsoft Access 1.1 Introduction: What is Access? 1 1.1.1 The many faces of Access 1 1.1.2 What is in an Access database file? 3 1.2 Learning
Access Tutorial 8: Combo Box Controls
Access Tutorial 8: Combo Box Controls 8.1 Introduction: What is a combo box? So far, the only kind of control you have used on your forms has been the text box. However, Access provides other controls
Access Tutorial 3: Relationships
Access Tutorial 3: Relationships 3.1 Introduction: The advantage of using tables and relationships A common mistake made by inexperienced database designers (or those who have more experience with spreadsheets
Access Tutorial 4: Basic Queries Using QBE
Access Tutorial 4: Basic Queries Using QBE 4.1 Introduction: Using queries to get the information you need At first glance, it appears that splitting information into multiple tables and relationships
Access Tutorial 6: Form Fundamentals
Access Tutorial 6: Form Fundamentals 6.1 Introduction: Using forms as the core of an application Forms provide a user-oriented interface to the data in a database application. They allow you, as a developer,
Creating and Using Databases with Microsoft Access
CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries
Access Part 2 - Design
Access Part 2 - Design The Database Design Process It is important to remember that creating a database is an iterative process. After the database is created and you and others begin to use it there will
MS Access Lab 2. Topic: Tables
MS Access Lab 2 Topic: Tables Summary Introduction: Tables, Start to build a new database Creating Tables: Datasheet View, Design View Working with Data: Sorting, Filtering Help on Tables Introduction
Access Tutorial 11: Action Queries
Access Tutorial 11: Action Queries 11.1 Introduction: Queries that change data 11.1.1 What is an action query? All of the queries that you have created to this point have been variations of select queries.
Creating tables in Microsoft Access 2007
Platform: Windows PC Ref no: USER 164 Date: 25 th October 2007 Version: 1 Authors: D.R.Sheward, C.L.Napier Creating tables in Microsoft Access 2007 The aim of this guide is to provide information on using
Microsoft Access 2010 Part 1: Introduction to Access
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3
Lab Manual. Databases. Microsoft Access. Peeking into Computer Science Access Lab manual
Lab Manual Databases Microsoft Access 1 Table of Contents Lab 1: Introduction to Microsoft Access... 3 Getting started... 3 Tables... 3 Primary Keys... 6 Field Properties... 7 Validation Rules... 11 Input
Creating a Database using Access 2007
Creating a Database using Access 2007 Starting Access 2007 Double click on the Access 2007 icon on the Windows desktop (see right), or click-on the Start button in the lower left corner of the screen,
Microsoft Access XP Session 1 Week 8
Creating a Database Click-on the Start button in the lower left corner of the screen, then click-on Programs, and then click-on Microsoft Access. New File The Access XP New File Task Pane will appear on
Simple Invoicing Desktop Database with MS Access 2013. c 2015 by David W. Gerbing School of Business Administration Portland State University
Simple Invoicing Desktop Database with MS Access 2013 c 2015 by David W. Gerbing School of Business Administration Portland State University July 2, 2015 CONTENTS 1 Contents 1 Create a New Database 1 2
Creating a Database in Access
Creating a Database in Access Microsoft Access is a database application. A database is collection of records and files organized for a particular purpose. For example, you could use a database to store
MS Access: Advanced Tables and Queries. Lesson Notes Author: Pamela Schmidt
Lesson Notes Author: Pamela Schmidt Tables Text Fields (Default) Text or combinations of text and numbers, as well as numbers that don't require calculations, such as phone numbers. or the length set by
Access 2010 Intermediate Skills
Access 2010 Intermediate Skills (C) 2013, BJC HealthCare (St Louis, Missouri). All Rights Reserved. Revised June 5, 2013. TABLE OF CONTENTS OBJECTIVES... 3 UNDERSTANDING RELATIONSHIPS... 4 WHAT IS A RELATIONSHIP?...
Microsoft Access Basics
Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision
Access Tutorial 13: Event-Driven Programming Using Macros
Access Tutorial 13: Event-Driven Programming Using Macros 13.1 Introduction: What is eventdriven programming? In conventional programming, the sequence of operations for an application is determined by
Steps to Create a Database
Steps to Create a Database Design the Database In order for a database to be effective some time should be spent on the layout of the table. Additionally, time should be spent on what the purpose of the
Objectives. Understand databases Create a database Create a table in Datasheet view Create a table in Design view
Creating a Database Objectives Understand databases Create a database Create a table in Datasheet view Create a table in Design view 2 Objectives Modify a table and set properties Enter data in a table
IN THIS PROJECT, YOU LEARN HOW TO
UNIT 2 PROJECT 11 CREATING A CUSTOMIZED DATABASE IN THIS PROJECT, YOU LEARN HOW TO Examine a Database and Its Objects Create Tables and Set Field Properties in Design View Create Relationships Add and
Setting up a basic database in Access 2003
Setting up a basic database in Access 2003 1. Open Access 2. Choose either File new or Blank database 3. Save it to a folder called customer mailing list. Click create 4. Double click on create table in
INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports
INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports Introduction...2 Tables...3 Designing a Table...3 Data Types...4 Relationships...8 Saving Object Designs and Saving Data...9 Queries...11
Introduction to Microsoft Access 2003
Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft
Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro
Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro, to your M: drive. To do the second part of the prelab, you will need to have available a database from that folder. Creating a new
Exploring Microsoft Office Access 2007. Chapter 2: Relational Databases and Multi-Table Queries
Exploring Microsoft Office Access 2007 Chapter 2: Relational Databases and Multi-Table Queries 1 Objectives Design data Create tables Understand table relationships Share data with Excel Establish table
Preview DESIGNING DATABASES WITH VISIO PROFESSIONAL: A TUTORIAL
DESIGNING DATABASES WITH VISIO PROFESSIONAL: A TUTORIAL A Microsoft Visio Professional is a powerful database design and modeling tool. The Visio software has so many features that it is impossible to
Ken Goldberg Database Lab Notes. There are three types of relationships: One-to-One (1:1) One-to-Many (1:N) Many-to-Many (M:N).
Lab 3 Relationships in ER Diagram and Relationships in MS Access MS Access Lab 3 Summary Introduction to Relationships Why Define Relationships? Relationships in ER Diagram vs. Relationships in MS Access
MICROSOFT ACCESS A. CREATING A DATABASE B. CREATING TABLES IN A DATABASE
Prepared for MIS 6326 by Dr. Sumit Sarkar 1 MICROSOFT ACCESS A database is a collection of different types of data, stored in a manner to facilitate use in diverse ways. In Microsoft Access 2000, a database
To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click.
EDIT202 Spreadsheet Lab Assignment Guidelines Getting Started 1. For this lab you will modify a sample spreadsheet file named Starter- Spreadsheet.xls which is available for download from the Spreadsheet
Table and field properties Tables and fields also have properties that you can set to control their characteristics or behavior.
Create a table When you create a database, you store your data in tables subject-based lists that contain rows and columns. For instance, you can create a Contacts table to store a list of names, addresses,
Topic: Relationships in ER Diagram and Relationships in MS Access
MS Access Lab 3 Topic: Relationships in ER Diagram and Relationships in MS Access Summary Introduction to Relationships Why Define Relationships? Relationships in ER Diagram vs. Relationships in MS Access
Microsoft Access 2007 Module 1
Microsoft Access 007 Module http://pds.hccfl.edu/pds Microsoft Access 007: Module August 007 007 Hillsborough Community College - Professional Development and Web Services Hillsborough Community College
Information Technology Services Kennesaw State University
Information Technology Services Kennesaw State University Microsoft Access 2007 Level 1 1 Copyright 2008 KSU Dept. of Information Technology Services This document may be downloaded, printed or copied
Access 2007. Creating Databases - Fundamentals
Access 2007 Creating Databases - Fundamentals Contents Database Design Objectives of database design 1 Process of database design 1 Creating a New Database... 3 Tables... 4 Creating a table in design view
Use Find & Replace Commands under Home tab to search and replace data.
Microsoft Access 2: Managing Data in Tables and Creating Relationships You have created tables in an Access database. Data in Access tables can be added, deleted, and updated to be current (practiced in
ECDL. European Computer Driving Licence. Database Software BCS ITQ Level 1. Syllabus Version 1.0
ECDL European Computer Driving Licence Database Software BCS ITQ Level 1 Using Microsoft Access 2013 Syllabus Version 1.0 This training, which has been approved by BCS, includes exercise items intended
Microsoft Access Tutorials: Table of Contents
Microsoft Access Tutorials: Table of Contents 1. Introduction to Microsoft Access 1.1 Introduction: What is Access? 1 1.1.1 The many faces of Access 1 1.1.2 What is in an Access database file? 3 1.2 Learning
Microsoft Access Part I (Database Design Basics) ShortCourse Handout
Microsoft Access Part I (Database Design Basics) ShortCourse Handout July 2004, Technology Support, Texas Tech University. ALL RIGHTS RESERVED. Members of Texas Tech University or Texas Tech Health Sciences
Microsoft Access 2003 Module 1
Microsoft Access 003 Module http://pds.hccfl.edu/pds Microsoft Access 003: Module June 005 006 Hillsborough Community College - Professional Development Services Hillsborough Community College - Professional
2Creating Reports: Basic Techniques. Chapter
2Chapter 2Creating Reports: Chapter Basic Techniques Just as you must first determine the appropriate connection type before accessing your data, you will also want to determine the report type best suited
Access I 2010. Tables, Queries, Forms, Reports. Lourdes Day, Technology Specialist, FDLRS Sunrise
Access I 2010 Tables, Queries, Forms, Reports Lourdes Day, Technology Specialist, FDLRS Sunrise Objectives Participants will 1. create and edit a table 2. create queries with criteria 3. create and edit
Create a New Database in Access 2010
Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...
Select the Crow s Foot entity relationship diagram (ERD) option. Create the entities and define their components.
Α DESIGNING DATABASES WITH VISIO PROFESSIONAL: A TUTORIAL Microsoft Visio Professional is a powerful database design and modeling tool. The Visio software has so many features that we can t possibly demonstrate
Introduction to Microsoft Access 2013
Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:
A database is a collection of data organised in a manner that allows access, retrieval, and use of that data.
Microsoft Access A database is a collection of data organised in a manner that allows access, retrieval, and use of that data. A Database Management System (DBMS) allows users to create a database; add,
Intellect Platform - Parent-Child relationship Basic Expense Management System - A103
Intellect Platform - Parent-Child relationship Basic Expense Management System - A103 Interneer, Inc. Updated 2/29/2012 Created by Erika Keresztyen Fahey 2 Parent-Child relationship - A103 - Basic Expense
Planning and Creating a Custom Database
Planning and Creating a Custom Database Introduction The Microsoft Office Access 00 database wizards make creating databases easy, but you may need to create a database that does not fit any of the predefined
Writer Guide. Chapter 15 Using Forms in Writer
Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2005 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the
Filter by Selection button. Displays records by degree to which they match the selected record. Click to view advanced filtering options
The Home Ribbon Sort Buttons: sort records into ascending or descending order by selected field Filter by Selection button. Displays records by degree to which they match the selected record. Display summary
A Basic introduction to Microsoft Access
A Basic introduction to Microsoft Access By Ojango J.M.K Department of Animal Sciences, Egerton University, Njoro, Kenya and International Livestock Research Institute, Nairobi, Kenya Ms Access is a database
Introduction to Microsoft Access 2007
Introduction to Microsoft Access 2007 Introduction A database is a collection of information that's related. Access allows you to manage your information in one database file. Within Access there are four
Microsoft Access 2010 Overview of Basics
Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create
Access Tutorial 1 Creating a Database
Access Tutorial 1 Creating a Database Microsoft Office 2013 Objectives Session 1.1 Learn basic database concepts and terms Start and exit Access Explore the Microsoft Access window and Backstage view Create
Access Tutorial 5: Basic Queries using SQL
Access Tutorial 5: Basic Queries using SQL 5.1 Introduction: The difference between QBE and SQL Query-By-Example (QBE) and Structured Query Language (SQL) are both well-known, industry-standard languages
Structure a Database. Key Concepts LESSON. Access 380. Lesson 2: Structure a Database. Standards
LESSON Key Concepts Structure a Database In this lesson, you will continue learning skills to use Access in your daily life. You will learn to create the following elements in this lesson: databases, tables,
If the database that is required is similar to a template then whole database can be generated by using a template that already exists.
Creating Tables There are many ways of creating tables; it depends on the fields required in the table and the complexity of the database to be set up as to how you create the tables. If the database that
Introduction to Microsoft Access 2010
Introduction to Microsoft Access 2010 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:
ACCESS 2007 BASICS. Best Practices in MS Access. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700
Information Technology MS Access 2007 Users Guide ACCESS 2007 BASICS Best Practices in MS Access IT Training & Development (818) 677-1700 Email: [email protected] Website: www.csun.edu/it/training Access
- Suresh Khanal. http://mcqsets.com. http://www.psexam.com Microsoft Excel Short Questions and Answers 1
- Suresh Khanal http://mcqsets.com http://www.psexam.com Microsoft Excel Short Questions and Answers 1 Microsoft Access Short Questions and Answers with Illustrations Part I Suresh Khanal Kalanki, Kathmandu
Access Tutorial 2 Building a Database and Defining Table Relationships
Access Tutorial 2 Building a Database and Defining Table Relationships Microsoft Office 2013 Objectives Session 2.1 Learn the guidelines for designing databases and setting field properties Create a table
Check out our website!
Check out our website! www.nvcc.edu/woodbr idge/computer-lab Contact Us Location: Open Computer Lab Seefeldt Building #336 NOVA Woodbridge Campus Hussna Azamy (OCL Supervisor) Phone: 703-878-5714 E-mail:
Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.
Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format
Using Microsoft Access Databases
Using Microsoft Access Databases Print this document to use as a reference while you work through this course. Open Access, and follow all directions to familiarize yourself with the program. Database
Introduction to. Microsoft Access 2000. Practicals
Introduction to Microsoft Access 2000 Practicals 1 Contents Practical 1..1 Introduction to Access basics. Getting help in Access. Creating databases and tables. Practical 2 13 More on creating, editing
Chapter 15 Using Forms in Writer
Writer Guide Chapter 15 Using Forms in Writer OpenOffice.org Copyright This document is Copyright 2005 2006 by its contributors as listed in the section titled Authors. You can distribute it and/or modify
Microsoft Access 3: Understanding and Creating Queries
Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex
Microsoft Office Access 2007 Basics
Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: [email protected] MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER
What is a database? The parts of an Access database
What is a database? Any database is a tool to organize and store pieces of information. A Rolodex is a database. So is a phone book. The main goals of a database designer are to: 1. Make sure the data
MICROSOFT OFFICE ACCESS 2007 - LEVEL 2
MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - LEVEL 2 Modifying Tables Setting Field Properties Using Operators in Queries Designing Advanced Queries Creating Action Queries Using Advanced Query
3. (1.0 point) To ungroup worksheets, you can click a sheet of a sheet not in the group. a. index b. panel c. tab d. pane
Excel Tutorial 6 1. (1.0 point) To select adjacent worksheets, you use the key. a. Shift b. Alt c. Ctrl d. F1 2. (1.0 point) The caption indicates a worksheet group. a. [Worksheets] b. [Selected Sheets]
MICROSOFT ACCESS 2003 TUTORIAL
MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body
Windows XP Pro: Basics 1
NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has
KPN SMS mail. Send SMS as fast as e-mail!
KPN SMS mail Send SMS as fast as e-mail! Quick start Start using KPN SMS mail in 5 steps If you want to install and use KPN SMS mail quickly, without reading the user guide, follow the next five steps.
Using an Access Database
A Few Terms Using an Access Database These words are used often in Access so you will want to become familiar with them before using the program and this tutorial. A database is a collection of related
Using Microsoft Access
Using Microsoft Access Relational Queries Creating a query can be a little different when there is more than one table involved. First of all, if you want to create a query that makes use of more than
MICROSOFT ACCESS TABLES
MICROSOFT ACCESS TABLES Create a New Table... 1 Design View... Datasheet View... 5 Table Tools in Datasheet View... 6 Sorting and Filtering Data... 8 Import and Export Data... 10 Relationships... 11 Relationship
Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008
Microsoft Amarillo College Revision Date: July 30, 2008 Table of Contents GENERAL INFORMATION... 1 TERMINOLOGY... 1 ADVANTAGES OF USING A DATABASE... 2 A DATABASE SHOULD CONTAIN:... 3 A DATABASE SHOULD
Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals
Excel 2003 Instructions Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals contains extensive instructions for using Excel 2010 and Excel for Mac 2011. There are a few instances
Introduction to Microsoft Office Access 2010
Introduction to Microsoft Office Access 2010 The Himmelfarb Health Sciences Library Questions? Ask us. Microsoft Office Access 2010 by Himmelfarb Health Sciences Library is licensed under a Creative Commons
Chapter 5. Microsoft Access
Chapter 5 Microsoft Access Topic Introduction to DBMS Microsoft Access Getting Started Creating Database File Database Window Table Queries Form Report Introduction A set of programs designed to organize,
Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc.
A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2011 Advanced Crystal Reports TeachUcomp, Inc. it s all about you Copyright: Copyright 2011 by TeachUcomp, Inc. All rights reserved.
Access Tutorial 3 Maintaining and Querying a Database. Microsoft Office 2013 Enhanced
Access Tutorial 3 Maintaining and Querying a Database Microsoft Office 2013 Enhanced Objectives Session 3.1 Find, modify, and delete records in a table Hide and unhide fields in a datasheet Work in the
Tutorial 3 Maintaining and Querying a Database
Tutorial 3 Maintaining and Querying a Database Microsoft Access 2013 Objectives Session 3.1 Find, modify, and delete records in a table Hide and unhide fields in a datasheet Work in the Query window in
DbSchema Tutorial with Introduction in SQL Databases
DbSchema Tutorial with Introduction in SQL Databases Contents Connect to the Database and Create First Tables... 2 Create Foreign Keys... 7 Create Indexes... 9 Generate Random Data... 11 Relational Data
How to test and debug an ASP.NET application
Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult
Excel macros made easy
IT Training Excel macros made easy Jane Barrett, IT Training & Engagement Team Information System Services Version 1.1 Scope Learning outcomes Understand the concept of what a macro is and what it does.
Basic Formulas in Excel. Why use cell names in formulas instead of actual numbers?
Understanding formulas Basic Formulas in Excel Formulas are placed into cells whenever you want Excel to add, subtract, multiply, divide or do other mathematical calculations. The formula should be placed
Creating a New MS-Access Database
Group Size 3 or 4. Due date : at next week labs. Requirements Using MS Access, implement an application for a students project groups and teachers. What should be covered: Opening a Database The Database
Quick Guide. Passports in Microsoft PowerPoint. Getting Started with PowerPoint. Locating the PowerPoint Folder (PC) Locating PowerPoint (Mac)
Passports in Microsoft PowerPoint Quick Guide Created Updated PowerPoint is a very versatile tool. It is usually used to create multimedia presentations and printed handouts but it is an almost perfect
Excel 2007 Basic knowledge
Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft
Intellect Platform - Tables and Templates Basic Document Management System - A101
Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System
A Short Tutorial on Using Visio 2010 for Entity-Relationship Diagrams
A Short Tutorial on Using Visio 2010 for Entity-Relationship Diagrams by Nezar Hussain Microsoft Visio 2010 is a flexible software tool that allows users to create some diagrams and charts, providing an
ECDL Module 5. REFERENCE MANUAL Databases. Microsoft Access 2003 Edition for ECDL Syllabus Four
ECDL Module 5 REFERENCE MANUAL Databases Microsoft Access 2003 Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 5 (USING OFFICE 2003) - MANUAL 1995-2006 Cheltenham Courseware Ltd. Crescent House 24
