Summer Examinations 2015

Size: px
Start display at page:

Download "Summer Examinations 2015"

Transcription

1 Summer Examinations 2015 CSY203815N Module Title Level Time Allowed Database Application Five Two hours Instructions to students: Enter your student number not your name on all answer books. Answer all questions. Begin each section in a separate answer book; label each answer book clearly with the number of the question you are answering. No. of Pages 7 No. of Questions 12 Page 1 of 7

2 Section A Answer all questions. Study the following Entity Relationship Diagram: LOCATION STUDIO MOVIE CAST PEOPLE The following tables have been used to create an Oracle database: PEOPLE person_id firstname surname street city state 1001 JEFF PRICE 100 OAK STREET CARY NC 1002 CHUCK PETERSON 150 SADDLEBURR TRAIL CARY NC 1003 BRANDON BROOKS 1216 IRONWOOD CIRCLE BUFFALO NY 1004 BRIAN SMITH 1515 MAIN DALLAS TX 1005 PAUL MONK 4421 JEFFERSON HOUSTON TX 1006 REECE RANDALL 838 INNSBRUCK BELLAIRE TX 1007 PETER JONG 1131 SOUTH MAIN KNOXVILLE TN 1008 MAGGIE DAVIS 2150 CANAL NEW ORLEANS LA 1009 BECKY ORVIS 7831 TUPELO MADISON WI 1010 CAROL DELANO 8310 NIGHTINGALE HOUSTON TX 1011 FRAN FRIEND 152 E MAIN CARY NC STUDIOS studio_id studio_name studio_city studio_state 2001 GIANT LOS ANGELES CA 2002 MPM BURBANK CA 2003 DELIGHTED ARTISTS AUSTIN TX 2004 FKG APEX NC 2005 METAVERSAL STUDIOS LOS ANGELES CA Page 2 of 7

3 NOTE: director_id in movies contains data listed in person_id MOVIES movie_id movie_title studio_id budget$m gross$m release_date director_id 3001 MINERAL HOUSE JAN PRINCE KONG MAY THE CODE 3003 WARRIOR SEP BILL DURHAM JUL CODEPENDENCE 3005 DAY JUL THE LINUX FILES AUG SQL STRIKES BACK NOV THE PROGRAMMER APR HARD CODE APR THE REAR 3010 WINDOWS JUL LOCATIONS location_id movie_id city state LOS ANGELES CA PORTLAND ME PORTLAND ME HOUSTON TX PHILADELPHIA PA CAST person_id movie_id role payment$ THOMAS BLACK ROBERT MAXWELL MALCOLM RICHARDS NINA SMITH PAM GREEN GEORGE BLAKE MITCH CRANE CHRIS PARKER PAUL NERO SHEILA SLADE MANFRED POWELL Page 3 of 7

4 Question 1 Using a UNION set operator, write the SQL to provide a list of cities where there are people living and where studios are located. Question 2 Explain the purpose of the following query: SELECT studio_city FROM studio MINUS SELECT city FROM people; Question 3 Show the expected output of the previous query. Question 4 Write the SQL querying the database to provide a list of movies produced by MPM. (6 marks) Question 5 Show the expected output of the previous query. Question 6 Explain the purpose of the following query (TX = Texas): SELECT movie_id, movie_title, budget$m, gross$m FROM movies WHERE director_id IN ( SELECT person_id FROM people WHERE state = 'TX'); (5 marks) Page 4 of 7

5 Question 7 a. Show the expected output of the previous query. (3 marks) b. What would be the impact on the result set if the last line in the above statement was changed as below, briefly explain your answer? WHERE state = 'tx' (3 marks) Question 8 Write the SQL querying the database to provide a list of the total gross income of each studio by studio s name, showing the highest first. (8 marks) Question 9 Show the expected output of the previous query. Question 10 Explain the purpose of the following query: SELECT ROUND(AVG(gross$m - budget$m),2) NET$m FROM movies; (5 marks) Total: 50 marks End of Section A Section B follows overleaf Page 5 of 7

6 Section B Answer both questions. Question 11 a. Explain the components and purpose of the procedure outlined below. Include in your explanation the datatype(s) used for the parameters. (20 marks) SET SERVEROUTPUT ON CREATE OR REPLACE PROCEDURE proc_update_pay( in_person_id IN people.person_id%type, in_payment IN cast.payment$%type, in_movie_id IN movies.movie_id%type) IS BEGIN UPDATE cast c SET payment$ = in_payment WHERE c.person_id = in_person_id AND c.movie_id = in_movie_id; DBMS_OUTPUT.PUT_LINE(in_person_id '''s pay has been increased for ' in_movie_id ' to $' in_payment); EXCEPTION WHEN OTHERS THEN raise_application_error(-20001,'error'); END proc_update_pay; / b. Write the code that would execute the procedure above, include example arguments. (3 marks) c. Show the expected output based on your example in (b). (2 marks) Total: 25 marks Page 6 of 7

7 Question 12 a. Using examples of server side triggers, explain their key components. Include in your discussion the different firing events. (15 marks) b. Discuss areas where server side triggers might be used and to what effect. (10 marks) Total: 25 marks End of Section B End of Paper Page 7 of 7

Database Design Structured Query Language

Database Design Structured Query Language Database Design Structured Query Language PWSP Workshop February 26-27 Sanjay Goel 1 Structured Query Language Definition The Structured Query Language (SQL) comprises one of the fundamental building blocks

More information

BSc (Hons) Web Technologies. Examinations for 2017 / Semester 1

BSc (Hons) Web Technologies. Examinations for 2017 / Semester 1 BSc (Hons) Web Technologies Cohort: BWT/16A/FT Examinations for 2017 / Semester 1 MODULE: Open Source Web Technologies MODULE CODE: WAT 2108C Duration: 2 Hours 15 minutes Instructions to Candidates: 1.

More information

THE AUSTRALIAN NATIONAL UNIVERSITY. Mid-Semester Examination August 2006 RELATIONAL DATABASES (COMP2400)

THE AUSTRALIAN NATIONAL UNIVERSITY. Mid-Semester Examination August 2006 RELATIONAL DATABASES (COMP2400) THE AUSTRALIAN NATIONAL UNIVERSITY Mid-Semester Examination August 2006 RELATIONAL DATABASES (COMP2400) Reading Time: 10 minutes Writing Time: 1 hour Permitted Materials: One A4 sheet with notes on both

More information

Pastor. Financial Intake

Pastor. Financial Intake Pastor Rev. Robert Alexander Jr Birmingham, AL $100.00 Pastor Herman Avery Jr Inglewood, CA $100.00 Pastor Irvin Barrett Carpentersville, IL $100.00 Pastor Paul Barrett Sr Lafayette, IN $100.00 Pastor

More information

CMPE 180A Data Structures and Algorithms in C++ Spring 2018

CMPE 180A Data Structures and Algorithms in C++ Spring 2018 San José State University Department of Computer Engineering CMPE 180A Data Structures and Algorithms in C++ Spring 2018 Instructor: Ron Mak Assignment 7 Assigned: Thursday, March 8 Due: Thursday, March

More information

Exam I Computer Science 420 Dr. St. John Lehman College City University of New York 12 March 2002

Exam I Computer Science 420 Dr. St. John Lehman College City University of New York 12 March 2002 Exam I Computer Science 420 Dr. St. John Lehman College City University of New York 12 March 2002 NAME (Printed) NAME (Signed) E-mail Exam Rules Show all your work. Your grade will be based on the work

More information

2. E/R Design Considerations

2. E/R Design Considerations 2. E/R Design Considerations 32 What you will learn in this section Relationships cont d: multiplicity, multi-way Design considerations Conversion to SQL 33 Multiplicity of E/R Relationships Multiplicity

More information

Events Oracle Arena & McAfee Coliseum

Events Oracle Arena & McAfee Coliseum MARCH 2 Golden State vs. Portland Trail Blazers Oracle Arena 5-9 Disney on Ice-Princess Wishes Oracle Arena 12 Golden State vs. Toronto Raptors Oracle Arena 15 Golden State vs. Memphis Grizzlies McAfee

More information

SQL-Server. Insert query in SQL Server. In SQL Server (Transact-SQL), the INSERT statement is used to

SQL-Server. Insert query in SQL Server. In SQL Server (Transact-SQL), the INSERT statement is used to Insert query in SQL Server In SQL Server (Transact-SQL), the INSERT statement is used to insert a data into the table. It can be a single record or multiple records into a table in SQL Server. The INSERT

More information

Houston Economic Outlook. Patrick Jankowski

Houston Economic Outlook. Patrick Jankowski Houston Economic Outlook Patrick Jankowski www.houston.org Follow me on Twitter @pnjankowski May 22 10:30 a.m. Hilton Post Oak It s not Christmas but... 5 It s not Christmas but... Population Estimates

More information

National Fire Information Council Metro Program Managers

National Fire Information Council Metro Program Managers Phoenix Fire Department 8/27/2015 Orange County Fire Authority 5/16/2016 Name: William Hamouz, Jr. Voice: 602-534-5968 Name: Tamy Rivers Voice: 714-573-6199 Address: 150 S. 12th St. Fax: Address: 1 Fire

More information

MSU Travel Arranger Education Day App Happy

MSU Travel Arranger Education Day App Happy MSU Travel Arranger Education Day App Happy Presented by: Curt McKee, Senior Solutions Consultant Concur Technologies TravelatState POWERED BY CONLIN TRAVEL 01 / 22/17 HOME BUILD TRAVEL PROFILE BOOK NOW

More information

IU Alumni Association Membership Statistics

IU Alumni Association Membership Statistics IU Alumni Association Membership Statistics Paid Members Membership Type Jun-2017 Jun-2018 Annual 11,213 8,754 Auto-Renewal 733 1,614 Life 44,597 45,355 June 30 - Fiscal Year 2018 Year To Date vs. Fiscal

More information

IU Alumni Association Membership Statistics

IU Alumni Association Membership Statistics IU Alumni Association Membership Statistics Paid Members Membership Type Jun-2017 Mar-2018 Annual 11,213 9,517 Auto-Renewal 733 1,466 Life 44,597 45,145 Total 56,543 56,128 70,000 65,000 60,000 55,000

More information

SUMMER EXAMINATIONS 2014

SUMMER EXAMINATIONS 2014 SUMMER EXAMINATIONS 2014 MODULE TITLE LEVEL TIME ALLOWED Database Architecture Four Two hours Instructions to students: Enter your student number not your name on all answer booklets. The exam is split

More information

Querying a Relational Database COMPANY database For Lab4, you use the Company database that you built in Lab2 and used for Lab3

Querying a Relational Database COMPANY database For Lab4, you use the Company database that you built in Lab2 and used for Lab3 CIS30/530 Lab Assignment SS Chung Querying a Relational Database COMPANY database For Lab, you use the Company database that you built in Lab2 and used for Lab3 1. Update the following new changes into

More information

CS2 Current Technologies Lecture 3: SQL - Joins and Subqueries

CS2 Current Technologies Lecture 3: SQL - Joins and Subqueries T E H U N I V E R S I T Y O H F R G E D I N B U CS2 Current Technologies Lecture 3: SQL - Joins and Subqueries Chris Walton (cdw@dcs.ed.ac.uk) 11 February 2002 Multiple Tables 1 Redundancy requires excess

More information

Local Consumer Commerce

Local Consumer Commerce RELEASE DATE AUG 2018 Local Consumer Commerce April 2018 Click here to download the data DATA THROUGH APR 2018 3.6 % Highlights across all 14 metro areas Local Consumer Commerce declined by 3.6 percent

More information

Database Programming with SQL

Database Programming with SQL Database Programming with SQL 3-2 Objectives This lesson covers the following objectives: Construct a query to sort a result set in ascending or descending order State the order in which expressions are

More information

2013 Product Catalog. Quality, affordable tax preparation solutions for professionals Preparer s 1040 Bundle... $579

2013 Product Catalog. Quality, affordable tax preparation solutions for professionals Preparer s 1040 Bundle... $579 2013 Product Catalog Quality, affordable tax preparation solutions for professionals 2013 Preparer s 1040 Bundle... $579 Includes all of the following: Preparer s 1040 Edition Preparer s 1040 All-States

More information

King Fahd University of Petroleum and Minerals

King Fahd University of Petroleum and Minerals 1 King Fahd University of Petroleum and Minerals Information and Computer Science Department ICS 334: Database Systems Semester 041 Major Exam 1 18% ID: Name: Section: Grades Section Max Scored A 5 B 25

More information

SANS Vendor Events. SANS offers a variety of events which bring you in touch with the highly qualified SANS community.

SANS Vendor Events. SANS offers a variety of events which bring you in touch with the highly qualified SANS community. SANS Vendor Events SANS offers a variety of events which bring you in touch with the highly qualified SANS community. SANS National Events over 1200 profession IT Security attendees and over 45 SANS classes

More information

Relational terminology. Databases - Sets & Relations. Sets. Membership

Relational terminology. Databases - Sets & Relations. Sets. Membership Relational terminology Databases - & Much of the power of relational databases comes from the fact that they can be described analysed mathematically. In particular, queries can be expressed with absolute

More information

Free or Reduced Air from Select Gateways for 1st & 2nd guest on reservation

Free or Reduced Air from Select Gateways for 1st & 2nd guest on reservation UPDATED AS OF OCTOBER 9, 2018 Free or Reduced Air from Select Gateways for 1st & 2nd guest on reservation Booking Window: 10/3/18-10/31/18 11:59pm EST Offer Valid on Select Sailings & Categories See Terms

More information

Programming and Database Fundamentals for Data Scientists

Programming and Database Fundamentals for Data Scientists Programming and Database Fundamentals for Data Scientists Database Fundamentals Varun Chandola School of Engineering and Applied Sciences State University of New York at Buffalo Buffalo, NY, USA chandola@buffalo.edu

More information

NCC Cable System Order

NCC Cable System Order Syscode 0081 Agency Beacon Media System Name Spectrum/Park Cities, TX Advertiser Ed Meier for Congress $2,421.00 Commission $363.15 Net $2,057.85 198 1 AEN VARIOUS 2/26/18 3/4/18 19:00 24:00 X X X X X

More information

Configuring Oracle GoldenGate OGG 11gR2 local integrated capture and using OGG for mapping and transformations

Configuring Oracle GoldenGate OGG 11gR2 local integrated capture and using OGG for mapping and transformations Configuring Oracle GoldenGate OGG 11gR2 local integrated capture and using OGG for mapping and transformations In the article you will have a look at an OGG configuration example for local integrated capture

More information

Mobile District. Forecast Notes

Mobile District. Forecast Notes Mobile District Forecast Notes The following pages contain the list of active Architect & Engineering Contracts Task Orders for the Mobile District and South Atlantic Division, USACE. The A-E Task orders

More information

Part 1 on Table Function

Part 1 on Table Function CIS611 Lab Assignment 1 SS Chung 1. Write Table Functions 2. Automatic Creation and Maintenance of Database from Web Interface 3. Transforming a SQL Query into an Execution Plan in Relational Algebra for

More information

NCC Cable System Order

NCC Cable System Order Order # 62467657 Flight s 1/23/17-11/5/17 Syscode 858 Agency Buying System Name Spectrum/RSN Full Footprint Feed Advertiser Tom Steyer PAC Sales Coordinator Molly Casca Est Code Phone (31) 951-262 Credit

More information

The Key Playlist Report for New York and Texas is Ready!

The Key Playlist Report for New York and Texas is Ready! The Key Playlist Report for New York and Texas is Ready! 1 The Key Playlist Report for New York and Texas is now available. A general Key Playlist Report good for ALL the states will be ready in a few

More information

Unit 4 Research Project. Eddie S. Jackson. Kaplan University. IT526: SQL Query Design. Jon Walter McKeeby, DSc, MBA

Unit 4 Research Project. Eddie S. Jackson. Kaplan University. IT526: SQL Query Design. Jon Walter McKeeby, DSc, MBA Running head: UNIT 4 RESEARCH PROJECT 1 Unit 4 Research Project Eddie S. Jackson Kaplan University IT526: SQL Query Design Jon Walter McKeeby, DSc, MBA 07/15/2014 UNIT 4 RESEARCH PROJECT 2 Part 1. Your

More information

BSc (Hons) Web Technologies. BSc (Hons) Business Information System. Examinations for 2016 Semester 2. Resit Examination for BIS/15A/FT & BIS/15B/FT

BSc (Hons) Web Technologies. BSc (Hons) Business Information System. Examinations for 2016 Semester 2. Resit Examination for BIS/15A/FT & BIS/15B/FT BSc (Hons) Web Technologies BSc (Hons) Business Information System Cohort: BWT/16A/FT Examinations for 2016 Semester 2 Resit Examination for BIS/15A/FT & BIS/15B/FT MODULE: DATABASE MANAGEMENT SYSTEM MODULE

More information

SUMMER EXAMINATIONS 2013

SUMMER EXAMINATIONS 2013 SUMMER EXAMINATIONS 2013 CSY202913N MODULE TITLE Database Technology 1 LEVEL TIME ALLOWED Five Two Hours Instructions to students: Enter your student number not your name on all answer booklets. You are

More information

1. Database Design. Assignment 2: Database Design A Basic ER Diagram and a Data Dictionary (40 points)

1. Database Design. Assignment 2: Database Design A Basic ER Diagram and a Data Dictionary (40 points) CCT395, Fall 2010, Topics in CCIT: Databases Assignment 2: Database Design Due on October 20, 2010, at the beginning of class This assignment is worth 150 points, 15% of your course grade. The assignment

More information

Creating a Relational Database Using Microsoft SQL Code. Farrokh Alemi, Ph.D.

Creating a Relational Database Using Microsoft SQL Code. Farrokh Alemi, Ph.D. Creating a Relational Database Using Microsoft SQL Code Farrokh Alemi, Ph.D. The objective of this note is to help you understand how a relational database is organized as a collection of tables, linked

More information

Using Mail Merge Creating a Data Source

Using Mail Merge Creating a Data Source Using Mail Merge Creating a Data Source 1. Click Mailings 2. Click Start Mail Merge 3. Click Letters 4. Click Select Recipients 5. Click Type a New List 6. Click Customize Columns 7. Click and delete any

More information

Module Contact: Dr Beatriz de la Iglesia, CMP Copyright of the University of East Anglia Version 1

Module Contact: Dr Beatriz de la Iglesia, CMP Copyright of the University of East Anglia Version 1 UNIVERSITY OF EAST ANGLIA School of Computing Sciences Main Series UG Examination 2015-16 DATABASE SYSTEMS CMP-4010B / CMP-5038B Time allowed: 3 hours Answer THREE questions out of FIVE. All questions

More information

Includes all of the following a value of over $695:

Includes all of the following a value of over $695: 2011 Product Catalog Quality, affordable tax preparation solutions for professionals save over $136 2011 Preparer s 1040 Bundle... $559 Includes all of the following a value of over $695: Preparer s 1040

More information

Is Something Wrong with Texas Home Prices?

Is Something Wrong with Texas Home Prices? Is Something Wrong with Texas Home Prices? Finding Shelter: Affordability Squeeze in a Tight Texas Housing Market Dallas Federal Reserve February 23, 2018 Constrained supply plus strong demand = accelerated

More information

NORTH CENTRAL REGION HUMAN RESOURCES DEVELOPMENT DIVISION (HRDD) Training Schedule FY Updated: 17 September 2008

NORTH CENTRAL REGION HUMAN RESOURCES DEVELOPMENT DIVISION (HRDD) Training Schedule FY Updated: 17 September 2008 NORTH CENTRAL REGION HUMAN RESOURCES DEVELOPMENT DIVISION (HRDD) Training Schedule FY - 2009 Updated: 17 September 2008 Date Class Title CHRTAS Registration Information Class Location Course Manager 6-10

More information

CASS Cycle M. David Robinson Director, Address Quality Pitney Bowes. Pitney Bowes Group1 1

CASS Cycle M. David Robinson Director, Address Quality Pitney Bowes. Pitney Bowes Group1 1 CASS Cycle M David Robinson Director, Address Quality Pitney Bowes Pitney Bowes Group1 1 Today s Agenda CASS Cycle M Changes Previously Announced Changes DPV Validation of Address with Secondary Value

More information

1.2 Data Classification

1.2 Data Classification SECTION 1.2 DATA CLASSIFICATION 11 1.2 Data Classification What You SHOULD LEARN How to distinguish between qualitative data and quantitative data How to classify data with respect to the four levels of

More information

2001 CUSTOMER TECHNICAL TRAINING CONTROLS SCHEDULE

2001 CUSTOMER TECHNICAL TRAINING CONTROLS SCHEDULE 2001 CUSTOMER TECHNICAL TRAINING CONTROLS SCHEDULE Course Course Name Start End Location Code Date Date ECS200 VVT Comfort Controls 3/19/01 3/23/01 Houston ECS900 Best Plus Programming 3/28/01 3/29/01

More information

Asia Key Economic and Financial Indicators

Asia Key Economic and Financial Indicators Quarterly Yearly Quarterly Quarterly Month-End Quarter-End Monthly (USD) Monthly Monthly Monthly Monthly Interest Daily GDP GDP per BoP CA IR External Debt Import Trade Unemployment IPI PPI CPI Rates*

More information

Session: Best Practices - Lessons Learned from the Building Department

Session: Best Practices - Lessons Learned from the Building Department Session: Best Practices - Lessons Learned from the Building Department BEST PRACTICES Lessons Learned from the Building Department Program and Major Jurisdiction Committee Presenter: Chuck Ramani, P.E.,

More information

Best Practices: Lessons Learned from Building Departments

Best Practices: Lessons Learned from Building Departments Best Practices: Lessons Learned from Presenters: Chuck Ramani, P.E., CBO & Sam Palmer, P.E., P. Eng., CBO Tuesday, September 12, 2017 8:00 AM - 9:30 AM BEST PRACTICES Lessons Learned from the Building

More information

CSE 781 Data Base Management Systems, Summer 09 ORACLE PROJECT

CSE 781 Data Base Management Systems, Summer 09 ORACLE PROJECT 1. Create a new tablespace named CSE781. [not mandatory] 2. Create a new user with your name. Assign DBA privilege to this user. [not mandatory] 3. SQL & PLSQL Star Courier Pvt. Ltd. a part of the evergreen

More information

Bradshaw Family Genealogy Notes

Bradshaw Family Genealogy Notes Bradshaw Family Genealogy Notes Arkansas Mark B. Arslan 407 Highlands Lake Drive Cary, NC 27518-9167 contact@arslanmb.org Bradshaw Genealogy Web Site: http://arslanmb.org/bradshaw/bradshaw.html 23 February

More information

B.2 Measures of Central Tendency and Dispersion

B.2 Measures of Central Tendency and Dispersion Appendix B. Measures of Central Tendency and Dispersion B B. Measures of Central Tendency and Dispersion What you should learn Find and interpret the mean, median, and mode of a set of data. Determine

More information

Interested in learning more? Global Information Assurance Certification Paper. Copyright SANS Institute Author Retains Full Rights

Interested in learning more? Global Information Assurance Certification Paper. Copyright SANS Institute Author Retains Full Rights Global Information Assurance Certification Paper Copyright SANS Institute Author Retains Full Rights This paper is taken from the GIAC directory of certified professionals. Reposting is not permited without

More information

COMP 430 Intro. to Database Systems

COMP 430 Intro. to Database Systems COMP 430 Intro. to Database Systems Multi-table SQL Get clickers today! Slides use ideas from Chris Ré and Chris Jermaine. The need for multiple tables Using a single table leads to repeating data Provides

More information

Department of Computer Science and Information Systems, College of Business and Technology, Morehead State University

Department of Computer Science and Information Systems, College of Business and Technology, Morehead State University 1 Department of Computer Science and Information Systems, College of Business and Technology, Morehead State University Lecture 3 Part A CIS 311 Introduction to Management Information Systems (Spring 2017)

More information

Normalization and denormalization Missing values Outliers detection and removing Noisy Data Variants of Attributes Meta Data Data Transformation

Normalization and denormalization Missing values Outliers detection and removing Noisy Data Variants of Attributes Meta Data Data Transformation Preprocessing Data Normalization and denormalization Missing values Outliers detection and removing Noisy Data Variants of Attributes Meta Data Data Transformation Reading material: Chapters 2 and 3 of

More information

Interested in learning more? Global Information Assurance Certification Paper. Copyright SANS Institute Author Retains Full Rights

Interested in learning more? Global Information Assurance Certification Paper. Copyright SANS Institute Author Retains Full Rights Global Information Assurance Certification Paper Copyright SANS Institute Author Retains Full Rights This paper is taken from the GIAC directory of certified professionals. Reposting is not permited without

More information

ACCESS PROCESS FOR CENTRAL OFFICE ACCESS

ACCESS PROCESS FOR CENTRAL OFFICE ACCESS ACCESS PROCESS FOR CENTRAL OFFICE ACCESS NOTE: Every person doing work of any nature in the central offices MUST have an access badge. Anyone who does not have a current access badge will be escorted from

More information

Declarative message addressing

Declarative message addressing Page 1 of 12 Declarative message addressing Abstract ( 1 of 1 ) United States Patent 6,212,552 Biliris, et al. April 3, 2001 A messaging system, and method of operation thereof, which supports combinations

More information

CONNECTING NETWORKS, CONNECTING PEOPLE

CONNECTING NETWORKS, CONNECTING PEOPLE SOLUTIONS PORTFOLIO CONNECTING NETWORKS, CONNECTING PEOPLE At PAETEC, we believe technology should bring people together. Whether you re connecting via copper, fiber, or wireless, it s all communications.

More information

Vanguard Modular Building Systems, LLC

Vanguard Modular Building Systems, LLC Vanguard Modular Building Systems, LLC COMMERCIAL MODULAR BUILDINGS TEMPORARY & PERMANENT CLASSROOMS. OFFICES. SPECIALTY. Buildings & Services O U R B U I L D I N G S Building sizes from 700 to 20,000+

More information

NOTE: DO NOT REMOVE THIS EXAM PAPER FROM THE EXAM VENUE

NOTE: DO NOT REMOVE THIS EXAM PAPER FROM THE EXAM VENUE Exams, Awards & Graduations NOTE: DO NOT REMOVE THIS EXAM PAPER FROM THE EXAM VENUE EXAM COVER SHEET EXAMINATION DETAILS Course Code/s: ISYS1055/1057 Course Name/s: Database Concepts Date of Exam: Sample

More information

The Enron Dataset Database Schema and Brief Statistical Report 1

The Enron  Dataset Database Schema and Brief Statistical Report 1 The Enron Email Dataset Database Schema and Brief Statistical Report 1 Jitesh Shetty University of Southern California Los Angeles, CA jshetty@usc.edu Jafar Adibi USC Information Sciences Institute Marina

More information

AC61/AT61 DATABASE MANAGEMENT SYSTEMS DEC 2013

AC61/AT61 DATABASE MANAGEMENT SYSTEMS DEC 2013 Q.2 a. Define the following terms giving examples for each of them: Entity, attribute, role and relationship between the entities b. Describe any four main functions of a database administrator. c. What

More information

Real Estate Forecast 2015

Real Estate Forecast 2015 Real Estate Forecast 2015 No Place But Up Interest Rates Rents Prices Real Estate and the Economy Ted C. Jones, PhD Chief Economist Stewart Title Guaranty Company Thank Heavens for Global Warming Think

More information

Regional 311 System Development Feasibility Study. Mike Parquette, Comprehensive Planning Manager MVPC Regional Planning Day June 20, 2013

Regional 311 System Development Feasibility Study. Mike Parquette, Comprehensive Planning Manager MVPC Regional Planning Day June 20, 2013 Regional 311 System Development Feasibility Study Mike Parquette, Comprehensive Planning Manager MVPC Regional Planning Day June 20, 2013 MVPC 311 Feasibility Assessment for Merrimack Valley Communities

More information

Department of Homeland Security Customs and Border Protection. Center of Excellence and Expertise

Department of Homeland Security Customs and Border Protection. Center of Excellence and Expertise Department of Homeland Security Customs and Border Protection Centers Pharmaceuticals, of Excellence Health and and Chemicals Expertise Center of Excellence and Expertise 1 2 What are Centers of Excellence

More information

FAQ 1-4M9MLY Banner Supported Compiler Versions

FAQ 1-4M9MLY Banner Supported Compiler Versions FAQ 1-4M9MLY Banner Supported Compiler Versions This note provides a list of the latest SunGard Higher Education supported versions for Banner Pro*C and Pro*COBOL. If you have a specific version which

More information

ensync: Your Certified Oracle Partner

ensync: Your Certified Oracle Partner ensync: Your Certified Oracle Partner Oracle PL/SQL Programming for IFS Applications Course Syllabus Course Purpose This course will give application developers and report writers the skills to create

More information

CS2 Current Technologies Note 1 CS2Bh

CS2 Current Technologies Note 1 CS2Bh CS2 Current Technologies Note 1 Relational Database Systems Introduction When we wish to extract information from a database, we communicate with the Database Management System (DBMS) using a query language

More information

Access - Introduction to Queries

Access - Introduction to Queries Access - Introduction to Queries Part of managing a database involves asking questions about the data. A query is an Access object that you can use to ask the question(s). The answer is contained in the

More information

CS2 Current Technologies Lecture 2: SQL Programming Basics

CS2 Current Technologies Lecture 2: SQL Programming Basics T E H U N I V E R S I T Y O H F R G E D I N B U CS2 Current Technologies Lecture 2: SQL Programming Basics Dr Chris Walton (cdw@dcs.ed.ac.uk) 4 February 2002 The SQL Language 1 Structured Query Language

More information

All King County Summary Report

All King County Summary Report September, 2016 MTD MARKET UPDATE Data Current Through: September, 2016 18,000 16,000 14,000 12,000 10,000 8,000 6,000 4,000 2,000 0 Active, Pending, & Months Supply of Inventory 15,438 14,537 6.6 6.7

More information

Business Wireline Customer Satisfaction Increases with Solid Communications, J.D. Power Finds

Business Wireline Customer Satisfaction Increases with Solid Communications, J.D. Power Finds Business Wireline Customer Satisfaction Increases with Solid Communications, Finds COSTA MESA, Calif.: 12 July 2018 Overall satisfaction remains high among business wireline users when helpful information

More information

Cybersecurity is a Team Sport

Cybersecurity is a Team Sport Cybersecurity is a Team Sport Cyber Security Summit at Loyola Marymount University - October 22 2016 Dr. Robert Pittman, CISM Chief Information Security Officer National Cyber Security Awareness Month

More information

DUE: CD_NUMBER TITLE PRODUCER YEAR 97 Celebrate the Day R & B Inc Holiday Tunes for All Tunes are US 2004

DUE: CD_NUMBER TITLE PRODUCER YEAR 97 Celebrate the Day R & B Inc Holiday Tunes for All Tunes are US 2004 CIS 207 Oracle - Database Programming and SQL HOMEWORK: # 12 DUE: Run the following queries in Oracle Application Express. Paste a copy of each query Into this word document below the questions, save and

More information

Piecewise Functions. ACCOUNTING The Internal Revenue Service estimates that taxpayers. Single Individual Income Tax

Piecewise Functions. ACCOUNTING The Internal Revenue Service estimates that taxpayers. Single Individual Income Tax 1-7 BJECTIVE Identify and graph piecewise functions including greatest integer, step, and absolute value functions. Piecewise Functions ACCUNTING The Internal Revenue Service estimates that tapayers who

More information

Figure 1: Relationship among Three Entities/Tables

Figure 1: Relationship among Three Entities/Tables Creating a Relational Database in Access Farrokh Alemi, Ph.D. The objective of this note is to help you understand how a relational database is organized as a collection of tables, linked to each other.

More information

Interested in learning more? Global Information Assurance Certification Paper. Copyright SANS Institute Author Retains Full Rights

Interested in learning more? Global Information Assurance Certification Paper. Copyright SANS Institute Author Retains Full Rights Global Information Assurance Certification Paper Copyright SANS Institute Author Retains Full Rights This paper is taken from the GIAC directory of certified professionals. Reposting is not permited without

More information

Maximo 76 Cognos Dimensions

Maximo 76 Cognos Dimensions IBM Tivoli Software Maximo Asset Management Version 7.6 Releases Maximo 76 Cognos Dimensions Application Example Pam Denny Maximo Report Designer/Architect CONTENTS Revision History... iii 1 Overview...

More information

New Listings. Bullock Russell Market Area. 300 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec

New Listings. Bullock Russell Market Area. 300 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec New Listings Bullock Russell Market Area 1200 1100 1000 900 800 700 600 500 400 300 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec 2014 2015 2016 2017 2018 Closed Sales Bullock Russell Market Area 1000

More information

Database Design and Relational Theory: Normal Forms and All That Jazz C.J. Date

Database Design and Relational Theory: Normal Forms and All That Jazz C.J. Date Database Design and Relational Theory: Normal Forms and All That Jazz C.J. Date 278 pages 1449330207, 9781449330200 "O'Reilly Media, Inc.", 2012 2012 Database Design and Relational Theory: Normal Forms

More information

Freight Industry Outlook

Freight Industry Outlook Freight Industry Outlook St. Louis Regional Freightway The Port Working Group Monthly Meeting, April 6, 2016 1 Our conversation today Regions across the United States and North America Peer Metropolitan

More information

Installation Instructions

Installation Instructions Please read all instructions before installing SPECIFICATIONS Voltage... 120VAC, 60Hz Load (Single Pole) @120VAC...0-800W tungsten or ballast, 1/6HP Environment... Indoor Use Only Operating Temperature...32

More information

Translation of ER-diagram into Relational Schema. Dr. Sunnie S. Chung CIS430/530

Translation of ER-diagram into Relational Schema. Dr. Sunnie S. Chung CIS430/530 Translation of ER-diagram into Relational Schema Dr. Sunnie S. Chung CIS430/530 Learning Objectives Define each of the following database terms 9.2 Relation Primary key Foreign key Referential integrity

More information

Seattle (NWMLS Areas: 140, 380, 385, 390, 700, 701, 705, 710) Summary

Seattle (NWMLS Areas: 140, 380, 385, 390, 700, 701, 705, 710) Summary September, 2016 MTD MARKET UPDATE Data Current Through: September, 2016 (NWMLS Areas: 140, 380, 385, 390,, 701, 705, 710) Summary Active, Pending, & Months Supply of Inventory 5,000 4,500 4,000 3,500 4,091

More information

24/7 Locksmith Glendale

24/7 Locksmith Glendale 1 of 4 9/14/2010 2:10 PM sign in with facebook join sign in Health & Medical Restaurants Beauty Home & Garden All Categories follow us learn about fundraisers Glendale, AZ > Home Repair & Service > Locksmiths

More information

RELATIONAL DATABASE DESIGN. Basic Concepts

RELATIONAL DATABASE DESIGN. Basic Concepts Basic Concepts a database is an collection of logically related records or files a relational database stores its data in 2-dimensional tables a table is a two-dimensional structure made up of rows (tuples,

More information

Urban Land Institute A Bend in the Road

Urban Land Institute A Bend in the Road Urban Land Institute A Bend in the Road Brian Beaulieu CEO 216 Forecast Results 2 Duration Accuracy US GDP 15 99.1% US Ind. Prod. 1 99.9% Eur Ind. Prod. 15 99.2% Canada Ind Prod 15 99.6% China Ind Prod

More information

CSE-3421: Exercises. Winter 2011 CSE-3421 Exercises p. 1 of 18

CSE-3421: Exercises. Winter 2011 CSE-3421 Exercises p. 1 of 18 Winter 2011 CSE-3421 Exercises p. 1 of 18 CSE-3421: Exercises 1. Independence Answer #1.2 (page 23) from the textbook: What is logical data independence and why is it important? A short paragraph is sufficient.

More information

Cmeresources Pance Study Guide

Cmeresources Pance Study Guide Cmeresources Pance Study Guide If looking for the book Cmeresources pance study guide in pdf form, then you've come to the loyal site. We furnish the full version of this ebook in DjVu, txt, doc, epub,

More information

CSC 337. Database Design and More Commands. Rick Mercer. https://www.database-genius.com/

CSC 337. Database Design and More Commands. Rick Mercer. https://www.database-genius.com/ CSC 337 https://www.database-genius.com/ Database Design and More Commands Rick Mercer Relational Data The R is RDBMS A relational data base spreads data across tables Data is joined using a key common

More information

Seattle (NWMLS Areas: 140, 380, 385, 390, 700, 701, 705, 710) Summary

Seattle (NWMLS Areas: 140, 380, 385, 390, 700, 701, 705, 710) Summary October, 2016 MTD MARKET UPDATE Data Current Through: October, 2016 (NWMLS Areas: 140, 380, 385, 390,, 701, 705, 710) Summary Active, Pending, & Months Supply of Inventory 4,500 4,000 3,500 4,197 4,128

More information

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES GROUP COMPUTING TECHNOLOGY SEMESTER ONE EXAMINATION 2017/2018 DATABASE THEORY & PRACTICE MODULE NO: CPU5002

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES GROUP COMPUTING TECHNOLOGY SEMESTER ONE EXAMINATION 2017/2018 DATABASE THEORY & PRACTICE MODULE NO: CPU5002 [CRT01] UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES GROUP COMPUTING TECHNOLOGY SEMESTER ONE EXAMINATION 2017/2018 DATABASE THEORY & PRACTICE MODULE NO: CPU5002 Date: Monday 15 th January 2018 Time: 10:00

More information

DESCRIPTION OF GLOBAL PLANS

DESCRIPTION OF GLOBAL PLANS 1200 Arkansas Rd. West Monroe. LA 71291--Phone: 877-327-6801 Fax: 888-397-2622 DESCRIPTION OF GLOBAL PLANS STATES: AL-AR-FL-GA-IL-IN-KS-KY-LA-MI-MO-MS-NE-NC-OH-SC-TN-TX-WI-WV AT&T (Bell South & Southwestern

More information

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES GROUP COMPUTING TECHNOLOGY SEMESTER ONE EXAMINATION 2018/2019 DATABASE THEORY & PRACTICE MODULE NO: CPU5002

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES GROUP COMPUTING TECHNOLOGY SEMESTER ONE EXAMINATION 2018/2019 DATABASE THEORY & PRACTICE MODULE NO: CPU5002 [CRT05] UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES GROUP COMPUTING TECHNOLOGY SEMESTER ONE EXAMINATION 2018/2019 DATABASE THEORY & PRACTICE MODULE NO: CPU5002 Date: Monday 14 th January 2019 Time: 10:00

More information

Distribution. Mailing List Breakdown. Central/Waterfront 1,579 1,069 1,570. Mid 2,230 2,150. Wanchai/Tai Hang/ Happy Valley 1,761

Distribution. Mailing List Breakdown. Central/Waterfront 1,579 1,069 1,570. Mid 2,230 2,150. Wanchai/Tai Hang/ Happy Valley 1,761 About us Hong Kong Dollarsaver is a monthly publication being mailed and emailed out to over 21,000 subscribers in Hong Kong. 5000 copies are available to pickup from selected restaurants, retail shops

More information

Seattle (NWMLS Areas: 140, 380, 385, 390, 700, 701, 705, 710) Summary

Seattle (NWMLS Areas: 140, 380, 385, 390, 700, 701, 705, 710) Summary November, 2016 MTD MARKET UPDATE Data Current Through: November, 2016 (NWMLS Areas: 140, 380, 385, 390,, 701, 705, 710) Summary 4,000 3,500 3,000 2,500 2,000 1,500 1,000 500 0 Active, Pending, & Months

More information

IBM ServicePac Warranty Service Upgrade (WSU)

IBM ServicePac Warranty Service Upgrade (WSU) IBM Maintenance Services ServicePac for Warranty and Maintenance Options IBM ServicePac Warranty Service Upgrade (WSU) Supported Products January 24, 2012 IBM ServicePac Warranty Service Upgrade Post-warranty

More information

Course Title: Introduction to Database Management System Course Code: CSIT116 Course Level: UG Course Credits:04 L T P/ S SW/F W

Course Title: Introduction to Database Management System Course Code: CSIT116 Course Level: UG Course Credits:04 L T P/ S SW/F W Course Title: Introduction to Database Management System Course Code: CSIT116 Course Level: UG Course Credits:04 Course Objectives: The objectives of this course is to: To expose the students to the fundamentals

More information

Asia Key Economic and Financial Indicators

Asia Key Economic and Financial Indicators ASEAN Brunei (BN) Cambodia (KH) Indonesia () Laos (LA) Malaysia () Myanmar (MM) Philippines () Singapore () Thailand () Vietnam () East Asia China (CN) Hong Kong (HK) Japan (JP) South Korea (KR) Taiw an

More information

Asia Key Economic and Financial Indicators

Asia Key Economic and Financial Indicators ASEAN Brunei (BN) Cambodia (KH) Indonesia () Laos (LA) Malaysia () Myanmar (MM) Philippines () Singapore () Thailand () Vietnam () East Asia China (CN) Hong Kong (HK) Japan (JP) South Korea (KR) Taiw an

More information