INSTITUTIONAL DATA USERS GROUP

Size: px
Start display at page:

Download "INSTITUTIONAL DATA USERS GROUP"

Transcription

1 INSTITUTIONAL DATA USERS GROUP October 12 th 2016 October Meeting

2 IDUG Agenda MAUI Admissions Row Level Security Adam Pyatt, Eric Hudson MAUI Snapshot Changes Eric Hudson Campus Data Portal Denny Crall, Michael Alberhasky, Ed Hill ITS-AIS ITS-AIS ITS-AIS

3 MAUI Admissions Row Level Security Adam Pyatt Eric Hudson ITS-AIS Enrollment Management Technical Lead ITS-AIS Database Administrator

4 MAUI Admissions Row Level Security Overview Quick Room Survey How many filter Application data using college or program How may filter Student data ( tests, GPA, etc ) using college or program Remove Row Level Security from both the Prospect and Application tables Impact on Student and Test tables Why Performance Increase Transparency

5 MAUI Admissions Row Level Security Prospect Row Level Security 11 prospect users impacted around campus Data Impacted Mail Item History Referral Codes STUD_* TST_* Current Security Program Prospect Type Prospect Status

6 MAUI Admissions Row Level Security Prospect Row Level Security User has Prospect Access for all US_FRESHMEN select count(*) from MAUI.PRSP_PROSPECT p where p.purge_session_cd = and p.admn_prospect_type_en = 'US_FRESHMAN

7 MAUI Admissions Row Level Security Application Row Level Security Data Impacted Applications Scores Institution Attended Current Security College Program Sub Program Admission Decision

8 MAUI Admissions Row Level Security Application Row Level Security User has Applicant Access to all Admitted apps in College A select count(*) from MAUI.APPL_APPLICATION appl where appl.session_cd = and appl.admn_decision_type_en = 'ADMITTED' and exists ( select 1 from MAUI.APPL_PROGRAM_OF_STUDY apos where apos.appl_application_id = appl.appl_application_id and apos.program_college_key = 'A' )

9 MAUI Admissions Row Level Security Implementation Plan Communication with impacted users of the warehouse Examples will be sent with the communication Removal of Row Level Security on November 27 th

10 MAUI Admissions Row Level Security: SQL Prospect Example ASSUMING EXISTING SECURITY LIMITS TO US_FRESHMEN NOW - count of prospects in the current daily snapshot select snapshot_type, snapshot_qualifier, count(*) from maui.prsp_prospect p where p.purge_session_cd = group by snapshot_type, snapshot_qualifier ; -- FUTURE - THIS IS WHAT YOU HAVE TO ADD NOW select snapshot_type, snapshot_qualifier, count(*) from maui.prsp_prospect p where p.purge_session_cd = and p.admn_prospect_type_en = 'US_FRESHMAN' group by snapshot_type, snapshot_qualifier ; -- QUERY OF STUD_STUDENT ROUGH EXMPLE OF WHAT IS HAPPENING NOW -- IF THERE WERE MULTIPLE STUD, TEST, ETC table(s) the "sub select in clause" is repeated for every table. Thus the peformance win going forward! select snapshot_type, snapshot_qualifier, count(*) from maui.stud_student s where s.master_id in ( select p.master_id from maui.prsp_prospect p where p.purge_session_cd = and p.admn_prospect_type_en = 'US_FRESHMAN' ) group by snapshot_type, snapshot_qualifier ; -- FUTURE - INNER JOIN to PROSPECT select s.snapshot_type, s.snapshot_qualifier, count(*) from maui.stud_student s join maui.prsp_prospect p on s.master_id = p.master_id where p.purge_session_cd = and p.admn_prospect_type_en = 'US_FRESHMAN' group by s.snapshot_type, s.snapshot_qualifier ;

11 MAUI Admissions Row Level Security: SQL Application Example ASSUMING EXISTING SECURITY LIMITS TO ADMITTED APPS IN CLAS NOW - count of applications in the current daily snapshot select snapshot_type, snapshot_qualifier, count(*) from maui.appl_application appl where appl.session_cd = group by snapshot_type, snapshot_qualifier ; -- FUTURE - THIS IS WHAT YOU HAVE TO ADD NOW ( all apps ) select snapshot_type, snapshot_qualifier, count(*) from maui.appl_application appl where appl.session_cd = and appl.admn_decision_type_en = 'ADMITTED' and exists ( select 1 from maui.appl_program_of_study apos where apos.appl_application_id = appl.appl_application_id and apos.program_college_acad_key = 'A' ) group by snapshot_type, snapshot_qualifier ; -- FUTURE - THIS IS WHAT YOU HAVE TO ADD NOW ( all PRIMARY apps ) select appl.snapshot_type, appl.snapshot_qualifier, count(*) from maui.appl_application appl join maui.appl_program_of_study apos on apos.appl_application_id = appl.appl_application_id and apos.is_application_primary_pos = 'Y' where appl.session_cd = and appl.admn_decision_type_en = 'ADMITTED' and apos.program_college_acad_key = 'A' group by appl.snapshot_type, appl.snapshot_qualifier ; -- QUERY OF STUD_STUDENT ROUGH EXMPLE OF WHAT IS HAPPENING NOW -- IF THERE WERE MULTIPLE STUD, TEST, ETC table(s) the "sub select in clause" is repeated for every table. Thus the peformance win going forward! select snapshot_type, snapshot_qualifier, count(*) from maui.stud_student s where s.master_id in ( select appl.master_id from maui.appl_application appl where appl.session_cd = and appl.admn_decision_type_en = 'ADMITTED' and exists ( select 1 from maui.appl_program_of_study apos where apos.appl_application_id = appl.appl_application_id and apos.program_college_acad_key = 'A' ) ) group by snapshot_type, snapshot_qualifier ; -- FUTURE - INNER JOIN to PROSPECT select s.snapshot_type, s.snapshot_qualifier, count(*) from maui.stud_student s join maui.appl_application appl on s.master_id = appl.master_id join maui.appl_program_of_study apos on apos.appl_application_id = appl.appl_application_id and apos.is_application_primary_pos = 'Y' where appl.session_cd = and appl.admn_decision_type_en = 'ADMITTED' and apos.program_college_acad_key = 'A' group by s.snapshot_type, s.snapshot_qualifier ;

12 MAUI Snapshots Changes Eric Hudson ITS, Database Administrator

13 DW Maui Snapshots Snapshot is a picture of a point in time of MAUI Picture taken 6 days a week at midnight (end of the day) SNAPSHOT_TYPE + SNAPSHOT_QUALIFER = the identifier for the picture Type is the grouping Qualifier is the specifics Snapshot Type Snapshot Qualifier CATEGORY Snapshot Qualifier Example DAILY DATE DAY0 SESSION_CD DAY1 DAY9 SESSION_CD CENSUS SESSION_CD LASTDAY SESSION_CD EOM FISCAL FISCALYEAR YEAR 2015 CALENDARWK1 CALENDARWK52 YEAR 2014 WEEK1..WEEK19 SESSION_CD 20143

14 DW by the Numbers - May Oracle Database 6 TERABYTES of Storage 14 Subject Areas 27 Tables with over 100,000,000 rows 2,000 User Accounts 1,313,000 Avg. Connections Per Month 1997 Year first Module was Implemented 1,567 Subject Area Tables 3,637 Subject Area Indexes 4 Oracle DBA s

15 DW by the Numbers - Oct Oracle Database 1997 Year first Module was Implemented 18 TERABYTES of Storage 18 Subject Areas + 19 Legacy Subject Areas 50+ Tables with over 100,000,000 rows 1,872 User Accounts 1,313,000 Avg. Connections Per Month 7,709 Subject Area Tables 4,388 Subject Area Indexes 365 Subject Area Views 4 Oracle Database Administrators

16 Maui.Dw_Snapshot_Info SNAPSHOT_TYPE TOTAL SUMMER FALL WINTER SPRING SESSION CALENDARWK## CENSUS DAILY DAY DAY DAY DAY DAY DAY DAY DAY DAY DAY EARLYREG EOM FISCALYEAR LASTDAY ORIENTATION RESERVE WEEK## Total

17 Removing WEEK## Snapshots as CALENDARWK## is WEEK## Maui area of the Dw is 16.5 of the 18 Terabytes of storage Snapshots Retained Every Friday o o o CALENDARWK##_YEAR (ex CALENDARWK41_2016) o Week # in the calendar year WEEK##_SESSION (ex WEEK7_20163) o Week # in the session Exact same data 2 copies of the Friday Daily snapshots Difference is what is stored in fields snapshot_type and snapshot_qualifier Removing WEEK## snapshots and Keeping CALENDARWK## o Data can be retrieved in CALENDARWK## snapshots o Cuts Maui dw growth rate by ~1/3 o 5.5 terabytes are freed up

18 Impact What is the impact to me and how do I answer questions based on week in session?

19 Maui.Dw_Snapshot_Info additions SNAPSHOT_SESSION_WEEK number(2) o Week # within the session SNAPSHOT_CALENDAR_YEAR number(4) SNAPSHOT_CALENDAR_WEEK number(2) o Calendar year and week # of the snapshot Populated for every snapshot select * from maui.dw_snapshot_info order by snapshot_dt desc; o Weeks run from Saturday-Friday for # o Saturdays loads are not ran maui dw loaded 6 days a week o For example Jan 1 st is a Wednesday Sunday-Tuesday snapshots have calendar week 53 Wednesday-Friday snapshots have calendar week 1

20 Maui.Dw_Snapshot_Week_Vw View for crosswalk of CALENDARWK## to WEEK## o o o For use with queries and determining which snapshot to use SNAPSHOT_TYPE WEEK_TYPE SNAPSHOT_QUALIFIER WEEK_QUALIFIER select * from maui.dw_snapshot_week_vw order by SNAPSHOT_SESSION_WEEK, substr(snapshot_session_cd,-1), SNAPSHOT_DT;

21 Maui.Set_Snapshot (and _Compare) for WEEK## Maui.Set_Snapshot* functions modified to use corresponding Calendarwk## Maui.Set_Snapshot and Maui.Set_Snapshot_Compare o If WEEK## then set to CALENDARWK## o select maui.set_snapshot('week1', '20163') from dual; set to CALENDARWK returns CALENDARWK select snapshot_type, snapshot_qualifier, count(*) from maui.sess_session_info group by snapshot_type, snapshot_qualifier; --returns nothing because it is now CALENDARWK35 and not WEEK1 select snapshot_type, snapshot_qualifier, count(*) from maui.sess_session_info where snapshot_type = 'WEEK1' and snapshot_qualifier = '20163' group by snapshot_type, snapshot_qualifier; IMPACT - USE of WEEK## in sql must be removed or changed to use view maui.dw_snapshot_week_vw (or dw_snapshot_info)

22 Maui.Set_Snapshot_Multi not possible for WEEK## Maui.Set_Snapshot* functions modified to use corresponding Calendarwk## Maui.Set_Snapshot_Multi o WEEK1_20163 = CALENDARWK35_2016 o WEEK1_20123 = CALENDARWK34_2012 o WEEK1_20158 = CALENDARWK4_2016 o Snapshot_type is different so use of select set_snapshot_multi not possible for WEEK## IMPACT Comparison of WEEK## snapshots for year over year (or over sessions) must be done against ALL snapshots

23 WEEK## Comparison with Maui.Set_Snapshot_All select maui.set_snapshot_all from dual; WEEK## Comparison using Dw_Snapshot_Info --fall WEEK1 comparisons select sess.snapshot_type, sess.snapshot_qualifier, si.snapshot_session_week, si.snapshot_session_cd, count(*) from maui.sess_session_info sess inner join maui.dw_snapshot_info si on sess.snapshot_type = si.snapshot_type and sess.snapshot_qualifier = si.snapshot_qualifier where si.snapshot_type like 'CALENDARWK%' and si.snapshot_session_week = 1 and substr(si.snapshot_session_cd,-1) = '3' group by sess.snapshot_type, sess.snapshot_qualifier, si.snapshot_session_week, si.snapshot_session_cd; WEEK## Comparison using Dw_Snapshot_Week_Vw --fall WEEK1 comparisons select sess.snapshot_type, sess.snapshot_qualifier, v.snapshot_session_week, v.snapshot_session_cd, v.week_type, v.week_qualifier, count(*) from maui.sess_session_info sess inner join maui.dw_snapshot_week_vw v on sess.snapshot_type = v.snapshot_type and sess.snapshot_qualifier = v.snapshot_qualifier where v.week_type = 'WEEK1' and substr(v.snapshot_session_cd,-1) = '3' group by sess.snapshot_type, sess.snapshot_qualifier, v.snapshot_session_week, v.snapshot_session_cd, v.week_type, v.week_qualifier; In both examples you can replace red text to supply a list of sessions vs fall sessions and si.snapshot_session_cd in ('20163','20153','20158','20148') and v.snapshot_session_cd in ('20163','20153','20158','20148') and v.week_qualifier in ('20163','20153','20158','20148')

24 Timeline for Removing WEEK## Today Begin sql transition to use Calendarwk## Sunday November 27, 2016 Set_Snapshot and Set_Snapshot_Compare switched to Calendarwk## snapshots for Week## Sunday December 18, 2016 Set_Snapshot_Multi disabled for Week## Tuesday January 3, 2017 Turn off Week## snapshot creation Drop of Week## snapshots

25 CAMPUS DATA Ed Hill ITS-AIS Architecture Technical Lead Denny Crall ITS-AIS Developer Michael Alberhasky ITS-AIS Developer

26 Campus Data Team Attributes data.uiowa.edu

27 Campus Data Team Attributes catalog ˈkadlˌôɡ (also catalogue) noun a complete list of items, typically one in alphabetical or other systematic order, in particular: a descriptive list of works of art in an exhibition or collection giving detailed comments and explanations.

28 Campus Data Team Attributes

29 Campus Data Team Members

30 Campus Data Team Group

31 Campus Data Item List

32 Campus Data Item Filters

33 Campus Data Item Data

34 Campus Data Cover Image

35 Campus Data Item Security

36 Campus Data Security Options

37 Campus Data Access Approval

38 Campus Data Request Access

39 Campus Data Access Request (team view)

40 Campus Data Access Request (workflow)

41 IDUG December Session: Expert Challenge Solution Workshop Call for Questions you struggle to answer with DW Send by November 9 th to IDUG-FEEDBACK@IOWA.UIOWA.EDU Sample SQL, Approach to troubleshooting, data results and business rule clarifications Presented by Subject Experts

42 IDUG Next Session Wednesday, December 14th, 2016 UCC2520-D 8:30 10:00 For IDUG Executive Committee and Session Feedback or Ideas For IDUG Peer to Peer Discussion, Collaboration and Sharing IDUG Website Follow us on

View a Students Schedule Through Student Services Trigger:

View a Students Schedule Through Student Services Trigger: Department Responsibility/Role File Name Version Document Generation Date 6/10/2007 Date Modified 6/10/2007 Last Changed by Status View a Students Schedule Through Student Services_BUSPROC View a Students

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

Click the Add a New Value Tab. Click Add. The system will populate the Event ID field with a number after the event request is saved.

Click the Add a New Value Tab. Click Add. The system will populate the Event ID field with a number after the event request is saved. How to login to SIS: SIS-only users go to: https://buckeyelink2.osu.edu/, click on Student Information System (main page), login using your lastname.# and password. Schedule an Event Path: Main Menu Campus

More information

Example. Section: PS 709 Examples of Calculations of Reduced Hours of Work Last Revised: February 2017 Last Reviewed: February 2017 Next Review:

Example. Section: PS 709 Examples of Calculations of Reduced Hours of Work Last Revised: February 2017 Last Reviewed: February 2017 Next Review: Following are three examples of calculations for MCP employees (undefined hours of work) and three examples for MCP office employees. Examples use the data from the table below. For your calculations use

More information

Calendar PPF Production Cycles Non-Production Activities and Events

Calendar PPF Production Cycles Non-Production Activities and Events 20-207 Calendar PPF Production Cycles Non-Production Activities and Events Four Productions For non-holiday productions 7 Week Stage Cycles 36 Uses plus strike (as in prior years and per agreement with

More information

Lafayette College Technology Clinic An Analysis of Communications at Lafayette College

Lafayette College Technology Clinic An Analysis of Communications at Lafayette College Lafayette College Technology Clinic An Analysis of Communications at Lafayette College -Midyear Report Spring 2018- 2 3 4 1. Meet The Team. 5 2. Charge........ 7 3. Clients...... 9 4. Project Significance..

More information

Scheduling. Scheduling Tasks At Creation Time CHAPTER

Scheduling. Scheduling Tasks At Creation Time CHAPTER CHAPTER 13 This chapter explains the scheduling choices available when creating tasks and when scheduling tasks that have already been created. Tasks At Creation Time The tasks that have the scheduling

More information

Trainer Portal Web Guide

Trainer Portal Web Guide Trainer Portal Web Guide 2 Trainer Portal Web Guide Trainer Portal Web Guide 3 1 Dashboard... 4 2 Schedule... 5 3 Managing... Classes 6 Recording Attendance... 7 Recording Signatures... 9 Endorsing Attendance...

More information

CoSci 487 SYLLABUS Introduction to Networks

CoSci 487 SYLLABUS Introduction to Networks CoSci 487 SYLLABUS Introduction to Networks Instructor: Mari Rettke samusher@aol.com 818-470-8419 Section: 11222 (lec) & 11233 (lab) The CompTIA Network + (N10-006 edition) examination measures necessary

More information

Professional Development Standards and Support. Learning Across Broward (LAB) End User Training

Professional Development Standards and Support. Learning Across Broward (LAB) End User Training Professional Development Standards and Support Learning Across Broward (LAB) End User Training Rationale and Purpose Why the change? Rationale and Timeline for System Change Request for Information (RFI)

More information

From Manual to Automatic with Overdrive - Using SAS to Automate Report Generation Faron Kincheloe, Baylor University, Waco, TX

From Manual to Automatic with Overdrive - Using SAS to Automate Report Generation Faron Kincheloe, Baylor University, Waco, TX Paper 152-27 From Manual to Automatic with Overdrive - Using SAS to Automate Report Generation Faron Kincheloe, Baylor University, Waco, TX ABSTRACT This paper is a case study of how SAS products were

More information

CLOVIS WEST DIRECTIVE STUDIES P.E INFORMATION SHEET

CLOVIS WEST DIRECTIVE STUDIES P.E INFORMATION SHEET CLOVIS WEST DIRECTIVE STUDIES P.E. 2018-19 INFORMATION SHEET INSTRUCTORS: Peggy Rigby peggyrigby@cusd.com 327-2104. Vance Walberg vancewalberg@cusd.com 327-2098 PURPOSE: Clovis West High School offers

More information

How to access and navigate the Infinite Campus Portal

How to access and navigate the Infinite Campus Portal Ballard County Public Schools How to access and navigate the Infinite Campus Portal This presentation is a demonstration of the Infinite Campus Portal. For a detailed description of each area of the portal,

More information

WEB REDESIGN PROJECT. presented to President s Cabinet. presented by Eric Turner, Web and Portal Services Uyen Mai, Marketing and Communication

WEB REDESIGN PROJECT. presented to President s Cabinet. presented by Eric Turner, Web and Portal Services Uyen Mai, Marketing and Communication WEB REDESIGN PROJECT presented to President s Cabinet presented by Eric Turner, Web and Portal Services Uyen Mai, Marketing and Communication October 28, 2014 Web Redesign Goals More Audience Focused More

More information

Institutional Research Data Mart: Instructor Guide Session 1

Institutional Research Data Mart: Instructor Guide Session 1 Instructional Goal: Institutional Research staff should be able to update the department s data mart. Specific instructional objective(s): s will be able to: Arrange the components of the data flow model

More information

NYC Metro Area Oracle Users Group Day

NYC Metro Area Oracle Users Group Day The New York Oracle Users Group NYC Metro Area Oracle Users Group Day September 10, 2008 Welcome! This is the 6 th Metro Area Meeting Are You a Member? NYOUG NJOUG CTOUG IOUG ODTUG Other Oracle User Group

More information

Important Notes: For this course you must check the Regis Bookstore: for the most current online course material information.

Important Notes: For this course you must check the Regis Bookstore:   for the most current online course material information. Online Course Syllabus CS445 Database Management Important Notes: This document provides an overview of expectations for this online course and is subject to change prior to the term start. Changes may

More information

University of California, Riverside Computing and Communications. Banner Student Implementation Banner Common Data Dissemination February 21, 2017

University of California, Riverside Computing and Communications. Banner Student Implementation Banner Common Data Dissemination February 21, 2017 University of California, Riverside Computing and Communications Banner Student Implementation Banner Common Data Dissemination February 21, 2017 This document provides an overview of the of the new Banner

More information

Business Intelligence Reporting User Guide. American University s Executive Dashboard

Business Intelligence Reporting User Guide. American University s Executive Dashboard American University s Executive Dashboard Accessing BI Reporting Log on to the myau.american.edu Portal, then expand the TECHNOLOGY link under Personalized links. Select BI REPORTING. Access to view this

More information

Database Programming with SQL

Database Programming with SQL Database Programming with SQL 4-3 Objectives This lesson covers the following objectives: Demonstrate the use of SYSDATE and date functions State the implications for world businesses to be able to easily

More information

Setting up Combined Sections

Setting up Combined Sections Setting up Combined Sections Combining Sections allows you to schedule more than one section of different classes in the same room, at the same time. This is most often done for cross-listed courses, but

More information

Admissions & Intro to Report Editing Participants Guide

Admissions & Intro to Report Editing Participants Guide IBM Cognos Analytics Admissions & Intro to Report Editing Participants Guide Welcome to Cognos - Admissions and Introduction to Report Editing! Today s objectives include: Gain a Basic Understanding of

More information

Henry Ford College Admissions Application Instructions for:

Henry Ford College Admissions Application Instructions for: Henry Ford College Admissions Application Instructions for: Dual Enrollment Advancement Plus Collegiate Academy Henry Ford Early College Thank you for your interest in Henry Ford College! The purpose of

More information

Two Success Stories - Optimised Real-Time Reporting with BI Apps

Two Success Stories - Optimised Real-Time Reporting with BI Apps Oracle Business Intelligence 11g Two Success Stories - Optimised Real-Time Reporting with BI Apps Antony Heljula October 2013 Peak Indicators Limited 2 Two Success Stories - Optimised Real-Time Reporting

More information

Faculty Portal Quick Start Training Guide

Faculty Portal Quick Start Training Guide Faculty Portal Quick Start Training Guide Prepared By Santa Rosa Junior College Development Team October 6, 2008 (version 2) Saved in: \\bus-home\admin_serv\cs\programmers\documentation\facportal-documentation-ver2.pdf

More information

Accessing Orientation Data Using VZ Orientation

Accessing Orientation Data Using VZ Orientation Accessing Orientation Data Using VZ Orientation Note: Users can be assigned various access levels within VZ Orientation. Your system may look different than those pictured here. Access pictured is typical

More information

CREATE YOUR CONTENT STRATEGY & LAUNCH PLAN Amanda Genther Inc. & Irresistible Offerings

CREATE YOUR CONTENT STRATEGY & LAUNCH PLAN Amanda Genther Inc. & Irresistible Offerings CREATE YOUR CONTENT STRATEGY & LAUNCH PLAN WHAT WE RE GOING TO TALK ABOUT» How to create content that entices your prospects to buy» How to create a content marketing plan that can be put on autopilot

More information

Welcome to the Building Rental Room Reservation System. To learn how to use our new system, please choose from one of the following menus:

Welcome to the Building Rental Room Reservation System. To learn how to use our new system, please choose from one of the following menus: Welcome Welcome Welcome to the Building Rental Room Reservation System. To learn how to use our new system, please choose from one of the following menus: Browse Menu Browse Menu The Browse menu contains

More information

What s New in PowerSchool 9.0

What s New in PowerSchool 9.0 What s New in PowerSchool 9.0 PowerSchool 9.0 contains many new features and enhancements to existing functionality. These features are designed to improve efficiency and overall SIS productivity. This

More information

WRITING RIGHT FOR THE WEB: SOCIAL MEDIA, MOBILE, AND TRADITIONAL SITES

WRITING RIGHT FOR THE WEB: SOCIAL MEDIA, MOBILE, AND TRADITIONAL SITES WRITING RIGHT FOR THE WEB: SOCIAL MEDIA, MOBILE, AND TRADITIONAL SITES Session 1: Communicating Via Your Traditional Website Tuesday, December 6, 2011 :: 1:00 2:30 p.m. EST Session 2: Communicating Via

More information

Connect to CCPL

Connect to CCPL Connect to Tech @ CCPL Charleston County Public Library October November December 2015 Technology Training Catalog TECH NEWS Want to receive this publication by email each month? Sign up for our monthly

More information

Undergraduate Admission File

Undergraduate Admission File Undergraduate Admission File June 13, 2007 Information Resources and Communications Office of the President University of California Overview Population The Undergraduate Admission File contains data on

More information

PeopleSoft Departmental Student Records Training. Bloomsburg University

PeopleSoft Departmental Student Records Training. Bloomsburg University PeopleSoft Departmental Student Records Training Bloomsburg University 1 Table of Contents Bloomsburg University Training Notes... 3 Terminology Crosswalk... 3 Term Code Logic... 3 Viewing a Student s

More information

Class of 55 Room, Van Pelt Library - October 21, 2011

Class of 55 Room, Van Pelt Library - October 21, 2011 Class of 55 Room, Van Pelt Library - October 21, 2011 Student Data User Group 10/21/2011 - Agenda Budget Office: Counting Students - New FTE and WCU concepts IPEDS data Business Objects News New Canned

More information

Welcome to Zimbra Day at Bucknell!

Welcome to Zimbra Day at Bucknell! Welcome to Zimbra Day at Bucknell! Today s agenda 8:45 a.m.: Welcome! Breakfast; meet and greet 9:30 11:30 a.m.: The Bucknell Zimbra experience 11:30 a.m. 1:30 p.m.: Lunch Zimbra roadmap presented by Neil

More information

REQUEST FOR PROPOSALS

REQUEST FOR PROPOSALS REQUEST FOR PROPOSALS January 15, 2015 Electronic Catalog Management System Project 2014-2015 Due 2:00 PM CST/CDT Friday, February 6, 2015 Company Name: Contact Information: Printed Name & Title E-mail

More information

The Virtual EMS Browse Menu How-To Document

The Virtual EMS Browse Menu How-To Document The Virtual EMS Browse Menu How-To Document Updated August 2016 Table of Contents Browse Menu... 3 Browsing for Events (View Events Listing )... 3 Browsing for Facilities (View Building and room information)...

More information

INF 315E Introduction to Databases School of Information Fall 2015

INF 315E Introduction to Databases School of Information Fall 2015 INF 315E Introduction to Databases School of Information Fall 2015 Class Hours: Tuesday & Thursday10:30 am-12:00 pm Instructor: Eunyoung Moon Email: eymoon@utexas.edu Course Description Almost every website

More information

UCSB IT Forum. April 15, 2014

UCSB IT Forum. April 15, 2014 UCSB IT Forum April 15, 2014 Agenda 1. Announcements 2. IT Governance a. Enterprise IT Governance Overview b. History of Campus IT Governance c. New Approach 3. Discussion ANNOUNCEMENTS IT Needs Assessment

More information

Campus Solutions: Student Records. Quick Reference Guide

Campus Solutions: Student Records. Quick Reference Guide Campus Solutions: Student Records Table of Contents Unit I: Foundations of Student Records... 9 Unit II: Term Set-up... 10 Chapter 2 - Create and Maintain Terms and Sessions... 11 *Add/Update Term & Session...

More information

QI TALK TIME. Run Charts. Speaker: Dr Michael Carton. Connect Improve Innovate. 19 th Dec Building an Irish Network of Quality Improvers

QI TALK TIME. Run Charts. Speaker: Dr Michael Carton. Connect Improve Innovate. 19 th Dec Building an Irish Network of Quality Improvers QI TALK TIME Building an Irish Network of Quality Improvers Run Charts Speaker: Dr Michael Carton 19 th Dec 2017 Connect Improve Innovate Speaker Speaker: Dr Michael Carton Michael s background is as a

More information

Mobley, Jenna W. Monday, February 23, :48 AM

Mobley, Jenna W. Monday, February 23, :48 AM DeLancy From: Sent: To: Subject: Mobley, Jenna W. Monday, February 23, 2015 7:48 AM DeLancy RE: Confirming next Monday's meeting Good morning, and thank you. We look forward

More information

Class Scheduling- Basics

Class Scheduling- Basics Class Scheduling- Basics Oct 2006 Rev 2 Maintain Schedule of Classes Class Scheduling - Basics Class Scheduling- Basics This course explains how to maintain a schedule of classes in PeopleSoft 8.9 Student

More information

Scheduling WebEx Meetings with Microsoft Outlook

Scheduling WebEx Meetings with Microsoft Outlook Scheduling WebEx Meetings with Microsoft Outlook About WebEx Integration to Outlook, page 1 Scheduling a WebEx Meeting from Microsoft Outlook, page 2 Starting a Scheduled Meeting from Microsoft Outlook,

More information

How to Request an Event using Ad Astra

How to Request an Event using Ad Astra How to Request an Event using Ad Astra Navigate to the Astra guest portal (best used in Mozilla Firefox or Google Chrome) (https://asapp02.aaiscloud.com/une_schedule/portal/guestportal.aspx) *If your page

More information

Course Design Document: IS202 Data Management. Version 4.5

Course Design Document: IS202 Data Management. Version 4.5 Course Design Document: IS202 Data Management Version 4.5 Friday, October 1, 2010 Table of Content 1. Versions History... 4 2. Overview of the Data Management... 5 3. Output and Assessment Summary... 6

More information

SIS Modernization Faculty (Instructor) Portal Training Guide

SIS Modernization Faculty (Instructor) Portal Training Guide Faculty (Instructor) Portal Training Guide Created on August 2017 Table of Contents Introduction to the New Faculty Portal... 1 Logging into the Faculty Portal... 1 Navigating the Faculty Portal... 5 Using

More information

Illini Union Online Space Request Form Tutorial

Illini Union Online Space Request Form Tutorial Illini Union Online Space Request Form Tutorial A few things to help you along your way This tutorial will serve as your go-to resource for navigating the Online Space Request Form. Please go through this

More information

Table of Contents COURSE OBJECTIVES... 2 LESSON 1: ADVISING SELF SERVICE... 4 NOTE: NOTIFY BUTTON LESSON 2: STUDENT ADVISOR...

Table of Contents COURSE OBJECTIVES... 2 LESSON 1: ADVISING SELF SERVICE... 4 NOTE: NOTIFY BUTTON LESSON 2: STUDENT ADVISOR... Table of Contents COURSE OBJECTIVES... 2 LESSON 1: ADVISING SELF SERVICE... 4 DISCUSSION... 4 INTRODUCTION TO THE ADVISING SELF SERVICE... 5 STUDENT CENTER TAB... 8 GENERAL INFO TAB... 19 TRANSFER CREDIT

More information

MS SQL SERVER DBA TRAINING COURSE

MS SQL SERVER DBA TRAINING COURSE MS SQL SERVER DBA TRAINING COURSE Microsoft SQL Server Administrators 2005, 2008, 2008R2, 2012 and 2014 Rajesh Kumar Jaiswal Updated in 2015 Why to choose us? Complete Practical and Real - Time Sessions.

More information

WebAdvisor Student Guide

WebAdvisor Student Guide WebAdvisor Student Guide WebAdvisor Student Guide Contents: Establishing a User ID & Password 2 WebAdvisor Home Page Overview 7 Current Students Menu Overview 8 How to Search for and/or Enroll in a Class

More information

Helpdesk. Shopping for Technology. Talkin Tech Highlights... Computing on the Go!

Helpdesk. Shopping for Technology. Talkin Tech Highlights... Computing on the Go! Helpdesk Volume 1, Issue 2 November 15, 2007 Printer-friendly version Make sure your newly purchased equipment complies with CCAC Hardware Standards, and learn what ITS can support. See CCAC Equipment

More information

MAUI Final Exam Assignment Needs Submission Instructions for Academic Department Administrators

MAUI Final Exam Assignment Needs Submission Instructions for Academic Department Administrators MAUI Final Exam Assignment Needs Submission Instructions for Academic Department Administrators 1.) Go to MAUI (Made At the University of Iowa student information system) at http://www.maui.uiowa.edu 2.)

More information

Developing an Communications Plan to Recruit International Students

Developing an  Communications Plan to Recruit International Students Developing an Email to Recruit International Students Presenters Megan Prettyman Director of International Admissions & Immigration Services Bryanna Davis Marketing Manager Agenda The Need for Leads Why

More information

Institute For Arts & Digital Sciences SHORT COURSES

Institute For Arts & Digital Sciences SHORT COURSES Institute For Arts & Digital Sciences SHORT COURSES SCHEDULES AND FEES 2017 SHORT COURSES - GRAPHIC DESIGN Adobe Photoshop Basic 07 February 28 February Tuesdays 14:30-17:30 Adobe Photoshop Basic 07 February

More information

DESC Technical Workgroup Presentation of Models for nd June 2016

DESC Technical Workgroup Presentation of Models for nd June 2016 DESC Technical Workgroup Presentation of Models for 2016 22 nd June 2016 Agenda 2 Recap on Timetable Summary of 2016 Modelling and Smoothed Model Outcomes Summary of TWG responses to proposed Algorithms

More information

San Jose State University College of Science Department of Computer Science CS151, Object-Oriented Design, Sections 1,2 and 3, Spring 2017

San Jose State University College of Science Department of Computer Science CS151, Object-Oriented Design, Sections 1,2 and 3, Spring 2017 San Jose State University College of Science Department of Computer Science CS151, Object-Oriented Design, Sections 1,2 and 3, Spring 2017 Course and Contact Information Instructor: Dr. Kim Office Location:

More information

Advanced Client-Side Web Programming CSCI 491/595 Syllabus Fall 2018

Advanced Client-Side Web Programming CSCI 491/595 Syllabus Fall 2018 Advanced Client-Side Web Programming CSCI 491/595 Syllabus Fall 2018 CSCI 491/595 Section 00 Instructor: Michael Cassens Office: SS 411 Office Hours: MWF 11:00-11:50 am or by appt Phone: (415) 787-0577

More information

This Particular unit will prepare one for an assignment which is expected to be submitted towards the end of the module.

This Particular unit will prepare one for an assignment which is expected to be submitted towards the end of the module. Computer Networks Professional Computing Courses About Provides fundamentals of networking. Networking and communication skills are vitally important in todays connected world. In this unit you will develop

More information

Student Profile User Guide v.5.4.0

Student Profile User Guide v.5.4.0 Student Profile User Guide v.5.4.0 Copyright 2002-2017 eschooldata, LLC All rights reserved. TABLE OF CONTENTS Overview... 3 Student Profile Search Page... 3 Search Page Icons...4 Student Contact Icon...5

More information

AIMMS Function Reference - Date Time Related Identifiers

AIMMS Function Reference - Date Time Related Identifiers AIMMS Function Reference - Date Time Related Identifiers This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13 Date-Time

More information

Decision Support Release Notes. Release

Decision Support Release Notes. Release Decision Support Release Notes Release 2006-05 1. Catalog & Schedule...2 1.1 Change Processing Logic for Session Meeting Table...2 2. Finance...3 2.1 Reload Missing Small Business Report Records...3 2.2

More information

Course Syllabus. Course Information

Course Syllabus. Course Information Course Syllabus Course Information Course: MIS 6326 Data Management Term: Fall 2015 Section: 002 Meets: Monday and Wednesday 2:30 pm to 3:45 pm JSOM 11.210 Professor Contact Information Instructor: Email:

More information

Affinity Group 2 October 2, 2018

Affinity Group 2 October 2, 2018 Affinity Group 2 October 2, 2018 The University of Wisconsin Service Center will Serve the people of the University of Wisconsin System Collaborate by being supportive and constructive Act with Integrity

More information

Advisor Case Load Self Service Participants Guide

Advisor Case Load Self Service Participants Guide IBM Cognos Analytics Advisor Case Load Self Service Participants Guide Welcome to Advisor Case Load Self Service Training! Today s objectives include: Gain a Basic Understanding of Cognos Know the Available

More information

name name C S M E S M E S M E Block S Block M C-Various October Sunday

name name C S M E S M E S M E Block S Block M C-Various October Sunday 01.10.2017 October Sunday 1 10 2017 02.10.2017 October Monday 2 10 2017 03.10.2017 October Tuesday 3 10 2017 Tag der Deutschen Einheit 04.10.2017 October Wednesday 4 10 2017 05.10.2017 October Thursday

More information

Data Warehouses. A user guide for unique environments in the core in which to manage your specialized data INTRODUCTION

Data Warehouses. A user guide for unique environments in the core in which to manage your specialized data INTRODUCTION Data Warehouses A user guide for unique environments in the core in which to manage your specialized data INTRODUCTION True credit union pioneers know that above all else, data drives this business. Correctly

More information

SLOAC Sub-Committee Minutes. October 11, 2013 October 25, 2013 November 8, 2013 November 22, 2013 December 13, 2013 April 4, 2014

SLOAC Sub-Committee Minutes. October 11, 2013 October 25, 2013 November 8, 2013 November 22, 2013 December 13, 2013 April 4, 2014 SLOAC Sub-Committee Minutes October 11, 2013 October 25, 2013 November 8, 2013 November 22, 2013 December 13, 2013 April 4, 2014 EVC SLO Sub Committee Meeting Minutes Friday, October 11, 2013 10:30am 12:00

More information

Nortel Enterprise Reporting Quality Monitoring Meta-Model Guide

Nortel Enterprise Reporting Quality Monitoring Meta-Model Guide NN44480-110 Nortel Enterprise Reporting Quality Monitoring Meta-Model Guide Product release 6.5 and 7.0 Standard 01.03 November 2009 Nortel Enterprise Reporting Quality Monitoring Meta-Model Guide Publication

More information

Visits and Fairs: Pre-Visit & Visit Posting Policy and Procedure

Visits and Fairs: Pre-Visit  & Visit Posting Policy and Procedure Objective/Notes: To establish consistent and efficient procedures for the creation and delivery of Pre-Visit Emails and posting all high school visits, college fairs, and community visits to the OSU Admissions

More information

Ordering your Transcripts through Parchment Exchange

Ordering your Transcripts through Parchment Exchange 1. Log in to Parchment.com or if you have not registered yet, click the green SIGN UP NOW button and follow the instructions to register. 2. Add/Select Your School: a. Add your school's information and

More information

Decision Support Release Notes. Release

Decision Support Release Notes. Release Decision Support Release Notes Release 2005-08 1. Finance...2 1.1 Improve Efficiency in Grants Streamlined Universe...2 1.2 Reload Finance Accounts Payable & Purchase Order Tables...2 2. Financial Aid...3

More information

STUDENT TRAINING MANUAL SCHEDULE CREATE A STUDY ABROAD SECTION

STUDENT TRAINING MANUAL SCHEDULE CREATE A STUDY ABROAD SECTION STUDENT TRAINING MANUAL SCHEDULE CREATE A STUDY ABROAD SECTION SSASECT - BASIC SCHEDULE FORM NOTE: A course must have first been approved through the curriculum process and entered in Banner Catalog before

More information

Scheduling WebEx Meetings with Microsoft Outlook

Scheduling WebEx Meetings with Microsoft Outlook Scheduling WebEx Meetings with Microsoft Outlook About WebEx Integration to Outlook, page 1 Scheduling a WebEx Meeting from Microsoft Outlook, page 2 Starting a Scheduled Meeting from Microsoft Outlook,

More information

Take Technology Into Your Own Hands. Joann Denby, Oakland University Ken Harris, Wayne State University

Take Technology Into Your Own Hands. Joann Denby, Oakland University Ken Harris, Wayne State University Take Technology Into Your Own Hands Joann Denby, Oakland University Ken Harris, Wayne State University Returning Student Project At Wayne State University an initiative was started by the Registrar s office

More information

How To: Use the. ahealthyme Activity Challenge Team Captain Guide Summer 2016

How To: Use the. ahealthyme Activity Challenge Team Captain Guide Summer 2016 ahealthyme Activity Challenge Team Captain Guide Summer 2016 Congratulations, you re a Team Captain in the upcoming Activity Challenge! The Activity Challenge starts on Monday, July 25. Let s commit to

More information

IT Governance: Shared IT Infrastructure Advisory Committee (SIAC)

IT Governance: Shared IT Infrastructure Advisory Committee (SIAC) IT Governance: Shared IT Infrastructure Advisory Committee (SIAC) Notes Members Attending: Blanchard, Cromer, Kirmse (Chair), Frey, Lander, Robinson, Sallot Others Attending: Burdette, P. Cook, Easley,

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

Series of 4 + Booster Tdap Booster with in the past 10 years. If date is prior to age 16 a BOOSTER is REQUIRED

Series of 4 + Booster Tdap Booster with in the past 10 years. If date is prior to age 16 a BOOSTER is REQUIRED Welcome to Privit Profile! This document provides instructions to students on completing the Privit Profile process. The information can be completed on your mobile device, laptop, tablet or any device

More information

Scheduling WebEx Meetings with Microsoft Outlook

Scheduling WebEx Meetings with Microsoft Outlook Scheduling WebEx Meetings with Microsoft Outlook About WebEx Integration to Outlook, page 1 Scheduling a WebEx Meeting from Microsoft Outlook, page 2 Starting a Scheduled Meeting from Microsoft Outlook,

More information

Basic Device Management

Basic Device Management This chapter contains the following sections: About, page 1 Licensing Requirements for, page 2 Default Settings for Basic Device Parameters, page 3 Changing the Device Hostname, page 3 Configuring the

More information

Smart Planner/Degree Search

Smart Planner/Degree Search Smart Planner/Degree Search Module: Degree Tracker Business Process Name: Degree Tracker Testing Created/Edited By: Kathy Godwin/Heather Jepsen Creation Date: December 12 th, 2011 Copyright 2016 The Arizona

More information

Scheduling WebEx Meetings with Microsoft Outlook

Scheduling WebEx Meetings with Microsoft Outlook Scheduling WebEx Meetings with Microsoft Outlook About WebEx Integration to Outlook, on page 1 Scheduling a WebEx Meeting from Microsoft Outlook, on page 2 Starting a Scheduled Meeting from Microsoft Outlook,

More information

Canvas Student Guide. The Office of Online Learning Massasoit Community College

Canvas Student Guide. The Office of Online Learning Massasoit Community College Canvas Student Guide The Office of Online Learning Massasoit Community College www.massasoit.edu TABLE OF CONTENTS What is Canvas?... 1 Computer and Browser Requirements... 1 Mobile Support... 1 Accessing

More information

COMMUNICATING WITH PROSPECTIVE STUDENTS IS SIMPLE, YET MANY GET IT WRONG. How, What & When to Do It

COMMUNICATING WITH PROSPECTIVE STUDENTS IS SIMPLE, YET MANY GET IT WRONG. How, What & When to Do It COMMUNICATING WITH PROSPECTIVE STUDENTS IS SIMPLE, YET MANY GET IT WRONG How, What & When to Do It PRESENTERS Rachel Rollins Marketing Coordinator rrollins@envisageinternational.com Michelle Kowalsky Director

More information

The CFPC Mobile App contains the information in the printed FMF program as well as general information about CFPC. The Mobile App lets you:

The CFPC Mobile App contains the information in the printed FMF program as well as general information about CFPC. The Mobile App lets you: What is the CFPC Mobile App? The CFPC Mobile App contains the information in the printed FMF program as well as general information about CFPC. The Mobile App lets you: Browse the FMF schedule, session

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 8.00 Generating Fiscal Periods Document Release Date: July 2009 Software Release Date: July 2009 Legal Notices Warranty The only warranties

More information

Crystal Springs Upland School Transportation Demand Management Plan. March 2016

Crystal Springs Upland School Transportation Demand Management Plan. March 2016 Crystal Springs Upland School Transportation Demand Management Plan March 06 CONTENTS Introduction... Transportation Demand Management (TDM) Program.... Background/Survey of Existing Student Commuting

More information

Institutional Research Data Mart: Student Guide Page 1 of 26

Institutional Research Data Mart: Student Guide Page 1 of 26 Institutional Research Data Mart: Student Guide Page 1 of 26 Introduction This guide is intended to help you learn and follow the process of updating the Institutional Research data mart (DMIR). To update

More information

A: 90% - 100% B: 80% - <90% C: 70% - <80% D: 60% - <70% F: < 60% Important Dates:

A: 90% - 100% B: 80% - <90% C: 70% - <80% D: 60% - <70% F: < 60% Important Dates: Department of Electronics Engineering Technology Division of Architecture, Engineering, & Technology West Campus Building 9, Room 140 (407) 582-1902/1903 http://www.valenciacollege.edu/west/engineering/

More information

Online Registration Rindge Students

Online Registration Rindge Students Online Registration Rindge Students Contents Advising Week... 2 Financial Responsibility Agreement... 3 Holds... 5 Assigned Registration Time Slot... 6 Registering for Courses... 7 Emailing Your Academic

More information

Advanced Relational Database Management MISM Course S A3 Spring 2019 Carnegie Mellon University

Advanced Relational Database Management MISM Course S A3 Spring 2019 Carnegie Mellon University Advanced Relational Database Management MISM Course S19-95736 A3 Spring 2019 Carnegie Mellon University Instructor: Randy Trzeciak Office: HBH 1104C Office hours: By Appointment Phone: 412-268-7040 E-mail:

More information

Text Messaging Calendar

Text Messaging Calendar July 2016 F16 07/07/16 07/07/16 Fall are now in your Mt. SAC portal. Log in now at http://inside.mtsac.edu. To end msgs text F16 07/27/16 07/27/16 You missed your Mt. SAC appt. Log into the Portal now

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

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

W706 Troubleshooting Transactions Using SQL Profiler

W706 Troubleshooting Transactions Using SQL Profiler W706 Troubleshooting Transactions Using SQL Profiler Pre-requisites: Session W607 or similar knowledge A perfect follow-up to session W607, this class will provide a more detailed look at the specific

More information

Calendar Excel Template User Guide

Calendar Excel Template User Guide Calendar Excel Template User Guide Excel-based simple Calendar Template Version 3 This Excel-based template provides a calendar template for each month of a year. It also incorporates an hourly schedule

More information

UNIVERSITY EVENTS CALENDAR TIP SHEET

UNIVERSITY EVENTS CALENDAR TIP SHEET INFORMATION TECHNOLOGY SERVICES UNIVERSITY EVENTS CALENDAR TIP SHEET Discover what s happening on campus with Florida State University s interactive events calendar. The calendar powered by Localist brings

More information

Business Process Guide

Business Process Guide Business Process Guide for Class and Course Permission Overrides 1 TABLE OF CONTENTS Topic Page Purpose...3 Navigation...3 Prerequisites...4 Prerequisites and Assumptions...4 Helpful Hints...4 Terminology...5

More information

Physics 1P21/1P91. Software Registration. 1. Sapling Learning 2. FlipIt Physics 3. REEF Polling

Physics 1P21/1P91. Software Registration. 1. Sapling Learning 2. FlipIt Physics 3. REEF Polling Physics 1P21/1P91 Software Registration 1. Sapling Learning 2. FlipIt Physics 3. REEF Polling Physics 1P21/1P91 Software Registration 1. SAPLING LEARNING Registration Instructions What is Sapling Learning?

More information