Database Design for the non- technical researcher. University of Illinois Library

Size: px
Start display at page:

Download "Database Design for the non- technical researcher. University of Illinois Library"

Transcription

1 Database Design for the non- technical researcher University of Illinois Library Eric Johnson

2 Goals for today Learn how databases are structured Learn to organize data into tables Learn basic SQL Use Access to graphically create queries that can be used in any database

3 Limits of this class We will cover only the basics The focus is on storing and retrieving data for your thesis While not a software class, we will use Access for some examples Queries (SQL) created in Access can be used in other databases (with a bit of editing)

4 Prerequisites for this class Know how to download files using a web browser Know how to navigate to the downloaded file and open it

5 Introductions Name Department A sentence about why you are here

6 Ways to record data A big note book(s) hotos/urbansheep/ /

7 shadaned Ways to record data Index cards (edge notched for sorting)

8 Ways to record data Spread sheets Word processor files Camera images Etc.

9 Plan for data collection Being organized helps you find the information you collected For Citations use a Bibliography manager database (Zotero, Endnote, Mendeley, Refworks, etc.) For Concepts keep an organized journal For Data use spreadsheets or database Data can be text, numbers, time/date

10 Why a spread sheet or database? Organized to help you to find the facts you collected Easy to sort It is ready for statistical analysis Software can make maps from the data

11 Spread sheet vs. database Spread sheet are sortable, but can t have queries Useful for small amounts of information Flat file databases are like spread sheets with the ability to answer queries Relational databases connect the spread sheet tables together As you get more information, a database will be able to sort through it quickly

12 Some Tools Spreadsheets Microsoft Excel, OpenOffice, AppleWorks, Mac Numbers Databases- Access, MySQL, PostGre, Oracle(enterprise level), AppleWorks Geographic Databases- ArcMap, PostGIS Statistics SPSS, STATA, SAS

13 Getting the Tools Webstore: Microsoft Office (Excel and Access), ArcMap Online free: MySQL, PostGreSQL, PostGIS At most campus computer labs: SPSS, SAS, STATA (ATLAS & ACES)

14 Design Considerations What is the purpose of your data? What questions might you want to ask? How much data will you have? How complex are the data relationships?

15 Spreadsheet Table Each table or spreadsheet page is a major type of information or topic The table topic is usually a noun like people, or place The table collects data about the topic Spreadsheet pages can be converted to database tables and visa versa

16 Spreadsheet Table Each table or spreadsheet page is a major type of information or topic. The table topic is usually a noun like people, or place. The table collects data about the topic. Spreadsheet pages can be converted to database tables and visa versa.

17 Columns and database Fields Each column or field is a topic detail BOOK table has columns for Title, AuthorID, and NumberOfPages AUTHOR table has columns for FullName, BirthDate, and HomeTown

18 Columns and database Fields <insert picture of BOOK table> <insert picture of AUTHOR table>

19 Connecting Columns Each table has an Index column Every row will have an index value The index can be a number or words The index value isn t repeated in a table

20 Connecting Columns The BOOK table uses AuthorID to point to rows in the AUTHOR table AUTHOR table has an index or Key column for linking to other tables MOVIE table points to AUTHOR and BOOK

21 Connecting Columns Advantages: The complete author information doesn t need to be written down for each book Easy to find information because it is categorized

22 More columns Include various information you collect A column could list the original source or citation A column could tell you where in your notes you put additional information (Not everything can fit in a database)

23 Relationships Tables will have relationships with each other Relationship are usually Verbs AUTHOR wrote BOOK BOOK was made into a MOVIE

24 Entity-Relationship (E-R) Diagram Can help you understand and clarify how your data is connected

25 Information is in only one place Avoid redundancy. Don t put the same data in multiple places. You don t have to repeat data entry Takes less space Easier to read Reduces typing errors Easier to correct

26 Use Meaningful names File, Folder, Table and Column names should each tell you what they contain Make it easy for you to find the data in the future CamelCase and underscored_words can be used instead of spaces

27 Decide on a naming scheme Pick some method that will work for you Be consistent in using it Write down your scheme so you will remember how to use it later

28 Names What does SFAP1900 mean?

29 Names What does SFAP1900 mean? Science Fiction Authors Pre-1900 Perhaps SciFiAuthPre1900 would be better

30 Only 1 Thing When designing a survey, each question should ask only one thing Each cell in a spread sheet or database table should also contain only one thing Make 2 rows if you have 2 things Sortable, findable

31 Only 1 Thing per cell Make 2 rows if you have 2 things Bad Good

32 SQL The language of databases Used to collect your desired sub-set of the information Can do math like counting and finding averages

33 SQL words SELECT FROM ; WHERE GROUP BY HAVING ORDER BY CREATE Required Optional

34 Tables for the next section Table names are capitalized Fields are CamelCase

35 What is your question? List Mark Twain s books and his full name

36 SELECT Which columns do you want to view? SELECT FullName, BookTitle; Every SQL statement ends with ;

37 FROM Tells the database from which tables to select the columns SELECT FullName, BookTitle FROM AUTHOR, BOOK; (At this point we will get every possible combination of the tables)

38 JOIN Limits the possible combinations to what is useful Indicates columns that connect tables SELECT FullName, BookTitle FROM AUTHOR JOIN BOOK on AUTHOR.AuthorID = BOOK.AuthorID;

39 WHERE Used to select rows in which you have interest SELECT FullName, BookTitle FROM AUTHOR JOIN BOOK on AUTHOR.AuthorID = BOOK.AuthorID WHERE AuthorID = Mark Twain ;

40 GROUP BY Used to get rid of duplicates now that some of the columns are gone SELECT FullName, BookTitle FROM AUTHOR JOIN BOOK on AUTHOR.AuthorID = BOOK.AuthorID WHERE AuthorID = Mark Twain GROUP BY AuthorID;

41 HAVING Similar to WHERE but happens after grouping SELECT FullName, BookTitle FROM AUTHOR JOIN BOOK on AUTHOR.AuthorID = BOOK.AuthorID GROUP BY AuthorID HAVING AuthorID = Mark Twain ;

42 ORDER BY Used to sort each column SELECT FullName, BookTitle FROM AUTHOR JOIN BOOK on AUTHOR.AuthorID = BOOK.AuthorID GROUP BY AuthorID HAVING AuthorID = Mark Twain ORDER BY BookTitle;

43 CREATE table AS Saves the results into a new table CREATE table TWAIN AS SELECT FullName, BookTitle FROM AUTHOR JOIN BOOK on AUTHOR.AuthorID = BOOK.AuthorID GROUP BY AuthorID HAVING AuthorID = Mark Twain ORDER BY BookTitle;

44 The Procedure 1. Decide what information you want 2. Pick the columns you need 3. Remove unwanted rows 4. Group the information 5. Do any math needed 6. Remove unwanted rows again 7. Sort the results

45 Get a database file Download the database file: Workshop-database.accdb Open the database file in Access You may need to click enable content

46 Access layout Tables are listed on the left Queries will be below the tables The right is for displaying data and designing queries

47 Look at a table Double click on Author table It opens up and shows data AuthorID is an index column that helps a database keep track of data Each row is an item (a person) Each column is a characteristic of that person

48 Table Fields Click on View under the Home tab in the upper left and switch to Design view. Each Field Name is listed The type of data in each field is specified (text, number, date/time, etc.) At the bottom, see if the field selected is indexed In big databases, indexing helps queries run faster

49 Table Fields Click on View in the upper left and switch to Design view. Each Field Name is listed The type of data in each field is specified (text, number, date/time, etc.) At the bottom, see if the field selected is indexed In big databases, indexing helps queries run faster

50 Quiz In the AUTHOR table, is AuthorID a text or number field? Is AuthorID indexed? Is AuthorID a key? (Keys are used to automatically link tables)

51 Designing a Query: What is Mark Twain s home town? Close the AUTHOR table (right click on AUTHOR tab and select close) Click on the Create tab Click on Query Design In the Show Table dialog, select the AUTHOR Table Then select Add then Close

52 Click on the Create tab Click on Query Design In the Show Table dialog, select the AUTHOR Table Then select Add then Close.

53 Designing a Query: What is Mark Twain s home town? Drag ShortName from the field list to a column in the grid below In the Criteria line under ShortName, type Mark Twain Drag HomeTown to the next column Select the red Run exclamation point in the upper left

54

55

56 Designing a Query: What is Mark Twain s home town? The result is a table that lists only the information you wanted

57 Designing a Query: What is Mark Twain s birth date? In the upper left, click View to return to the query design view Drag BirthDate to the grid

58 Designing a Query: What is Mark Twain s birth date? Delete the HomeTown column 2 ways: In the grid click just above HomeTown the column will turn black o The delete key will remove it - Or - o Select Delete Columns at the top in Query Setup ribbon Run the query

59

60

61

62 Designing a Query: What is Emily Bronte s birth date? Return to query design mode by clicking the View button Change Mark Twain to Emily Bronte Run the query

63

64

65 Save and close query Right click on the tab for Query1 and select Close Select Yes, you want to save changes Give the query a meaningful name so you can find it later

66 Save Query Right click on the Query1 tab and select Save Give the query a name so you can find it later

67 Designing a Query: How many pages are in each book? In the Create tab select Query Design Select the BOOK table, Add it and close the Show Table window Drag BookTitle and NumberOfPages to the design grid Run the query Notice that the order is not sorted

68 Designing a Query: How many pages are in each book? In the Create tab select Query Design Add the BOOK table Drag BookTitle and NumberOfPages to the design grid Run the query

69 Designing a Query: How many pages are in each book? In the Create tab select Query Design Add the BOOK table Drag BookTitle and NumberOfPages to the design grid Run the query

70 Designing a Query: How many pages are in each book, sorted by number of pages? Back in design view, Under NumberOfPages, in the Sort criteria row select Ascending Run the query The result is now sorted

71 Designing a Query: How many pages are in each book, sorted by number of pages? Under NumberOfPages, in the criteria row select Ascending Run the query The result is now sorted

72 Designing a Query: How many pages are in each book, sorted by number of pages? Under NumberOfPages, in the criteria row select Ascending Run the query The result is now sorted

73 Multiple tables Each query can draw from multiple tables Drag the AUTHOR table from the left to the field list workspace Notice that the AuthorID s are linked

74

75 Multiple tables The AuthorID s were automatically linked because AuthorID was set as a key You can also link fields by dragging a field from one list to another The links reduce the results to only items that match in that column in both tables

76 Designing a Query: What are Emily Bronte s books? Drag ShortName to the grid Delete NumberOfPages from the grid Set the criteria for ShortName to Emily Bronte Run the query

77 Designing a Query: What are Emily Bronte s books? Drag ShortName to the grid Delete NumberOfPages from the grid Set the criteria for ShortName to Emily Bronte Run the query

78 Designing a Query: What are Emily Bronte s books? Drag ShortName to the grid Delete NumberOfPages from the grid Set the criteria for ShortName to Emily Bronte Run the query

79 Designing a Query: How many of Emily s books are in the database? In design view, select the Totals sigma in the upper right In the grid Total: row under BookTitle, change the entry from Group By to Count Run the query

80

81

82 Designing a Query: Show Books made into movies. Under BookTitle, reset Count to Group By Add the MOVIE table to the field list Delete ShortName from the grid Drag MovieTitle to the grid Run the query (it will be wrong)

83

84

85 Designing a Query: Show books made into movies. What went wrong? The query selected every combination of BookTitle and MovieTitle To fix this, in design view, drag the BookID from BOOK to the BookID in MOVIE Run the query (this time it will be right)

86

87

88 Designing a Query: Show Author, Movie title and Release year, sorted by year. Remove the BOOK table from the design space (right click on it and select remove table) Make the grid have ShortName, MovieTitle and ReleaseYear ReleaseYear should be sorted Ascending Run the query

89

90

91 Make a table: Show Author, Movie title and Release year, sorted by year. Grid is like before In the upper left, select Make Table and name it MOVIE_DATES Run the query. Let Access paste rows Open the new table to see if it is what you expected

92

93

94

95 Look at the SQL Close the MOVIE_DATES table (right click on the tab and select Close) In the Query design for Query1, at the lower right, select SQL OR in the upper left under View, select SQL View This shows the SQL statement. You can copy and paste and change this to make new queries.

96 Look at the SQL Close the MOVIE_DATES table (right click on the tab and select Close) In the Query design for Query1, at the lower right, select SQL OR in the upper left under View, select SQL View This shows the SQL statement. You can co

97

98 Questions?

99 Survey What other database skills would you like to learn?

100 For more help Scholarly Commons for one-on-one consultation ATLAS data services shops/registration/ Database classes at University of Illinois: BADM 352, BADM 554, CS 105 (covers other areas also), CS 411, LIS 490DB / LIS 490DBL, STAT 440 Links to numeric and spatial data

Introduction to Microsoft Access 2003

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

More information

Advanced Database Concepts Using Microsoft Access

Advanced Database Concepts Using Microsoft Access Advanced Database Concepts Using Microsoft Access lab 10 Objectives: Upon successful completion of Lab 10, you will be able to Understand database terminology, including database, table, record, field,

More information

Introduction to Microsoft Access 2013

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:

More information

Introduction to Microsoft Access 2010

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:

More information

Tutorial 3. Maintaining and Querying a Database

Tutorial 3. Maintaining and Querying a Database Tutorial 3 Maintaining and Querying a Database Microsoft Access 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save queries

More information

Microsoft Office 2010

Microsoft Office 2010 Access Tutorial 3 Maintaining and Querying a Database Microsoft Office 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save

More information

Microsoft Access 3: Understanding and Creating Queries

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

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

MS Access Lab 2. Topic: Tables

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

More information

Microsoft Access 2007

Microsoft Access 2007 How to Use: Microsoft Access 2007 Microsoft Office Access is a powerful tool used to create and format databases. Databases allow information to be organized in rows and tables, where queries can be formed

More information

How To Understand The Basic Concepts Of A Database And Data Science

How To Understand The Basic Concepts Of A Database And Data Science Database Concepts Using Microsoft Access lab 9 Objectives: Upon successful completion of Lab 9, you will be able to Understand fundamental concepts including database, table, record, field, field name,

More information

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700 Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 training@csun.edu TABLE OF CONTENTS Introduction... 1 Import Excel

More information

Creating a Gradebook in Excel

Creating a Gradebook in Excel Creating a Spreadsheet Gradebook 1 Creating a Gradebook in Excel Spreadsheets are a great tool for creating gradebooks. With a little bit of work, you can create a customized gradebook that will provide

More information

Web Intelligence User Guide

Web Intelligence User Guide Web Intelligence User Guide Office of Financial Management - Enterprise Reporting Services 4/11/2011 Table of Contents Chapter 1 - Overview... 1 Purpose... 1 Chapter 2 Logon Procedure... 3 Web Intelligence

More information

Toad for Data Analysts, Tips n Tricks

Toad for Data Analysts, Tips n Tricks Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers

More information

Create a New Database in Access 2010

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...

More information

Check out our website!

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:

More information

Use Find & Replace Commands under Home tab to search and replace data.

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

More information

Business Objects Version 5 : Introduction

Business Objects Version 5 : Introduction Business Objects Version 5 : Introduction Page 1 TABLE OF CONTENTS Introduction About Business Objects Changing Your Password Retrieving Pre-Defined Reports Formatting Your Report Using the Slice and Dice

More information

Introduction to Microsoft Access 2007

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

More information

Access II 2007 Workshop

Access II 2007 Workshop Access II 2007 Workshop Query & Report I. Review Tables/Forms Ways to create tables: tables, templates & design Edit tables: new fields & table properties Import option Link tables: Relationship Forms

More information

Monthly Payroll to Finance Reconciliation Report: Access and Instructions

Monthly Payroll to Finance Reconciliation Report: Access and Instructions Monthly Payroll to Finance Reconciliation Report: Access and Instructions VCU Reporting Center... 2 Log in... 2 Open Folder... 3 Other Useful Information: Copying Sheets... 5 Creating Subtotals... 5 Outlining

More information

Microsoft Access 2010: Basics & Database Fundamentals

Microsoft Access 2010: Basics & Database Fundamentals Microsoft Access 2010: Basics & Database Fundamentals This workshop assumes you are comfortable with a computer and have some knowledge of other Microsoft Office programs. Topics include database concepts,

More information

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

More information

Click to create a query in Design View. and click the Query Design button in the Queries group to create a new table in Design View.

Click to create a query in Design View. and click the Query Design button in the Queries group to create a new table in Design View. Microsoft Office Access 2010 Understanding Queries Queries are questions you ask of your database. They allow you to select certain fields out of a table, or pull together data from various related tables

More information

Microsoft Access Basics

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

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

Lab 2: MS ACCESS Tables

Lab 2: MS ACCESS Tables Lab 2: MS ACCESS Tables Summary Introduction to Tables and How to Build a New Database Creating Tables in Datasheet View and Design View Working with Data on Sorting and Filtering 1. Introduction Creating

More information

MICROSOFT ACCESS 2003 TUTORIAL

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

More information

Tutorial 3: Working with Tables Joining Multiple Databases in ArcGIS

Tutorial 3: Working with Tables Joining Multiple Databases in ArcGIS Tutorial 3: Working with Tables Joining Multiple Databases in ArcGIS This tutorial will introduce you to the following concepts: Identifying Attribute Data Sources Converting Tabular Data into GIS Databases

More information

Downloading & Using Data from the STORET Warehouse: An Exercise

Downloading & Using Data from the STORET Warehouse: An Exercise Downloading & Using Data from the STORET Warehouse: An Exercise August 2012 This exercise addresses querying or searching for specific water resource data, and the respective methods used in collecting

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

Consider the possible problems with storing the following data in a spreadsheet:

Consider the possible problems with storing the following data in a spreadsheet: Microsoft Access 2010 Part 1: Introduction to Database Design What is a database? Identifying entities and attributes Understanding relationships and keys Developing tables and other objects Planning a

More information

Microsoft Access 2010- Introduction

Microsoft Access 2010- Introduction Microsoft Access 2010- Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an

More information

Google Drive: Access and organize your files

Google Drive: Access and organize your files Google Drive: Access and organize your files Use Google Drive to store and access your files, folders, and Google Docs, Sheets, and Slides anywhere. Change a file on the web, your computer, tablet, or

More information

Excel Budget Homework

Excel Budget Homework Excel Budget Homework CSE 3, Fall 2009 Due at the BEGINNING of your next lab. A. Annual Budget One of the most common uses of a spreadsheet is to chart financial information. We are going to create an

More information

SharePoint 2010. Rollins College 2011

SharePoint 2010. Rollins College 2011 SharePoint 2010 Rollins College 2011 1 2 Contents Overview... 5 Accessing SharePoint... 6 Departmental Site - User Interface... 7 Permissions... 8 Site Actions: Site Administrator... 8 Site Actions: General

More information

General User/Technical Guide for Microsoft Access

General User/Technical Guide for Microsoft Access General User/Technical Guide for Microsoft Access School of Nursing University of Michigan This guide is the first step in understanding your database. See the list of documentation locations at the end

More information

Creating and Using Databases with Microsoft Access

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

More information

ACS ChemWorx Quick User Guide Created by: ACS ChemWorx http://www.acschemworx.org

ACS ChemWorx Quick User Guide Created by: ACS ChemWorx http://www.acschemworx.org ACS ChemWorx Quick User Guide Created by: ACS ChemWorx http://www.acschemworx.org Download a comprehensive user guide at http://pubs.acs.org/iapps/acschemworx/tutorial.html Contents OVERVIEW... 3 ACS CHEMWORX

More information

Creating a Participants Mailing and/or Contact List:

Creating a Participants Mailing and/or Contact List: Creating a Participants Mailing and/or Contact List: The Limited Query function allows a staff member to retrieve (query) certain information from the Mediated Services system. This information is from

More information

Microsoft Access 2007 Introduction

Microsoft Access 2007 Introduction Microsoft Access 2007 Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an

More information

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices. MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.6. Much of the documentation also applies to the previous 1.2 series. For notes detailing

More information

Excel for Data Cleaning and Management

Excel for Data Cleaning and Management Excel for Data Cleaning and Management Background Information This workshop is designed to teach skills in Excel that will help you manage data from large imports and save them for further use in SPSS

More information

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

More information

Microsoft Business Contact Manager 2010 - Complete

Microsoft Business Contact Manager 2010 - Complete Microsoft Business Contact Manager 2010 - Complete Introduction Prerequisites Section 1: Getting Started with Business Contact Manager Lesson 1.1: Setting up Business Contact Manager What is Business Contact

More information

Advanced Excel 10/20/2011 1

Advanced Excel 10/20/2011 1 Advanced Excel Data Validation Excel has a feature called Data Validation, which will allow you to control what kind of information is typed into cells. 1. Select the cell(s) you wish to control. 2. Click

More information

Create Mailing Labels Using Excel Data (Mail Merge)

Create Mailing Labels Using Excel Data (Mail Merge) Create Mailing Labels Using Excel Data (Mail Merge) This quick guide will show you how to create mailing labels from an Excel spreadsheet. To print mailing labels, you ll import Excel spreadsheet data

More information

University of Rochester

University of Rochester University of Rochester User s Guide to URGEMS Ad Hoc Reporting Guide Using IBM Cognos Workspace Advanced, Version 10.2.1 Version 1.0 April, 2016 1 P age Table of Contents Table of Contents... Error! Bookmark

More information

Government 1008: Introduction to Geographic Information Systems. LAB EXERCISE 4: Got Database?

Government 1008: Introduction to Geographic Information Systems. LAB EXERCISE 4: Got Database? Government 1008: Introduction to Geographic Information Systems Objectives: Creating geodatabases Joining attribute tables Attribute and location based queries Spatial joins Creating spatial and attribute

More information

Using FileMaker Pro with Microsoft Office

Using FileMaker Pro with Microsoft Office Hands-on Guide Using FileMaker Pro with Microsoft Office Making FileMaker Pro Your Office Companion page 1 Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker

More information

Advanced Presentation Features and Animation

Advanced Presentation Features and Animation There are three features that you should remember as you work within PowerPoint 2007: the Microsoft Office Button, the Quick Access Toolbar, and the Ribbon. The function of these features will be more

More information

Using Microsoft Access Front End to NIMSP MySQL Database

Using Microsoft Access Front End to NIMSP MySQL Database Technical Report Using Microsoft Access Front End to NIMSP MySQL Database by Earl F Glynn 10 Oct. 2013 Contents Purpose... 3 Introduction... 3 National Institute on Money in State Politics... 3 How to

More information

Access Part 2 - Design

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

More information

Microsoft Access 2010 Part 1: Introduction to Access

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

More information

How to create and personalize a PDF portfolio

How to create and personalize a PDF portfolio How to create and personalize a PDF portfolio Creating and organizing a PDF portfolio is a simple process as simple as dragging and dropping files from one folder to another. To drag files into an empty

More information

Microsoft Query, the helper application included with Microsoft Office, allows

Microsoft Query, the helper application included with Microsoft Office, allows 3 RETRIEVING ISERIES DATA WITH MICROSOFT QUERY Microsoft Query, the helper application included with Microsoft Office, allows Office applications such as Word and Excel to read data from ODBC data sources.

More information

LAB 1: Getting started with WebMatrix. Introduction. Creating a new database. M1G505190: Introduction to Database Development

LAB 1: Getting started with WebMatrix. Introduction. Creating a new database. M1G505190: Introduction to Database Development LAB 1: Getting started with WebMatrix Introduction In this module you will learn the principles of database development, with the help of Microsoft WebMatrix. WebMatrix is a software application which

More information

User Guide. Opening secure email from the State of Oregon Viewing birth certificate edits reports in MS Excel

User Guide. Opening secure email from the State of Oregon Viewing birth certificate edits reports in MS Excel User Guide Opening secure email from the State of Oregon Viewing birth certificate edits reports in MS Excel Birth Certifier Edition Last Revised: August, 0 PUBLIC HEALTH DIVISION Center for Public Health

More information

Using Microsoft Excel to Manage and Analyze Data: Some Tips

Using Microsoft Excel to Manage and Analyze Data: Some Tips Using Microsoft Excel to Manage and Analyze Data: Some Tips Larger, complex data management may require specialized and/or customized database software, and larger or more complex analyses may require

More information

Web Ambassador Training on the CMS

Web Ambassador Training on the CMS Web Ambassador Training on the CMS Learning Objectives Upon completion of this training, participants will be able to: Describe what is a CMS and how to login Upload files and images Organize content Create

More information

Microsoft Excel 2010 Training. Use Excel tables to manage information

Microsoft Excel 2010 Training. Use Excel tables to manage information Microsoft Excel 2010 Training Use Excel tables to manage information Overview: Help with data management In this course, you ll learn how to manage information by using tables in Excel. Tables make it

More information

Microsoft. Access HOW TO GET STARTED WITH

Microsoft. Access HOW TO GET STARTED WITH Microsoft Access HOW TO GET STARTED WITH 2015 The Continuing Education Center, Inc., d/b/a National Seminars Training. All rights reserved, including the right to reproduce this material or any part thereof

More information

Tutorial 3 Maintaining and Querying a Database

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

More information

Instructions for Creating Silly Survey Database

Instructions for Creating Silly Survey Database Instructions for Creating Silly Survey Database Create a New Database 1. Find the shortcut or the file that starts MS Access and click it to activate the program. 2. In the Create a New Database Using

More information

SAP Business Intelligence (BI) Reporting Training for MM. General Navigation. Rick Heckman PASSHE 1/31/2012

SAP Business Intelligence (BI) Reporting Training for MM. General Navigation. Rick Heckman PASSHE 1/31/2012 2012 SAP Business Intelligence (BI) Reporting Training for MM General Navigation Rick Heckman PASSHE 1/31/2012 Page 1 Contents Types of MM BI Reports... 4 Portal Access... 5 Variable Entry Screen... 5

More information

ACS ChemWorx User Guide http://www.acschemworx.org

ACS ChemWorx User Guide http://www.acschemworx.org ACS ChemWorx User Guide http://www.acschemworx.org Contents OVERVIEW... 5 ACS CHEMWORX DESKTOP APP... 5 HOW TO INSTALL THE DESKTOP... 5 ACS CHEMWORX WEB APP... 5 ACS CHEMWORX MOBILE APP... 5 SETTING UP

More information

OLAP Cube Manual deployment and Error resolution with limited licenses and Config keys

OLAP Cube Manual deployment and Error resolution with limited licenses and Config keys Documented by - Sreenath Reddy G OLAP Cube Manual deployment and Error resolution with limited licenses and Config keys Functionality in Microsoft Dynamics AX can be turned on or off depending on license

More information

SAP BusinessObjects Financial Consolidation Web User Guide

SAP BusinessObjects Financial Consolidation Web User Guide SAP BusinessObjects Financial Consolidation Document Version: 10.0 Support Package 18 2016-02-19 SAP BusinessObjects Financial Consolidation Web User Guide Content 1 General user functions....12 1.1 To

More information

Creating a Poster in Powerpoint

Creating a Poster in Powerpoint Creating a Poster in Powerpoint January 2013 Contents 1. Starting Powerpoint 2. Setting Size and Orientation 3. Display a Grid 5. Apply a background 7. Add text to your poster 9. Add WordArt to your poster

More information

Planning and Creating a Custom Database

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

More information

Filter by Selection button. Displays records by degree to which they match the selected record. Click to view advanced filtering options

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

More information

Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008

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

More information

Microsoft Office Access 2007 which I refer to as Access throughout this book

Microsoft Office Access 2007 which I refer to as Access throughout this book Chapter 1 Getting Started with Access In This Chapter What is a database? Opening Access Checking out the Access interface Exploring Office Online Finding help on Access topics Microsoft Office Access

More information

Access Tutorial 3 Maintaining and Querying a Database. Microsoft Office 2013 Enhanced

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

More information

In-Depth Guide Advanced Spreadsheet Techniques

In-Depth Guide Advanced Spreadsheet Techniques In-Depth Guide Advanced Spreadsheet Techniques Learning Objectives By reading and completing the activities in this chapter, you will be able to: Create PivotTables using Microsoft Excel Create scenarios

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access USING MICROSOFT ACCESS 1 Queries 2 Exercise 1. Setting up a Query 3 Exercise 2. Selecting Fields for Query Output 4 Exercise 3. Saving a Query 5 Query Criteria 6 Exercise 4. Adding

More information

Working together with Word, Excel and PowerPoint

Working together with Word, Excel and PowerPoint Working together with Word, Excel and PowerPoint Have you ever wanted your Word document to include data from an Excel spreadsheet, or diagrams you ve created in PowerPoint? This note shows you how to

More information

TheFinancialEdge. Reports Guide for Accounts Receivable

TheFinancialEdge. Reports Guide for Accounts Receivable TheFinancialEdge Reports Guide for Accounts Receivable 041813 2013 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or

More information

How to Make the Most of Excel Spreadsheets

How to Make the Most of Excel Spreadsheets How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which

More information

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

Calculating Cash Flow Using Excel Data Lists

Calculating Cash Flow Using Excel Data Lists Calculating Cash Flow Using Excel Data Lists By: Curtis D. Frye 7/26/2006 Bank and credit card statements tell you where your money has gone, but they don t show you how much money you ll have on hand

More information

INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports

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

More information

Converting an Excel Spreadsheet Into an Access Database

Converting an Excel Spreadsheet Into an Access Database Converting an Excel Spreadsheet Into an Access Database Tracey L. Fisher Personal Computer and Software Instructor Butler County Community College - Adult and Community Education Exceeding Your Expectations..

More information

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro

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

More information

Crystal Reports Payroll Exercise

Crystal Reports Payroll Exercise Crystal Reports Payroll Exercise Objective This document provides step-by-step instructions on how to build a basic report on Crystal Reports XI on the MUNIS System supported by MAISD. The exercise will

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

Microsoft Office 365 Portal

Microsoft Office 365 Portal Microsoft Office 365 Portal Once you logon, you are placed in the Admin page if you are an adminstrator. Here you will manage permissions for SharePoint, install Office Professional for Windows users,

More information

An Introduction to Excel Pivot Tables

An Introduction to Excel Pivot Tables An Introduction to Excel Pivot Tables EXCEL REVIEW 2001-2002 This brief introduction to Excel Pivot Tables addresses the English version of MS Excel 2000. Microsoft revised the Pivot Tables feature with

More information

Explore commands on the ribbon Each ribbon tab has groups, and each group has a set of related commands.

Explore commands on the ribbon Each ribbon tab has groups, and each group has a set of related commands. Quick Start Guide Microsoft Excel 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Add commands to the Quick Access Toolbar Keep favorite commands

More information

Creating a Database in Access

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

More information

Add a custom a color scheme

Add a custom a color scheme The Page Design Ribbon About color schemes and font schemes Color schemes are sets of colors designed to look complement one another. Similarly, font schemes are sets of complementary fonts that are used

More information

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. 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

More information

User Services. Intermediate Microsoft Access. Use the new Microsoft Access. Getting Help. Instructors OBJECTIVES. July 2009

User Services. Intermediate Microsoft Access. Use the new Microsoft Access. Getting Help. Instructors OBJECTIVES. July 2009 User Services July 2009 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet & MS Access database Create Relationships Create a Form with a Subform Create Action Queries Create Command

More information

Task Force on Technology / EXCEL

Task Force on Technology / EXCEL Task Force on Technology EXCEL Basic terminology Spreadsheet A spreadsheet is an electronic document that stores various types of data. There are vertical columns and horizontal rows. A cell is where the

More information

Create a Poster Using Publisher

Create a Poster Using Publisher Contents 1. Introduction 1. Starting Publisher 2. Create a Poster Template 5. Aligning your images and text 7. Apply a background 12. Add text to your poster 14. Add pictures to your poster 17. Add graphs

More information

Using EndNote Online Class Outline

Using EndNote Online Class Outline 1 Overview 1.1 Functions of EndNote online 1.1.1 Bibliography Creation Using EndNote Online Class Outline EndNote online works with your word processor to create formatted bibliographies according to thousands

More information