CS 200 Fall 2012 Assignment 8 SQL Due Monday November 10 by 4:00 pm

Size: px
Start display at page:

Download "CS 200 Fall 2012 Assignment 8 SQL Due Monday November 10 by 4:00 pm"

Transcription

1 CS 200 Fall 2012 Assignment 8 SQL Due Monday November 10 by 4:00 pm Read Notes 6, in particular Database Design and Watcom SQL User s Guide. Please follow these instructions very carefully to find the files and programs you need. Open Macintosh HD : Users : Shared 1) Within this folder you must create a new folder labeled yhc. 2) It is within this folder that you must drag the contents of the universitytables folder, in which the university.db is located. The folder contents to copy can be found in cs200 : cs200 Public : Files For SQL : For the Assignment : universitytables 3) The permissions on the yhc folder need to be changed so that you, as the owner, have both read and write privileges. In addition, change the group and others so that they have no access. Now you have a copy of the university.db on your local machine. 4) In the Applications folder on Macintosh HD, find the SQLAnywhere10 folder 5) Start DBLauncher. 6) When prompted, browse to find your university.db file and click start. Click yes on the window that follows. 7) Your database is now running. Go back to the SQLAnywhere10 folder and start Interactive SQL. 8) Under the Identification tab, input the following. UserID : dba Password : sql 9) Under the Database tab, input the name University into the database name field and browse to find your university.db file. 10) Click OK 11) The dialog box should disappear without any errors. You are now ready to send requests. When you are finished working with SQL, quit the DB launcher first and then quit the InteractiveSQL. DB Launcher starts the database server and allows you to open university.db InteractiveSQL allows you to enter and execute SQL commands from a command window. CS 200 SQL Page 1

2 You may work on question 1 with a partner. If you do, be certain that you both understand all of what you have done. The purpose of allowing you to work in groups is to enable you to help each other understand the assignment, not to enable you to divide up the work. 1. Copy the file cs200 : cs200 Public : Files For SQL : For the Assignment : Assign8.doc to your cs200main network disk on Oscar twice and rename one yhc_sql_q1.doc or (yhc1_yhc2_sql_q1.doc if you are working in pair) and the other yhc_sql_q2.doc (feel free to delete the parts not relevant to the specified question). Using MS Word, insert your input and/or output after each sub-question when asked. Please format your answers with the styles AnswerTop,Answer, AnswerBot, and SQL_Output (for tabular SQL output, where requested), which are already in Assign7.doc 1. Approximately 7% of the marks for this question are reserved for proper formatting of your answer within Assign8.doc. [75%] In InteractiveSQL create the appropriate statements to answer the queries below: a) What SQL statement would you use to list the courses known to the database? b) What SQL statement would you use to list the student numbers of people taking Algebra? c) What SQL statement would you use to list the student numbers and names of students taking Algebra, ordered by surname? d) What SQL statement would you use to count the number of students taking Algebra? (And what is the answer?) e) What SQL statement would you use to list the assignments (and exams) for Algebra? (Please include the output, formatted as a table.) f) What SQL statement would you use to list the student number, course code, assignment number, assignment description, assignment weight, and mark for all the Calculus marks for the student with ID 86088? (Please include the output, formatted as a table.) g) What SQL statement would you use to compute the course mark in Calculus for the student with ID 86088? (And what is the answer?) h) What SQL statement would you use to list the course marks for students in Calculus? (Please include the first ten lines of the answer, formatted as a table.) i) What SQL Select statement would you use to compute the course mark in Calculus, for students who also took Algebra? (Please include the output, formatted as a table.) Bonus (5 marks) j) What SQL statement would you use to determine if there is more than one student with the same last name in the database? List the people in alphabetical order (first name) only once. 2 1 Use AnswerTop for the first line of a prose answer it has a little more before leading and Answer for the rest except for the paragraph just before a table, for which AnswerBot is appropriate because it adds a bit of extra leading after the paragraph (and before the table). 2 Hint: Make sure that the names that are duplicated are displayed with the first initials. CS 200 SQL Page 2

3 The following questions must be done independently. 2. [15%] Consider the Albums database we discussed in lecture, as shown to the right. Suppose we wish to keep track of the artists who appear on the albums in our collection, and record biographical information about them. Clearly we need an Artists table like the one shown below the Albums Table. a) Explain why these two tables cannot be joined as they are and explain how a third table, with exactly two fields, could record which albums each artist appears on. You should provide a diagram of this table based on the fields of the Album and Artists tables shown here, and you should provide information about its primary and foreign keys. Your answer should also include an explanation of how each of the following problems are solved: i) one artist is likely to contribute to many albums ii) one album is likely to have many artists on it iii) in neither case do you know how many b) Given your answer to (a), supply an SQL statement that would list the artists appearing on the album (or albums!) named Fare Thee Well Love. c) Given your answer to (a), supply an SQL statement that would list the Album Title of the albums to which an artist named Jimmy Rankin has contributed. Submission Instructions For electronic submission, a folder named yhc_assign8 containing: Your formatted Word document with answers to Question 1 named yhc_sql_q1.doc or yhc1_yhc2_sql_q1.doc (if you had a partner). Your formatted Word document with answers to Question 2 named yhc_sql_q2.doc. Printout of yhc_sql_q1.doc (or yhc1_yhc2_q1.doc) and yhc_q2.doc with your name(s) and handin code(s) in the first page header. Albums Album ID Album Title Recording Group Medium Category Price Purchase Date Year Recorded Recording Label Artists Artist ID First Name Last Name Gender Birth Date Comments CS 200 SQL Page 3

4 The Watcom University Database Sample.db For each database table we show first the names of the fields in that table, and below them examples of the data values that may appear in each. The names of the fields comprising the primary key are shown in bold. Underlined fields are (or are part of) a foreign key; different kinds of underlining mark distinct foreign keys. (However, limitations in Microsoft Word make it impossible to so mark fields that are part of more than one foreign key, so we also describe all foreign keys textually.) Perhaps the simplest part of the database consists of the two tables that record the people involved: students and instructions. Student Employee SurName Initials Address Birthdate Sex 'COUTTS' 'S.E.' '289 Maple Drive...' 8 May 1966 'M ' EmpNum EmpName Initials Address RoomNum 'DIXON' 'S.R.' '91 Trailwood Drive...' 1180 Some fields are omitted to save space. Employee numbers and student numbers look the same. This is not a problem for the database system, but it is potentially confusing for people using the database. What rooms are available, both for employee offices and for the lectures/labs? Room RoomNum Type Capacity 'LR#1' 'LECT' 40 There are three kinds of rooms: lecture rooms ( LR#1 and LR#2, of type LECT ), labs ( CHLab, CSLab, and PHLab, of type LAB ), and offices (e.g. 1180, of type OFF )

5 The table describes what courses are available. There is a record for each offering of a course, and for each meeting of a section there is a Class record. Finally, the Lab table associates lectures with labs. Class Credit Hours Description 'ENG' 'Basic Report Writing (elective)' Contains the sort of information about a course that you would find in a university catalog. Both lectures (such as CS ) and labs (such as CSL ) appear in the table. The Lab table links the two (when appropriate). EmpNum 'PHYSL' A course of sufficient size is delivered in several sections, for each of which there is a section record; each section meets several times a week, and for each of those meetings there is a separate Class record. Day Time Hours RoomNum 'PHYS' 1 'MON' 09:00 1 'LR#1' 'PHYS' 1 'WED' 09:00 1 'LR#1' 'PHYS' 1 'FRI' 09:00 1 'LR#1' Lab Contains information about a particular meeting of a course. [, ] is a foreign key for the table. [ RoomNum ] is a foreign key for the Room table. Lab 'CS' 'CSL' Records the connection between a lecture and a lab. Both are defined in the table. There is some potential for confusion here, in that while labs are s in the sense that they appear in the table, when a lab appears in this table it should appear only as the value of the Lab field. Sample.db Page 2

6 Who s enrolled in what course?. Register 'PHIL' 1 This table records enrollment information. Students always enroll in a particular section of a course, even if there is only one section. The primary key, however, is just (, ) because a student can t enroll in more than one section, so there can t be more than one Register record with the same student number and course code. [ ] is a foreign key for the Student table. [] is a foreign key for the table. [, ] is a foreign key for the table. Assignment Mark AssignNum Weighting Description Date Due 'ECON' 'Midterm' '24 Oct 1986' Contains general information about a particular assignment (or exam) in a particular course. (Information about the mark a student received on an assignment is stored in the Marks table.) [ ] is a foreign key for the table. AssignNum Mark 'CALC' 5 85 Records the mark a student received for a particular assignment (or exam) in a particular course. [, ] is a foreign key for the table. [, AssignNum ] is a foreign key for the Assignment table.

7 Watcom's University Database Sample.db Student Employee SurName Initials Address Birthdate Sex EmpNum EmpName Initials Address HomePhone LabPay Rank RoomNum Mark Register Room AssignNum Mark EmpNum RoomNum Type Capacity Assignment Lab Class AssignNum Weighting Description Date Due Credit Hours Description Lab Day Time Hours RoomNum Fields comprising the primary key are in bold. The arrows connect foreign keys to the linked table. In these tables, fields with the same name always indicate matching foreign and primary key fields, but that is often not the case and is certainly not a requirement.

CS200 Assignment 9 FileMaker Due Monday November 18th 4:00 pm

CS200 Assignment 9 FileMaker Due Monday November 18th 4:00 pm CS200 Assignment 9 FileMaker Due Monday November 18th 4:00 pm Please read this assignment carefully before coming to lab. You may do questions 1-3 alone, or with a partner. If the latter, be sure you understand

More information

CS 200. Lecture 09 FileMaker vs SQL & Reports. FileMaker vs SQL + Reports. CS 200 Spring 2018

CS 200. Lecture 09 FileMaker vs SQL & Reports. FileMaker vs SQL + Reports. CS 200 Spring 2018 CS 200 Lecture 09 FileMaker vs SQL & Reports 1 Miscellaneous Notes Abbreviations aka also known as DBMS DataBase Management System mutatis mutantis with the necessary changes having been made 2 Please

More information

Practice for Test 1 (not counted for credit, but to help you prepare) Time allowed: 1 hour 15 minutes

Practice for Test 1 (not counted for credit, but to help you prepare) Time allowed: 1 hour 15 minutes p.1 of 8 INFS 4240/6240 (Section A) Database Management System Fall 2018 Practice for Test 1 (not counted for credit, but to help you prepare) Time allowed: 1 hour 15 minutes Q.1(a) 15 15 Q.1(b) 10 10

More information

CS 348 Introduction to Database Management Assignment 2

CS 348 Introduction to Database Management Assignment 2 CS 348 Introduction to Database Management Assignment 2 Due: 30 October 2012 9:00AM Returned: 8 November 2012 Appeal deadline: One week after return Lead TA: Jiewen Wu Submission Instructions: By the indicated

More information

X. Query Optimization

X. Query Optimization X. Lecture Topics Representing Plans Using Relational Algebra Transformation Rules Statistics Estimation CS338 1 Overview Generally, there are many possible access plans for processing a given query. The

More information

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "

<!DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN CS 200 Assignment 7 HTML Due Tuesday June 30 at 9:00 am Please read the submission instructions on page 7 carefully, especially if you will be working on the assignment past the due date. To access your

More information

CS 200. Lecture 05. Database Introduction. Database Introduction. CS 200 Spring Monday, June 3, 2013

CS 200. Lecture 05. Database Introduction. Database Introduction. CS 200 Spring Monday, June 3, 2013 CS 200 Lecture 05 1 Miscellaneous Notes Abbreviations aka also known as DBMS DataBase Management System mutatis mutantis with the necessary changes having been made Warning! FileMaker databases often become

More information

2. Key the titles in cells A1 to D1, adjust to size 12, click on the bold button, and format with an underline.

2. Key the titles in cells A1 to D1, adjust to size 12, click on the bold button, and format with an underline. Excel Assignment 3 1. Create a new worksheet on Sheet 3. 2. Key the titles in cells A1 to D1, adjust to size 12, click on the bold button, and format with an underline. 3. Under Class in column D key Algebra

More information

Student Manual. Cognos Analytics

Student Manual. Cognos Analytics Student Manual Cognos Analytics Join Queries in Cognos Analytics Reporting Cross-Join Error A join is a relationship between a field in one query and a field of the same data type in another query. If

More information

Course No: 4411 Database Management Systems Fall 2008 Midterm exam

Course No: 4411 Database Management Systems Fall 2008 Midterm exam Course No: 4411 Database Management Systems Fall 2008 Midterm exam Last Name: First Name: Student ID: Exam is 80 minutes. Open books/notes The exam is out of 20 points. 1 1. (16 points) Multiple Choice

More information

Creating User-Friendly Databases

Creating User-Friendly Databases Creating User-Friendly Databases Chapter 8 Databases are often created by a small number of people then used by a larger number of others. Often these people do not know how to use all the features of

More information

Using Respondus with D2L

Using Respondus with D2L Using Respondus with D2L What does Respondus do? Respondus s greatest strength is importing tests into D2L. These tests can come from textbook publishers or Word documents, or they can be created directly

More information

1. Select a cell in the column you want to sort by. In this example, we will sort by Last Name.

1. Select a cell in the column you want to sort by. In this example, we will sort by Last Name. Excel 2010 Sorting Data Introduction Page 1 With over 17 billion cells in a single worksheet, Excel 2010 gives you the ability to work with an enormous amount of data. Arranging your data alphabetically,

More information

CS 200. Lecture 06. Database Introduction. Database Introduction. CS 200 Winter 2018

CS 200. Lecture 06. Database Introduction. Database Introduction. CS 200 Winter 2018 CS 200 Lecture 06 1 Miscellaneous Notes Abbreviations aka also known as DBMS DataBase Management System mutatis mutantis with the necessary changes having been made 2 Please read and highlight BEFORE lab

More information

Review The Big Picture

Review The Big Picture CS445 - Introduction to Database Management Systems Fall Semester 2015 LECTURE 6 The Entity-Relationship Model Introduction TEXTBOOK REFERENCE: CHAPTERS 2,3 R&G 1 Review The Big Picture Data Modeling Relational

More information

Process Document Creating a Query with Runtime Prompts. Creating a Query with Runtime Prompts. Concept

Process Document Creating a Query with Runtime Prompts. Creating a Query with Runtime Prompts. Concept Concept Adding a prompt enables you to further refine a query when you run it. For example, suppose you wanted to change a query so that you could prompt the user to enter a value for the duration of a

More information

1. Textbook #1: Our Digital World (ODW). 2. Textbook #2: Guidelines for Office 2013 (GFO). 3. SNAP: Assessment Software

1. Textbook #1: Our Digital World (ODW). 2. Textbook #2: Guidelines for Office 2013 (GFO). 3. SNAP: Assessment Software CIS - Survey of Computer Information Systems FALL 014-16-Week Course Professor: JON P. RAGER Weekly Schedule Note: This schedule is subjected to BE CHANGED at your instructor's discretion. Please check

More information

IMPORTANT: Circle the last two letters of your class account:

IMPORTANT: Circle the last two letters of your class account: Fall 2001 University of California, Berkeley College of Engineering Computer Science Division EECS Prof. Michael J. Franklin FINAL EXAM CS 186 Introduction to Database Systems NAME: STUDENT ID: IMPORTANT:

More information

Database Concepts Using Microsoft Access

Database Concepts Using Microsoft Access lab Database Concepts Using Microsoft Access 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

Database Management Systems MIT Introduction By S. Sabraz Nawaz

Database Management Systems MIT Introduction By S. Sabraz Nawaz Database Management Systems MIT 22033 Introduction By S. Sabraz Nawaz Recommended Reading Database Management Systems 3 rd Edition, Ramakrishnan, Gehrke Murach s SQL Server 2008 for Developers Any book

More information

Homework 1: Relational Algebra and SQL (due February 10 th, 2016, 4:00pm, in class hard-copy please)

Homework 1: Relational Algebra and SQL (due February 10 th, 2016, 4:00pm, in class hard-copy please) Virginia Tech. Computer Science CS 4604 Introduction to DBMS Spring 2016, Prakash Homework 1: Relational Algebra and SQL (due February 10 th, 2016, 4:00pm, in class hard-copy please) Reminders: a. Out

More information

VETtrak Data Insights User Guide. for VETtrak version

VETtrak Data Insights User Guide. for VETtrak version VETtrak Data Insights User Guide for VETtrak version 4.4.8.2 Contents Data Insights User Guide... 2 What are Data Insights?... 2 Why is it called Data Insights?... 2 Why did we create this new feature?...

More information

INSTRUCTOR SELF SERVICE USER GUIDE

INSTRUCTOR SELF SERVICE USER GUIDE INSTRUCTOR SELF SERVICE USER GUIDE Page 1 of 38 Instructor Self Service Table of Contents Introduction... 3 Overview... 3 Access... 3 Sign in to Bear Tracks... 4 General Navigation... 6 Menu Navigation...

More information

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

More information

CSE 530 Midterm Exam

CSE 530 Midterm Exam CSE 530 Midterm Exam Name: (Print CLEARLY) Question Points Possible Points Earned 1 25 2 10 3 20 4 20 5 15 Total 90 1 Question 1 Heap Files Suppose we want to create a heap file with a page size of 512

More information

Contents 1. Accessing Microsoft Stream Uploading your video to My content area Deleting your video Sharing your video...

Contents 1. Accessing Microsoft Stream Uploading your video to My content area Deleting your video Sharing your video... Microsoft Stream Contents 1. Accessing Microsoft Stream... 1 2. Uploading your video to My content area... 4 3. Deleting your video... 11 4. Sharing your video... 12 4.1 Assign permission... 12 4.2 Send

More information

CS10001: Computer Literacy Lab Assignment #3, Part #2

CS10001: Computer Literacy Lab Assignment #3, Part #2 CS10001: Computer Literacy Lab Assignment #3, Part #2 Notes: This lab is an independent study, and the steps are written for Word 2003. If you are using Word 2007 on your personal computer, then you will

More information

RELEASE NOTES. Epic Offline Client Messaging 3. My Account 11. Announcement 12. Discussion Board 13. Exam 14.

RELEASE NOTES. Epic Offline Client Messaging 3. My Account 11. Announcement 12. Discussion Board 13. Exam 14. RELEASE NOTES October 5, 2011 Epic Offline Client 2.5.28.17 Inside this issue: Messaging 3 My Account 11 Announcement 12 Discussion Board 13 Exam 14 Update Client 19 Improving Communications and Exam Security

More information

proj 3B intro to multi-page layout & interactive pdf

proj 3B intro to multi-page layout & interactive pdf art 2413 typography fall 17 proj 3B intro to multi-page layout & interactive pdf objectives Students introduced to pre-made layered mockups that utilized smart art by placing vector artwork into the Photoshop

More information

download instant at The Relational Data Model

download instant at  The Relational Data Model 3 The Relational Data Model EXERCISES 3.1 Define data atomicity as it relates to the definition of relational databases. Contrast data atomicity with transaction atomicity as used in a transaction processing

More information

Name: Database Systems ( 資料庫系統 ) Midterm exam, November 15, 2006

Name: Database Systems ( 資料庫系統 ) Midterm exam, November 15, 2006 1 of 8 pages Database Systems ( 資料庫系統 ) Midterm exam, November 15, 2006 Time: 10:00 ~ 12:20 Name: Student ID: I herewith state that I understand and will adhere to the following academic integrity: I will

More information

Designing Adhoc Reports

Designing Adhoc Reports Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2010 Intellicus Technologies This document and its content

More information

HOMEWORK 8. M. Neumann. Due: THU 29 MAR PM. Getting Started SUBMISSION INSTRUCTIONS

HOMEWORK 8. M. Neumann. Due: THU 29 MAR PM. Getting Started SUBMISSION INSTRUCTIONS CSE427S HOMEWORK 8 M. Neumann Due: THU 29 MAR 2018 1PM Getting Started Update your SVN repository. When needed, you will find additional materials for homework x in the folder hwx. So, for the current

More information

Step 1. Final Grade Roster Submission. IT Department Printed on 05/21/2012 Page 1. Steps to Submit Grades. Step 1. Step 2. Step 3

Step 1. Final Grade Roster Submission. IT Department Printed on 05/21/2012 Page 1. Steps to Submit Grades. Step 1. Step 2. Step 3 /Notes 1. Log into CUNYfirst Enter your username and password AND Click on the Go button icon 2. From the Enterprise Menu, select the HR/Campus Solutions link IT Department Printed on 05/21/2012 Page 1

More information

Oracle Database 10g Express

Oracle Database 10g Express Oracle Database 10g Express This tutorial prepares the Oracle Database 10g Express Edition Developer to perform common development and administrative tasks of Oracle Database 10g Express Edition. Objectives

More information

Homework 1: RA, SQL and B+-Trees (due September 24 th, 2014, 2:30pm, in class hard-copy please)

Homework 1: RA, SQL and B+-Trees (due September 24 th, 2014, 2:30pm, in class hard-copy please) Virginia Tech. Computer Science CS 5614 (Big) Data Management Systems Fall 2014, Prakash Homework 1: RA, SQL and B+-Trees (due September 24 th, 2014, 2:30pm, in class hard-copy please) Reminders: a. Out

More information

This is a two week homework; it is twice as long as usual. You should complete the first half of it by November 6.

This is a two week homework; it is twice as long as usual. You should complete the first half of it by November 6. Homework 7 1.264, Fall 2013 Web site Due: Wednesday, November 13 A. Web site This is a two week homework; it is twice as long as usual. You should complete the first half of it by November 6. Using Visual

More information

Some (semi-)advanced tips for LibreOffice

Some (semi-)advanced tips for LibreOffice Some (semi-)advanced tips for LibreOffice by Andy Pepperdine Introduction We cover several tips on special things in Writer and Calc and anything else that turns up. Although I use LibreOffice, these should

More information

CS40 Exam #2 November 13, 2002

CS40 Exam #2 November 13, 2002 CS40 Exam #2 November 13, 2002 Name: Except where explicitly noted, all of the questions on this exam refer to the database defined by the relational schemas given on the last page of this exam. 1. For

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

CSE 344 Midterm. Wednesday, February 19, 2014, 14:30-15:20. Question Points Score Total: 100

CSE 344 Midterm. Wednesday, February 19, 2014, 14:30-15:20. Question Points Score Total: 100 CSE 344 Midterm Wednesday, February 19, 2014, 14:30-15:20 Name: Question Points Score 1 30 2 50 3 12 4 8 Total: 100 This exam is open book and open notes but NO laptops or other portable devices. You have

More information

Microsoft Office Word 2013

Microsoft Office Word 2013 Microsoft Office Word 2013 Mail Merge and Creating Forms University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2014 KSU Department of University

More information

User's Guide c-treeace SQL Explorer

User's Guide c-treeace SQL Explorer User's Guide c-treeace SQL Explorer Contents 1. c-treeace SQL Explorer... 4 1.1 Database Operations... 5 Add Existing Database... 6 Change Database... 7 Create User... 7 New Database... 8 Refresh... 8

More information

Join Queries in Cognos Analytics Reporting

Join Queries in Cognos Analytics Reporting Join Queries in Cognos Analytics Reporting Business Intelligence Cross-Join Error A join is a relationship between a field in one query and a field of the same data type in another query. If a report includes

More information

eschoolplus+ Cognos Query Studio Training Guide Version 2.4

eschoolplus+ Cognos Query Studio Training Guide Version 2.4 + Training Guide Version 2.4 May 2015 Arkansas Public School Computer Network This page was intentionally left blank Page 2 of 68 Table of Contents... 5 Accessing... 5 Working in Query Studio... 8 Query

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

How to design and print cards using a database connection with. emedia CS Software

How to design and print cards using a database connection with. emedia CS Software How to design and print cards using a database connection with emedia CS Software For this exercise, we will use a Database that has been created in EXCEL. The example below shows the database fields populated

More information

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010 Week 5 Creating a Calendar About Tables Tables are a good way to organize information. They can consist of only a few cells, or many cells that cover several pages. You can arrange boxes or cells vertically

More information

Blackboard 5. Instructor Manual Level One Release 5.5

Blackboard 5. Instructor Manual Level One Release 5.5 Bringing Education Online Blackboard 5 Instructor Manual Level One Release 5.5 Copyright 2001 by Blackboard Inc. All rights reserved. No part of the contents of this manual may be reproduced or transmitted

More information

General Assignment Scheduling Compliance Dashboard Functional Documentation Latest update: 1/13/2016 by Wood Foster- Smith

General Assignment Scheduling Compliance Dashboard Functional Documentation Latest update: 1/13/2016 by Wood Foster- Smith General Assignment Scheduling Compliance Dashboard Functional Documentation Latest update: 1/13/2016 by Wood Foster- Smith Purpose The Office of the Registrar controls General Assignment (GA) classroom

More information

CONTENT. 1.0 Introduction Downloading and installing the software Running the software Using the software 7

CONTENT. 1.0 Introduction Downloading and installing the software Running the software Using the software 7 2 CONTENT Page 1.0 Introduction 1 2.0 Downloading and installing the software 2 3.0 Running the software 6 4.0 Using the software 7 5.0 Populating Records for Mathematics 9 6.0 Printing Reports 12 7.0

More information

CS 186 Midterm, Spring 2003 Page 1

CS 186 Midterm, Spring 2003 Page 1 UNIVERSITY OF CALIFORNIA College of Engineering Department of EECS, Computer Science Division CS 186 Spring 2003 J. Hellerstein Midterm Midterm Exam: Introduction to Database Systems This exam has five

More information

Contra Costa CurricUNET User Manual

Contra Costa CurricUNET User Manual 1000 River Walk Drive, Suite 350 Idaho Falls, ID 83402 Tel: 208.522.1225 Fax: 208.522.2896 Contra Costa CurricUNET User Manual Building the Worldwide Curriculum Network Table of Contents Log In... 4 Viewing

More information

MANAGING SIMS.NET USERS, AND ALLOCATING TO PERMISSION GROUPS

MANAGING SIMS.NET USERS, AND ALLOCATING TO PERMISSION GROUPS MANAGING SIMS.NET USERS, AND ALLOCATING TO PERMISSION GROUPS Introduction From time to time you will want to add users to SIMS, or modify the activities that users have permission to carry out. You will

More information

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 12 July 2016 Page 2 Table of Contents INTRODUCTION... 4 APPLICATION ARCHITECTURE... 5 DOCUMENT OVERVIEW... 6 GENERAL USER INTERFACE... 7 CONTROLS...

More information

1. Managing Information in Table

1. Managing Information in Table 1. Managing Information in Table Spreadsheets are great for making lists (such as phone lists, client lists). The researchers discovered that not only was list management the number one spreadsheet activity,

More information

Managed Reporting Environment

Managed Reporting Environment Managed Reporting Environment WebFOCUS MANAGED REPORTING What is MRE and what does it mean for FLAIR users? MRE extends services to agencies giving them secure, self-service Web access to information they

More information

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling Access Review Relational Databases Different tables can have the same field in common. This feature is used to explicitly specify a relationship between two tables. Values appearing in field A in one table

More information

PM4 + Partners Knowledge Articles

PM4 + Partners Knowledge Articles PM4 + Partners Knowledge Articles Customizing your PM4+ user experience r 1 November 30, 2108 PM4+ Partners Workspace - customize your experience Page 2 Contents Customizing Your Workspace... 1 Customizing

More information

UNIVERSITY OF CALIFORNIA College of Engineering Department of EECS, Computer Science Division

UNIVERSITY OF CALIFORNIA College of Engineering Department of EECS, Computer Science Division UNIVERSITY OF CALIFORNIA College of Engineering Department of EECS, Computer Science Division CS186 Eben Haber Fall 2003 Midterm Midterm Exam: Introduction to Database Systems This exam has seven problems,

More information

Student Manual. Cognos Analytics

Student Manual. Cognos Analytics Student Manual Cognos Analytics Add a Prompt to a Filter Add a prompt to a filter to add interactivity to the report. Prompts allow you to change filter criteria when the report is run. NAVIGATION: My

More information

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 10.3 Last Updated: August 2012 Page 2 Table of Contents INTRODUCTION... 4 Target Audience... 4 Application Architecture... 5 Document Overview...

More information

Furniture Reporting Updated July 2016

Furniture Reporting Updated July 2016 Updated July 2016 Contents About Furniture Reports...3 Open P/Os Not Acknowledged Report...3 O/E Third Party Gross Profit Report...4 P/O Expected Ship Report...5 Quotes Outstanding...6 Vendor Open P/O

More information

Basic Software Maintenance. Ham Station Ultra Software Package

Basic Software Maintenance. Ham Station Ultra Software Package 1 Carl Skip Glover, Jr. K1SPG Custom Software & Hardware Solutions 4 Valley of Industry Boscawen, NH 03303 (603) 369-7015 Email: pctech.skip@gmail.com Email: k1spg@arrl.net Basic Software Maintenance Ham

More information

SECTION 1 DBMS LAB 1.0 INTRODUCTION 1.1 OBJECTIVES 1.2 INTRODUCTION TO MS-ACCESS. Structure Page No.

SECTION 1 DBMS LAB 1.0 INTRODUCTION 1.1 OBJECTIVES 1.2 INTRODUCTION TO MS-ACCESS. Structure Page No. SECTION 1 DBMS LAB DBMS Lab Structure Page No. 1.0 Introduction 05 1.1 Objectives 05 1.2 Introduction to MS-Access 05 1.3 Database Creation 13 1.4 Use of DBMS Tools/ Client-Server Mode 15 1.5 Forms and

More information

Chapter 8 Relational Tables in Microsoft Access

Chapter 8 Relational Tables in Microsoft Access Chapter 8 Relational Tables in Microsoft Access Objectives This chapter continues exploration of Microsoft Access. You will learn how to use data from multiple tables and queries by defining how to join

More information

Bold with the Dialog Box Launcher. Locate MS Office and open Word.

Bold with the Dialog Box Launcher. Locate MS Office and open Word. Locate MS Office and open Word. Type the following exactly as shown. Remember, pressing the Enter key starts a new paragraph. Press the Enter key at the end of each of the following lines to start a new

More information

GUJARAT TECHNOLOGICAL UNIVERSITY

GUJARAT TECHNOLOGICAL UNIVERSITY Seat No.: Enrolment No. GUJARAT TECHNOLOGICAL UNIVERSITY BE - SEMESTER III (NEW) - EXAMINATION SUMMER 2017 Subject Code: 21303 Date: 02/06/2017 Subject Name: Database Management Systems Time: 10:30 AM

More information

Creating a Crosstab Query in Design View

Creating a Crosstab Query in Design View Procedures LESSON 31: CREATING CROSSTAB QUERIES Using the Crosstab Query Wizard box, click Crosstab Query Wizard. 5. In the next Crosstab Query the table or query on which you want to base the query. 7.

More information

CS211 Lecture: Database Querying and Updating

CS211 Lecture: Database Querying and Updating CS211 Lecture: Database Querying and Updating last revised 9/30/2004 Objectives: 1. To introduce the relational algebra. 2. To introduce the SQL select statement 3. To introduce the SQL insert, update,

More information

SOFTWARE SKILLS BUILDERS

SOFTWARE SKILLS BUILDERS USING ACCESS TO CREATE A SCIENCE DATABASE A database allows you to enter, store, retrieve, and manipulate data efficiently. You will first design your database and enter information into a table called

More information

Campus Solutions Self Service: Faculty Quick Reference Guide

Campus Solutions Self Service: Faculty Quick Reference Guide Campus Solutions Self Service: Faculty Table of Contents Introduction to Step Sheets... 1 The Faculty Center... 2 View Teaching Schedule... 3 Enter My Textbooks... 9 View Textbook Summary... 19 View Exam

More information

Linking Program Review Data to Reports

Linking Program Review Data to Reports Linking Program Review Data to Reports 1. Accessing & Using the Program Review Data Warehouse 2. Creating Hyperlinks in your Report 3. Exporting Colleague Data as Excel Spreadsheets Open your internet

More information

Page Gentics Software GmbH Enterprise Portals and Content Management Systems

Page Gentics Software GmbH Enterprise Portals and Content Management Systems 1. 2012 Gentics Software GmbH Page 2 Table of Contents 1. Table of Contents... 3 2. Foreword Infoportal and Support... 6 3. First steps... 6 3.1 Login and logout... 6 3.2 Password change... 7 3.3 User

More information

SIS Modernization Faculty Portal Training Guide

SIS Modernization Faculty Portal Training Guide SIS Modernization Faculty Portal Training Guide Created May 2017 Table of Contents Introduction to the New Faculty Portal... 1 Logging into the Faculty Portal... 1 Navigating the Faculty Portal... 6 Using

More information

Basics of Project Sites

Basics of Project Sites February 2009 Information Technologies Copyright 2009 University of Delaware. Permission to copy without fee all or part of this material is granted provided that the copies are not made or distributed

More information

1. Textbook #1: Our Digital World (ODW). 2. Textbook #2: Guidelines for Office 2013 (GFO). 3. SNAP: Assessment Software

1. Textbook #1: Our Digital World (ODW). 2. Textbook #2: Guidelines for Office 2013 (GFO). 3. SNAP: Assessment Software CIS - Survey of Computer Information Systems SPRING 014-16-Week Course Professor: JON P. RAGER Weekly Schedule Note: This schedule is subjected to BE CHANGED at your instructor's discretion. Please check

More information

Each time you start PastPerfect you will be presented with the main menu.

Each time you start PastPerfect you will be presented with the main menu. 2 THE BASICS This chapter will teach you how to use the most common functions of PastPerfect. Detailed instructions for specific sections of the program will be given in later chapters. STARTING PASTPERFECT

More information

Les s on Objectives. Student Files Us ed. Student Files Crea ted

Les s on Objectives. Student Files Us ed. Student Files Crea ted Lesson 10 - Pivot Tables 103 Lesson 10 P ivot T ables Les s on Topics Creating a Pivot Table Exercise: Creating a Balance Summary Formatting a Pivot Table Creating a Calculated Field Les s on Objectives

More information

How to turn on the computer: How to log on to the TC network: How to use the mouse: Essential Computer Skills

How to turn on the computer: How to log on to the TC network: How to use the mouse: Essential Computer Skills How to turn on the computer: Essential Computer Skills In most of the computer labs at Temple College, you ll find the on/off button on the front of the computer s system box. It is not marked and is flush

More information

SIS Import Guide. v2015.1

SIS Import Guide. v2015.1 SIS Import Guide v2015.1 The information in this document is subject to change without notice and does not represent a commitment on the part of Horizon. The software described in this document is furnished

More information

Introduction to Timetabling and Facility CMIS

Introduction to Timetabling and Facility CMIS Corporate Information & Computing Services. 285-9 Glossop Rd Sheffield S10 2HB Cliff Alcock Email: c.alcock@sheffield.ac.uk Tel: (0114) 2223194 Introduction to Timetabling and Facility CMIS 2014 Training

More information

Introductory Exercises in Microsoft Access XP

Introductory Exercises in Microsoft Access XP INFORMATION SYSTEMS SERVICES Introductory Exercises in Microsoft Access XP This document contains a series of exercises which give an introduction to the Access relational database program. AUTHOR: Information

More information

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2 IBM Cognos Analytics Welcome to Introduction to Cognos! Today s objectives include: Gain a Basic Understanding of Cognos View a Report Modify a Report View a Dashboard Request Access to Cognos Table of

More information

VERSION DOCUMENT TRACKING USER MANUAL

VERSION DOCUMENT TRACKING USER MANUAL VERSION 1.7.0 DOCUMENT TRACKING USER MANUAL CONTENTS Quick Start Overview... 3 Access Groups... 3 Employees... 3 Location Type... 3 Item Type... 3 Custom Images... 3 Locations... 3 Items... 4 Printer Assignment...

More information

Add Bullets and Numbers

Add Bullets and Numbers . Lesson 5: Adding Bullets and Numbers, If you have lists of data, you may want to bullet or number them. When using Microsoft Word, bulleting and numbering are easy. The first part of this lesson teaches

More information

SEP Evaluation Expert Quick Guide

SEP Evaluation Expert Quick Guide SEP Evaluation Expert Quick Guide SEP Evaluation September 7 th, 2018 Copyright Notice European Union, 1995-2018 Reproduction of this document and its content, in part or in whole, is authorized, provided

More information

SEE GRADING CRITERIA AT THE BOTTOM. Database Tables Lookup Wizard Relationships Forms Queries Reports

SEE GRADING CRITERIA AT THE BOTTOM. Database Tables Lookup Wizard Relationships Forms Queries Reports Microsoft Office 2007 PDF Picture Tutorial Series Databases Tables, Forms, Queries, Lookup Wizard, Relationships August 2010 by Floyd Jay Winters and Julie Manchester winterf@scf.edu SEE GRADING CRITERIA

More information

Lab 3. A Multi-Message Reader

Lab 3. A Multi-Message  Reader Lab 3 A Multi-Message Email Reader Due: Wed. 2/21 at 11PM (for Mon. aft. lab), Thurs. 2/22 at 5PM (for Mon. evening), or Thurs. 2/22 at 11 (for Tues. aft.) The goal in this week s lab is to exercise your

More information

Database Security MET CS 674 On-Campus/Blended

Database Security MET CS 674 On-Campus/Blended Database Security MET CS 674 On-Campus/Blended George Ultrino gultrino@bu.edu Office hours: by appointment Course Description The course provides a strong foundation in database security and auditing.

More information

Contents. Project One. Introduction to Microsoft Windows XP and Office Creating and Editing a Word Document. Microsoft Word 2003

Contents. Project One. Introduction to Microsoft Windows XP and Office Creating and Editing a Word Document. Microsoft Word 2003 FM TBBBB 39909 10/27/06 4:06 PM Page iii Contents FMTOC TBBBB 39909 Page iii 10/20/06 MD Preface To the Student Introduction to Microsoft Windows XP and Office 2003 ix xiv Objectives WIN 4 Introduction

More information

Introduction to Microsoft Access 2016

Introduction to Microsoft Access 2016 Introduction to Microsoft Access 2016 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

Create a new form. To create a form from a new or existing spreadsheet: 1. Click the Tools drop down menu and select Create a form.

Create a new form. To create a form from a new or existing spreadsheet: 1. Click the Tools drop down menu and select Create a form. Create a new form You can choose Google Forms when creating a new doc from Google Drive. You can also create a new form from a Google Sheet or from a template. To create a form within Google Drive: Click

More information

1 (10) 2 (8) 3 (12) 4 (14) 5 (6) Total (50)

1 (10) 2 (8) 3 (12) 4 (14) 5 (6) Total (50) Student number: Signature: UNIVERSITY OF VICTORIA Faculty of Engineering Department of Computer Science CSC 370 (Database Systems) Instructor: Daniel M. German Midterm Oct 21, 2004 Duration: 60 minutes

More information

Basic Reports & Dashboards

Basic Reports & Dashboards Basic Reports & Dashboards Arizona Board of Regents, 2012 updated 06.01.2012 v.1.10 For information and permission to use our PDF manuals, please contact uitsworkshopteam@list.arizona.edu PDFs available

More information

GEO 425: SPRING 2012 LAB 9: Introduction to Postgresql and SQL

GEO 425: SPRING 2012 LAB 9: Introduction to Postgresql and SQL GEO 425: SPRING 2012 LAB 9: Introduction to Postgresql and SQL Objectives: This lab is designed to introduce you to Postgresql, a powerful database management system. This exercise covers: 1. Starting

More information

Your Name: Section: INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression

Your Name: Section: INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression Your Name: Section: 36-201 INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression Objectives: 1. To learn how to interpret scatterplots. Specifically you will investigate, using

More information

Information Services. Essential Access Exercises. IT

Information Services. Essential Access Exercises. IT Information Services Essential Access Exercises IT www.york.ac.uk/it-services/training Essential Access Tasks Exercises to accompany Essential Access Course Books 1 & 2 Sample files for use with these

More information

Auto Mechanics Local 701. Online Remittance Processing Instructions

Auto Mechanics Local 701. Online Remittance Processing Instructions Auto Mechanics Local 701 Online Remittance Processing Instructions Auto Mechanics Local 701 Online Remittance Processing Instructions Contents Contents... 2 Logging In... 3 Changing Your Password... 4

More information