CSCI 201 Lab #11 Prof. Jeffrey Miller 1/23. Lab #11 CSCI 201. Title MySQL Installation. Lecture Topics Emphasized Databases

Size: px
Start display at page:

Download "CSCI 201 Lab #11 Prof. Jeffrey Miller 1/23. Lab #11 CSCI 201. Title MySQL Installation. Lecture Topics Emphasized Databases"

Transcription

1 Lab #11 CSCI 201 Title MySQL Installation Lecture Topics Emphasized Databases Introduction This lab will introduce you to MySQL. Before being able to run the DBMS, we will need to install it. There is another tool that helps us to visualize the database called MySQL Workbench that we will also install. By the end of this lab, you will have a working version of MySQL and be able to insert and select from a database you have created. If you are running OSX, go to page 10 to find your installation instructions. Description Part 1.1 Download and Installation in Windows Windows 7/8/8.1/10 Go to Click either the first or second download. It doesn t matter which. 1/23

2 You don t need to sign up or log in. Just say no thanks. THE INSTALLER WILL ASK YOU TO SAVE A TEMPORARY PASSWORD. SAY YES! Accept the license agreement. 2/23

3 Choose Developer Default. This will install everything we need and more. You may get a warning similar to this. Just make sure they aren t related to Java. 3/23

4 Press Execute and wait for everything to finish. 4/23

5 Press Next > Leave everything as is. 5/23

6 You do need to create a user account. Make the username and password ʹrootʹ. If you do not do this the next lab will be unnecessarily difficult. You will be using this username and password for all class SQL labs/projects. Yes, this is generally a bad idea in real life applications, but we will gloss over this for the sake of learning SQL. After this is done, press Next > 6/23

7 Press Execute, and wait for everything to finish. Press Next > 7/23

8 Enter the username and password. And check the connection. Press Next > Press Execute and wait for it to finish. 8/23

9 Press Next > All done! MySQL is installed. Go ahead and start MySQL Workbench. Go to page 16 to continue. 9/23

10 Part 1.2 Download and Installation in OSX Go to Select a download for your machine. Do not download the.tar file!!! Download the.dmg file (yes it is bigger!) Continue THE INSTALLER WILL ASK YOU TO SAVE A TEMPORARY PASSWORD. SAY YES! 10/23

11 Continue Select a destination, then install. 11/23

12 Close Now, start the MySQL server by going to System Properties. 12/23

13 Select MySql and this window will appear. Press Start MySQL Server. The server will then start. 13/23

14 Now, go to Download and Install. 14/23

15 Now, launch MySQLWorkbench. 15/23

16 Part 2 MySQL Workbench On Windows, you will see a single connection. For Mac, you won t have any connections yet. Press the plus button to make a new For Windows, Right click and select Edit Connection For Mac, press New. Set the connection name to something a bit more meaningful such as My201SQL. 16/23

17 Now double click the grey box to open the editor Enter your password you set earlier. 17/23

18 You will see the following page. Click the highlighted button to create a new schema. 18/23

19 Enter a name for the schema. Once you press Apply a new window will pop up. Press Apply. This will create the new schema. 19/23

20 Double click the schema to select it. Click the highlighted button to create a new table. Go ahead and name the table. Also insert two columns. 20/23

21 Name the columns name and created. The name column will correspond to the name of the resource. The created column will correspond to the number of that resource that has been created. Press Apply and you will see another window like before. Once again, hit Apply. This new table will be generated. Click the highlighted button to view the new table. 21/23

22 The table is empty. We can type values in manually, but we should have Java code do the work for us. 22/23

23 Part 3 Creating Tables Create a new table, and name it factoryresources. Look in the factory.txt file in your Factory project and duplicate the information into the factoryresources table in the mysql workbench. You donʹt have to write any Java code, just try to get used to using mysql and looking up instructions on how to do things on the internet. This doesnʹt mean that you will not be coding at all, you will need to write some SQL code. Try looking though the resource below, and pay close attention to the INSERT and SELECT statements. If you donʹt end up using these statements there are other ways to do this. Hint: Once you have created a new table, there should be a window up top that allows you to enter and execute SQL code. You can run it by clicking the little lightning button. If you want default values to appear on the table, there will be one additional step to get an extra row to appear. Grading Criteria Labs are not graded based on any given criteria but are instead graded on effort and attendance. If you arrived to lab within the first 10 minutes and worked on it the for the entire duration of the lab, you will receive full credit regardless of whether you completed it. TAs will not grade labs until after at least half the lab period has elapsed. Use the lab time as an opportunity to more fully understand the course material and ask your TA questions. 23/23

Quick Guide to Installing and Setting Up MySQL Workbench

Quick Guide to Installing and Setting Up MySQL Workbench Quick Guide to Installing and Setting Up MySQL Workbench If you want to install MySQL Workbench on your own computer: Go to: http://www.mysql.com/downloads/workbench/ Windows Users: 1) You will need to

More information

Lab #8 1/8 CSCI 201. Title Networking Worksheet. Lecture Topics Emphasized Networking Theory

Lab #8 1/8 CSCI 201. Title Networking Worksheet. Lecture Topics Emphasized Networking Theory Title Networking Worksheet Lecture Topics Emphasized Networking Theory Introduction Networking is a very important topic for everyone, but especially for computer scientists. There are very few programs

More information

Eclipse Environment Setup

Eclipse Environment Setup Eclipse Environment Setup Adapted from a document from Jeffrey Miller and the CS201 team by Shiyuan Sheng. Introduction This lab document will go over the steps to install and set up Eclipse, which is

More information

CSCI 1100L: Topics in Computing Lab Lab 07: Microsoft Access (Databases) Part I: Movie review database.

CSCI 1100L: Topics in Computing Lab Lab 07: Microsoft Access (Databases) Part I: Movie review database. CSCI 1100L: Topics in Computing Lab Lab 07: Microsoft Access (Databases) Purpose: The purpose of this lab is to introduce you to the basics of creating a database and writing SQL (Structured Query Language)

More information

Server-Configuration-2-MySQL-1-HW.docx CSCI 3343 Initials P a g e 1

Server-Configuration-2-MySQL-1-HW.docx CSCI 3343 Initials P a g e 1 Server-Configuration-2-MySQL-1-HW.docx CSCI 3343 Initials P a g e 1 The short answer questions will be spot checked and graded for completion, but not checked for accuracy. I encourage you to form a study

More information

3344 Database Lab. 1. Overview. 2. Lab Requirements. In this lab, you will:

3344 Database Lab. 1. Overview. 2. Lab Requirements. In this lab, you will: 3344 Database Lab 1. Overview In this lab, you will: Decide what data you will use for your AngularJS project. Learn (or review) the basics about databases by studying (or skimming) a MySql WorkbenchTutorial

More information

MIS2502: Data Analytics MySQL and SQL Workbench. Jing Gong

MIS2502: Data Analytics MySQL and SQL Workbench. Jing Gong MIS2502: Data Analytics MySQL and SQL Workbench Jing Gong gong@temple.edu http://community.mis.temple.edu/gong MySQL MySQL is a database management system (DBMS) Implemented as a server What is a server?

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 21.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 22.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

CS 1110, LAB 1: EXPRESSIONS AND ASSIGNMENTS First Name: Last Name: NetID:

CS 1110, LAB 1: EXPRESSIONS AND ASSIGNMENTS   First Name: Last Name: NetID: CS 1110, LAB 1: EXPRESSIONS AND ASSIGNMENTS http://www.cs.cornell.edu/courses/cs1110/2018sp/labs/lab01/lab01.pdf First Name: Last Name: NetID: Learning goals: (1) get hands-on experience using Python in

More information

CPSC150L Lab 0 Lab Set Up

CPSC150L Lab 0 Lab Set Up CPSC150L Lab 0 Lab Set Up Fall 2016 Welcome to the laboratory exercises that accompany the lecture course CPSC 150 Computers and Programming I. These lab exercises are designed to support and complement

More information

GradeConnect.com. User Manual

GradeConnect.com. User Manual GradeConnect.com User Manual Version 2.0 2003-2006, GradeConnect, Inc. Written by Bernie Salvaggio Edited by Charles Gallagher & Beth Giuliano Contents Teachers...5 Account Basics... 5 Register Your School

More information

Server 2 - MySQL #1 Lab

Server 2 - MySQL #1 Lab Server-Configuration-2-MySQL-1-HW.docx CSCI 2320 Initials P a g e 1 If this lab is an Individual assignment, you must do all coded programs on your own. You may ask others for help on the language syntax,

More information

Java Program Structure and Eclipse. Overview. Eclipse Projects and Project Structure. COMP 210: Object-Oriented Programming Lecture Notes 1

Java Program Structure and Eclipse. Overview. Eclipse Projects and Project Structure. COMP 210: Object-Oriented Programming Lecture Notes 1 COMP 210: Object-Oriented Programming Lecture Notes 1 Java Program Structure and Eclipse Robert Utterback In these notes we talk about the basic structure of Java-based OOP programs and how to setup and

More information

5. A small dialog window appears; enter a new password twice (this is different from Dori!) and hit Go.

5. A small dialog window appears; enter a new password twice (this is different from Dori!) and hit Go. Installing Wordpress from JMA Lab to JMA Server 1. Take note these instructions are streamlined for the JMA lab they can t be performed in this fashion from home! 2. Wordpress is a database driven web

More information

CSCI 1100L: Topics in Computing Lab Lab 1: Introduction to the Lab! Part I

CSCI 1100L: Topics in Computing Lab Lab 1: Introduction to the Lab! Part I CSCI 1100L: Topics in Computing Lab Lab 1: Introduction to the Lab! Part I Welcome to your CSCI-1100 Lab! In the fine tradition of the CSCI-1100 course, we ll start off the lab with the classic bad joke

More information

RESETTING MYSQL ROOT PASSWORDS

RESETTING MYSQL ROOT PASSWORDS RESETTING MYSQL ROOT PASSWORDS This document contains instructions on how to reset MySQL root passwords on a Mac. Windows instructions to follow. The summary of the procedure is this: 1. Stop the MySQL

More information

Managing Your Grade Book This lesson will show you how to set up your grade book columns and have Canvas calculate your final grades for you.

Managing Your Grade Book This lesson will show you how to set up your grade book columns and have Canvas calculate your final grades for you. Managing Your Grade Book This lesson will show you how to set up your grade book columns and have Canvas calculate your final grades for you. Activating the Grade Book Click on Settings at the bottom of

More information

CSCI 201 Lab 1 Environment Setup

CSCI 201 Lab 1 Environment Setup CSCI 201 Lab 1 Environment Setup "The journey of a thousand miles begins with one step." - Lao Tzu Introduction This lab document will go over the steps to install and set up Eclipse, which is a Java integrated

More information

Data. Selecting Data. Sorting Data

Data. Selecting Data. Sorting Data 1 of 1 Data Selecting Data To select a large range of cells: Click on the first cell in the area you want to select Scroll down to the last cell and hold down the Shift key while you click on it. This

More information

Implement an ADT while using Subversion

Implement an ADT while using Subversion 1 Objectives Learn to use Subversion Implement an ADT while using Subversion In this lab, you learn about the version control tool called Subversion and you will implement a Java class given an interface.

More information

CIS 3308 Web Application Programming Syllabus

CIS 3308 Web Application Programming Syllabus CIS 3308 Web Application Programming Syllabus (Upper Level CS Elective) Course Description This course explores techniques that are used to design and implement web applications both server side and client

More information

CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch

CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch Purpose: We will take a look at programming this week using a language called Scratch. Scratch is a programming language that was developed

More information

SpeechClass Instructor Quick Start for A Speaker s Guidebook, Fourth Edition

SpeechClass Instructor Quick Start for A Speaker s Guidebook, Fourth Edition SpeechClass Instructor Quick Start for A Speaker s Guidebook, Fourth Edition 2 System Requirements The following Web browsers are formally supported and tested for use with SpeechClass: Windows: Internet

More information

Chapter 5. Exploring Navicat and Sequel Pro

Chapter 5. Exploring Navicat and Sequel Pro Chapter 5 Exploring Navicat and Sequel Pro Skills you will learn: Features of the basic user interfaces of the Navicat and Sequel Pro front end programs for MySQL. Unlike Microsoft Access, Navicat and

More information

EECE.2160: ECE Application Programming

EECE.2160: ECE Application Programming Spring 2018 Programming Assignment #10: Instruction Decoding and File I/O Due Wednesday, 5/9/18, 11:59:59 PM (Extra credit ( 4 pts on final average), no late submissions or resubmissions) 1. Introduction

More information

CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse

CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse Goals - to become acquainted with the Linux/Gnome environment Overview For this lab, you will login to a workstation

More information

GETTING STARTED GUIDE

GETTING STARTED GUIDE SETUP GETTING STARTED GUIDE About Benchmark Email Helping you turn your email list into relationships and sales. Your email list is your most valuable marketing asset. Benchmark Email helps marketers short

More information

Travel and Expense Management Training Manual

Travel and Expense Management Training Manual Travel and Expense Management Training Manual AP & Travel Colorado School of Mines Chris Stuart Tolford - 303.273.3274 Mane Poghosyan - 303.273.3976 aptravel@mines.edu Contents Logging in to TEM... 3 How

More information

WebMatrix: Why PHP Developers Should Pay Attention

WebMatrix: Why PHP Developers Should Pay Attention WebMatrix: Why PHP Developers Should Pay Attention Gone are the days when PHP developers had to turn away business because the clients used Windows Servers. If you are a PHP developer and have been looking

More information

Creating Accessible PDFs

Creating Accessible PDFs Creating Accessible PDFs Using Word to Create Accessible PDF Documents This documentation is designed to be a tool for students, faculty and staff. When authoring electronic documents, it is important

More information

PsychPortal Instructor Quick Start for Myers, Psychology 10e In Modules

PsychPortal Instructor Quick Start for Myers, Psychology 10e In Modules PsychPortal Instructor Quick Start for Myers, Psychology 10e In Modules For technical support call 1-800-936-6899 PsychPortal Quick Start for Myers Psychology 10e In Modules Table of Contents Overview...

More information

GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher

GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher For technical support call 1-800-936-6899 GeographyPortal Quick Start for Pulsipher, World Regional

More information

Student User Guide for EconPortal Macroeconomics in Modules, Second Edition

Student User Guide for EconPortal Macroeconomics in Modules, Second Edition Student User Guide for EconPortal Macroeconomics in Modules, Second Edition Krugman/Wells Getting Started with EconPortal for Krugman/Wells Macroeconomics in Modules, 2e Table of Contents Overview... 1

More information

Valuable points from Lesson 6 Adobe Flash CS5 Professional Classroom in a Book

Valuable points from Lesson 6 Adobe Flash CS5 Professional Classroom in a Book Valuable points from Lesson 6 Adobe Flash CS5 Professional Classroom in a Book You are expected to understand and know how to use/do each of these tasks in Flash CS5, unless otherwise noted below. If you

More information

CS121 MIDTERM REVIEW. CS121: Relational Databases Fall 2017 Lecture 13

CS121 MIDTERM REVIEW. CS121: Relational Databases Fall 2017 Lecture 13 CS121 MIDTERM REVIEW CS121: Relational Databases Fall 2017 Lecture 13 2 Before We Start Midterm Overview 3 6 hours, multiple sittings Open book, open notes, open lecture slides No collaboration Possible

More information

Moodle Morsels from Sandy & Inkie. b. Click (Log in) on the upper right c. You will use your stpsb login, which is how you login to a computer

Moodle Morsels from Sandy & Inkie. b. Click (Log in) on the upper right c. You will use your stpsb login, which is how you login to a computer 1. To login to Moodle: a. https://moodle.stpsb.org Moodle Morsels from Sandy & Inkie b. Click (Log in) on the upper right c. You will use your stpsb login, which is how you login to a computer 2. Moodle

More information

EnviroPortal Instructor Quick Start for Friedland, Relyea, & Courard-Hauri Environmental Science: Foundations and Applications

EnviroPortal Instructor Quick Start for Friedland, Relyea, & Courard-Hauri Environmental Science: Foundations and Applications EnviroPortal Instructor Quick Start for Friedland, Relyea, & Courard-Hauri Environmental Science: Foundations and Applications For technical support call 1-800-936-6899 EnviroPortal Quick Start for Friedland,

More information

CS 051 Homework Laboratory #2

CS 051 Homework Laboratory #2 CS 051 Homework Laboratory #2 Dirty Laundry Objective: To gain experience using conditionals. The Scenario. One thing many students have to figure out for the first time when they come to college is how

More information

In this exercise you will practice some more SQL queries. First let s practice queries on a single table.

In this exercise you will practice some more SQL queries. First let s practice queries on a single table. More SQL queries In this exercise you will practice some more SQL queries. First let s practice queries on a single table. 1. Download SQL_practice.accdb to your I: drive. Launch Access 2016 and open the

More information

LABSHEET 1: creating a table, primary keys and data types

LABSHEET 1: creating a table, primary keys and data types LABSHEET 1: creating a table, primary keys and data types Before you begin, you may want to take a look at the following links to remind yourself of the basics of MySQL and the SQL language. MySQL 5.7

More information

EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e

EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e For technical support call 1-800-936-6899 EconPortal Quick Start for Krugman/Wells Macroeconomics, 3e Table of Contents Overview...

More information

Student User Guide for PsychPortal Psychology Tenth Edition In Modules

Student User Guide for PsychPortal Psychology Tenth Edition In Modules Student User Guide for PsychPortal Psychology Tenth Edition In Modules Myers Getting Started with PsychPortal for Myers Psychology 10e In Modules Table of Contents Overview... 1 Getting Help... 1 System

More information

Working with SQL SERVER EXPRESS

Working with SQL SERVER EXPRESS Table of Contents How to Install SQL Server 2012 Express Edition... 1 Step 1.... 1 Step 2.... 2 Step 3.... 3 Step 4.... 3 Step 5.... 4 Step 6.... 5 Step 7.... 5 Step 8.... 6 Fixing Database Start-up Connection

More information

CME E-quotes Wireless Application for Android Welcome

CME E-quotes Wireless Application for Android Welcome CME E-quotes Wireless Application for Android Welcome This guide will familiarize you with the application, a powerful trading tool developed for your Android. Table of Contents What is this application?

More information

Student User Guide for StatsPortal Introduction to the Practice of Statistics, Sixth Edition

Student User Guide for StatsPortal Introduction to the Practice of Statistics, Sixth Edition Student User Guide for StatsPortal Introduction to the Practice of Statistics, Sixth Edition Moore Getting Started with StatsPortal for Moore, Introduction to the Practice of Statistics, 6e Table of Contents

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

Directions for Moodle Scholarship Application Part 1: Entering Moodle for the First Time

Directions for Moodle Scholarship Application Part 1: Entering Moodle for the First Time Directions for Moodle Scholarship Application Part 1: Entering Moodle for the First Time Seniors will receive instruction for completing the Moodle application form through their English class or in the

More information

Student User Guide for GeographyPortal The Human Mosaic, Twelfth Edition

Student User Guide for GeographyPortal The Human Mosaic, Twelfth Edition Student User Guide for GeographyPortal The Human Mosaic, Twelfth Edition Domosh Getting Started with GeographyPortal for Pulsipher, World Regional Geography without Subregions, Sixth Edition Table of Contents

More information

CIS 101 Orientation Document Fall 2017

CIS 101 Orientation Document Fall 2017 CIS 101 Orientation Document Fall 2017 Fall 2017 ONLINE section 23989 To be successful in an online section you must be motivated, disciplined, and able to read and understand the material in the books

More information

Before you get started, make sure you have your section code since you ll need it to enroll. You can get it from your instructor.

Before you get started, make sure you have your section code since you ll need it to enroll. You can get it from your instructor. Student manual Table of contents Table of contents... 1 Registration... 2 If you have a PIN code:... 2 If you're using a credit card:... 2 Login/Logout... 3 Login... 3 Dashboard... 3 Logout... 3 Trouble

More information

This lab will introduce you to MySQL. Begin by logging into the class web server via SSH Secure Shell Client

This lab will introduce you to MySQL. Begin by logging into the class web server via SSH Secure Shell Client Lab 2.0 - MySQL CISC3140, Fall 2011 DUE: Oct. 6th (Part 1 only) Part 1 1. Getting started This lab will introduce you to MySQL. Begin by logging into the class web server via SSH Secure Shell Client host

More information

Student User Guide for BioChemPortal Biochemistry: A Short Course, 2e

Student User Guide for BioChemPortal Biochemistry: A Short Course, 2e Student User Guide for BioChemPortal Biochemistry: A Short Course, 2e Tymoczko Getting Started with BioChemPortal for Tymoczko, Biochemistry: A Short Course, 2e Table of Contents Overview... 1 Getting

More information

Pivot (Formerly Community of Science)

Pivot (Formerly Community of Science) Office of Sponsored Programs Pickus Building BC, Linnell Hall PC Pivot (Formerly Community of Science) The University of New England pays for access to Pivot for access by all members of our community.

More information

Contents. Signing In... 3 Answering Your Personal Security Question... 4 Forgetting Your Password... 4 Exploring the Learning Center Interface...

Contents. Signing In... 3 Answering Your Personal Security Question... 4 Forgetting Your Password... 4 Exploring the Learning Center Interface... User Guide Contents Logging On... Signing In... Answering Your Personal Security Question... 4 Forgetting Your Password... 4 Exploring the Learning Center Interface... 5 Understanding Icons... 5 Understanding

More information

By clicking the indicated Download button your browser downloads the installer package for you to run manually.

By clicking the indicated Download button your browser downloads the installer package for you to run manually. Quick guide for install MySQL database to any computer Applicable version: MySQL installer community 5.7 1. Installing the MySQL database Download the MySQL Installer Community Edition Download your official

More information

Importing source database objects from a database

Importing source database objects from a database Importing source database objects from a database We are now at the point where we can finally import our source database objects, source database objects. We ll walk through the process of importing from

More information

MySQL SERVER INSTALLATION, CONFIGURATION, AND HOW TO USE WITH STARCODE NETWORK

MySQL SERVER INSTALLATION, CONFIGURATION, AND HOW TO USE WITH STARCODE NETWORK MySQL SERVER INSTALLATION, CONFIGURATION, AND HOW TO USE WITH STARCODE NETWORK This document describes how to install MySQL server (5.7.19) on Windows PC, and how to use StarCode Network with MySQL server

More information

CS : Programming for Non-majors, Fall 2018 Programming Project #2: Census Due by 10:20am Wednesday September

CS : Programming for Non-majors, Fall 2018 Programming Project #2: Census Due by 10:20am Wednesday September CS 1313 010: Programming for Non-majors, Fall 2018 Programming Project #2: Census Due by 10:20am Wednesday September 19 2018 This second assignment will introduce you to designing, developing, testing

More information

Install instructions for Windows

Install instructions for Windows Install instructions for Windows Windows Install Instructions Please make sure you have configured Oracle before starting the installer. or MYSQL 1. Download SamePage_Windows.exe to a temporary folder

More information

Introduction to Web Design & Computer Principles

Introduction to Web Design & Computer Principles Introduction to Web Design & Computer Principles CSCI-UA.0004-007 Instructor: Adam Scher Tuesday/Thursday 8:00am - 9:15am Warren Weaver Hall Room 101 What s in store today... Who Am I? Course Overview

More information

Student User Guide for StatsPortal The Basic Practice of Statistics, Fifth Edition

Student User Guide for StatsPortal The Basic Practice of Statistics, Fifth Edition Student User Guide for StatsPortal The Basic Practice of Statistics, Fifth Edition Moore Getting Started with StatsPortal for Moore, The Basic Practice of Statistics, 5e Table of Contents Getting Help...

More information

CIS220 In Class/Lab 1: Due Sunday night at midnight. Submit all files through Canvas (25 pts)

CIS220 In Class/Lab 1: Due Sunday night at midnight. Submit all files through Canvas (25 pts) CIS220 In Class/Lab 1: Due Sunday night at midnight. Submit all files through Canvas (25 pts) Problem 0: Install Eclipse + CDT (or, as an alternative, Netbeans). Follow the instructions on my web site.

More information

Parish . User Manual

Parish  . User Manual Parish Email User Manual Table of Contents LOGGING IN TO PARISH EMAIL... 3 GETTING STARTED... 3 GENERAL OVERVIEW OF THE USER INTERFACE... 3 TERMINATE THE SESSION... 4 EMAIL... 4 MESSAGES LIST... 4 Open

More information

CS 201 Advanced Object-Oriented Programming Lab 6 - Sudoku, Part 2 Due: March 10/11, 11:30 PM

CS 201 Advanced Object-Oriented Programming Lab 6 - Sudoku, Part 2 Due: March 10/11, 11:30 PM CS 201 Advanced Object-Oriented Programming Lab 6 - Sudoku, Part 2 Due: March 10/11, 11:30 PM Introduction to the Assignment In this lab, you will finish the program to allow a user to solve Sudoku puzzles.

More information

1. To access the Course settings page, click Edit settings in the Administration block.

1. To access the Course settings page, click Edit settings in the Administration block. Course Management Managing Course Design Configuring Course Settings The course setting page contains all of the important options for your course such as making the course available to students, and enabling

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

RouteOp. Step 1: Make sure requirements are met.

RouteOp. Step 1: Make sure requirements are met. RouteOp If you are just getting started please note that the features are not enabled until your first call. You will receive a welcome email to get the ball rolling and will be hearing from your implementation

More information

S-231 Engine Boss was revised in 2012 to allow students the opportunity to access content at their own pace, online.

S-231 Engine Boss was revised in 2012 to allow students the opportunity to access content at their own pace, online. S-231 Engine Boss was revised in 2012 to allow students the opportunity to access content at their own pace, online. Online content takes 6-8 hours to complete, so plan ahead. The instructor-led section

More information

Textbook. Topic 8: Files and Exceptions. Files. Types of Files

Textbook. Topic 8: Files and Exceptions. Files. Types of Files Textbook Topic 8: Files and A common mistake that people make when trying to design something completely foolproof is to underestimate the ingenuity of complete fools. -Douglas Adams 1 Strongly Recommended

More information

NOTE: If your student is 18+, you do not need to give your consent and can skip ahead to page 6.

NOTE: If your student is 18+, you do not need to give your consent and can skip ahead to page 6. Updated 2/6/2015 PA R E N TA L I N V O LV E M E N T I N C L U D E S G R A N T I N G C O N S E N T F O R S T U D E N T S U N D E R 1 8 A N D E N T E R I N G F I N A N C I A L I N F O R M AT I O N F O R

More information

ArtiosCAD Installation Advisor

ArtiosCAD Installation Advisor ArtiosCAD Installation Advisor Standard Edition September 2018 What You Need To Know Before Installing ArtiosCAD Standard Edition ArtiosCAD is easy to install if you are properly prepared You don t need

More information

Student User Guide for GeneticsPortal Introduction to Genetic Analysis Tenth Edition Griffiths, Wessler, Carroll, and Doebly

Student User Guide for GeneticsPortal Introduction to Genetic Analysis Tenth Edition Griffiths, Wessler, Carroll, and Doebly Student User Guide for GeneticsPortal Introduction to Genetic Analysis Tenth Edition Griffiths, Wessler, Carroll, and Doebly Getting Started with GeneticsPortal for Griffiths, Wessler, Carroll, and Doebley

More information

CPSC 150 Laboratory Manual. Lab 1 Introduction to Program Creation

CPSC 150 Laboratory Manual. Lab 1 Introduction to Program Creation CPSC 150 Laboratory Manual A Practical Approach to Java, jedit & WebCAT Department of Physics, Computer Science & Engineering Christopher Newport University Lab 1 Introduction to Program Creation Welcome

More information

Tips & Tricks for edx-forums

Tips & Tricks for edx-forums Here are some tips & tricks to help you navigate the edx-forums for Denial101x. Navigating the forums Accessing the forums works best via the corresponding menu item: Check out the three drop-down menus:

More information

Module - P7 Lecture - 15 Practical: Interacting with a DBMS

Module - P7 Lecture - 15 Practical: Interacting with a DBMS Introduction to Modern Application Development Prof. Tanmai Gopal Department of Computer Science and Engineering Indian Institute of Technology, Madras Module - P7 Lecture - 15 Practical: Interacting with

More information

Migrating Data from Archivists Toolkit to ArchivesSpace Using the Migration Tool last updated December 19, 2017

Migrating Data from Archivists Toolkit to ArchivesSpace Using the Migration Tool last updated December 19, 2017 Migrating Data from Archivists Toolkit to ArchivesSpace Using the Migration Tool last updated December 19, 2017 These guidelines are for migrating data from Archivists Toolkit 2.0 Update 16 to all ArchivesSpace

More information

Chapter Copy Buckets

Chapter Copy Buckets Chapter 17 -- Copy Buckets Buckets are virtual containers to use in batch processing item or bibliographic records. They can be used to perform various cataloging/holdings maintenance tasks in batch. There

More information

SIS STUDENT INFORMATION CENTER

SIS STUDENT INFORMATION CENTER Using the Self Service Student Center As a student you can: 1. Log Into the System 2. Navigate 3. Add Favorites 4. Add, Drop, or Swap Classes 5. View Your Class Schedule 6. View Grades 7. View Degree Progress

More information

Lab 1: Setup 12:00 PM, Sep 10, 2017

Lab 1: Setup 12:00 PM, Sep 10, 2017 CS17 Integrated Introduction to Computer Science Hughes Lab 1: Setup 12:00 PM, Sep 10, 2017 Contents 1 Your friendly lab TAs 1 2 Pair programming 1 3 Welcome to lab 2 4 The file system 2 5 Intro to terminal

More information

Marketing Research Participation for BUAD 307

Marketing Research Participation for BUAD 307 Marketing Research Participation for BUAD 307 Note that this handout amends your syllabus regarding the Market Research Participation Questions about registering and participating: mkt.sona@marshall.usc.edu

More information

Getting Started with Visual Basic 2005 Express Edition

Getting Started with Visual Basic 2005 Express Edition 4398book.fm Page 1 Tuesday, February 14, 2006 1:53 PM Part 1 Getting Started with Visual Basic 2005 Express Edition In this section: Chapter 1: Welcome to Visual Basic 2005 Express Edition Chapter 2: Using

More information

USING DRUPAL. Hampshire College Website Editors Guide https://drupal.hampshire.edu

USING DRUPAL. Hampshire College Website Editors Guide https://drupal.hampshire.edu USING DRUPAL Hampshire College Website Editors Guide 2014 https://drupal.hampshire.edu Asha Kinney Hampshire College Information Technology - 2014 HOW TO GET HELP Your best bet is ALWAYS going to be to

More information

AGE VERIFICATION REFERENCE MANUAL

AGE VERIFICATION REFERENCE MANUAL AGE VERIFICATION REFERENCE MANUAL Section 1: Setting Up Your Account Step 1: If this is your first time please call the Canadian Cattle Identification Agency at 1-877-909-2333 to get your account username

More information

Revision 1, September 29, 2011 Page 1

Revision 1, September 29, 2011 Page 1 CloudTest version... 2 Overview of the CloudTest environment... 2 Overview of Track play locations for Compositions... 2 Play location for the Composition as a whole... 3 Overview of loading a Composition...

More information

Things to note: Each week Xampp will need to be installed. Xampp is Windows software, similar software is available for Mac, called Mamp.

Things to note: Each week Xampp will need to be installed. Xampp is Windows software, similar software is available for Mac, called Mamp. Tutorial 8 Editor Brackets Goals Introduction to PHP and MySql. - Set up and configuration of Xampp - Learning Data flow Things to note: Each week Xampp will need to be installed. Xampp is Windows software,

More information

Archivists Toolkit Internal Database

Archivists Toolkit Internal Database Archivists Toolkit Internal Database The Archivists Toolkit now includes (AT 2.0, update 9 and later), support for an internal database based on HyperSQL 2.0 (HSQLDB). HyperSQL is a small, reliable, high

More information

Installation of Microsoft SQL Server 2012 Setup MwPharm++ database

Installation of Microsoft SQL Server 2012 Setup MwPharm++ database Installation of Microsoft SQL Server 2012 Setup MwPharm++ database Datum: 12/15/2015 Strana: 1 Title Installation of Microsoft SQL Server 2012 & Setup MwPharm++ DB Author George Dousa Document No. 1.02

More information

CSCI 4000 Assignment 6

CSCI 4000 Assignment 6 Austin Peay State University, Tennessee Spring 2018 CSCI 4000: Advanced Web Development Dr. Leong Lee CSCI 4000 Assignment 6 Total estimated time for this assignment: 6 hours (if you are a good programmer)

More information

Welcome To Account Manager 2.0

Welcome To Account Manager 2.0 Account Manager 2.0 Manage Unlimited FileMaker Servers, Databases, Privileges, and Users Effortlessly! The ultimate tool for FileMaker Database Administrators. Welcome To Account Manager 2.0 What Is Account

More information

VERSION Lab 3: Link Layer

VERSION Lab 3: Link Layer Lab 3: Link Layer Objective In this lab, you will investigate Ethernet and the ARP protocol. You will also prove you are a Wireshark Ninja by dissecting an unknown protocol. Knowledge from Lecture 20 and

More information

Money Management Account

Money Management Account Money Management Account Overview Red represents debt accounts. Add An Account lets you add any account you want including loans, property, credit cards and investments. Click an account to edit it. Note:

More information

Creating a Quote. Topics covered in this guide: 1. Full Quotes 2. esignature with DocuSign 3. Duplicate a Quote 4. Quick Quotes

Creating a Quote. Topics covered in this guide: 1. Full Quotes 2. esignature with DocuSign 3. Duplicate a Quote 4. Quick Quotes Creating a Quote Creating a Quote Topics covered in this guide: 1. Full Quotes 2. esignature with DocuSign 3. Duplicate a Quote 4. Quick Quotes 2 Full Quotes 3 Full Quote 1. Click on the First InSite Enhanced

More information

FDM RMS User Guide. Basic Navigation & Use

FDM RMS User Guide. Basic Navigation & Use FDM RMS User Guide Basic Navigation & Use Revised: May 31, 2016 Contents Contents... 1 Administrator Contacts... 3 Introduction... 3 Overview... 3 1 Logging In... 4 1.1 Log in to Citrix... 4 1.1.1 Change

More information

edofe Management Toolkit

edofe Management Toolkit edofe Management Toolkit A guide to effective edofe management for Directly Licensed Centres 1 2 Contents Section one: Setting up the correct infrastructure on edofe... 4 Creating a group... 4 Editing

More information

ACE - Online Application Instructions FOLLOW THESE DIRECTIONS EXACTLY AS INDICATED *

ACE - Online Application Instructions FOLLOW THESE DIRECTIONS EXACTLY AS INDICATED * ACE - Online Application Instructions [If technical problems occur specific to this ACE process, please contact Nancy Nelson at nnelson@csus.edu, 916/278-2829] FOLLOW THESE DIRECTIONS EXACTLY AS INDICATED

More information

APP-J: WHAT IS APPLICATION JUKEBOX?

APP-J: WHAT IS APPLICATION JUKEBOX? APP-J: WHAT IS APPLICATION JUKEBOX? Use Application Jukebox (App-J) to run University software on any Windows PC or laptop. Launch apps from the Application Jukebox web page Install the Application Jukebox

More information

CSCI 4000 Assignment 4

CSCI 4000 Assignment 4 Austin Peay State University, Tennessee Spring 2018 CSCI 4000: Advanced Web Development Dr. Leong Lee CSCI 4000 Assignment 4 Total estimated time for this assignment: 12 hours (if you are a good programmer)

More information

Step 1: Adding Darwin to your computer

Step 1: Adding Darwin to your computer Step 1: Adding Darwin to your computer You MUST be on GoucherWIFI. If you receive any network connection problems at any point, double-check your WIFI connection. Remove/Move GoucherGuest and GoucherMultimedia

More information

Gradekeeper Version 5.7

Gradekeeper Version 5.7 Editor Irene Gardner Editorial Project Manager Paul Gardner Editor-in-Chief Sharon Coan, M.S. Ed. Imaging Ralph Olmedo, Jr. Production Manager Phil Garcia Macintosh is a registered trademark of Apple Computer,

More information