Oracle Database 10g SQL

Size: px
Start display at page:

Download "Oracle Database 10g SQL"

Transcription

1 Oracle Database 10g SQL

2 Oracle Database 10g SQL GROUPING SETS... 6 NULL... 7 ROLLUP... 8 ROLLUP... 8 ROLLUP... 9 CUBE CUBE CUBE GROUP BY GROUPING SET GROUPING_ID GROUP_ID Oracle Database 10g SQL 2

3 Oracle Database 10g SQL GROUP BY SQL Oracle SQL SQL SELECT GROUP BY CUBE ROLLUP GROUPING SETS Oracle Oracle Database 10g GROUP BY Oracle SQL Analytic SQL Features in Oracle Database 10g SQL 3

4 Oracle Database 10g Oracle Database 10g SQL The SQL Model Clause of Oracle Database 10g Oracle Database 10g SQL Oracle OLAP Option OLAP Option to Oracle Database 10g Oracle Database 10g OLAP Oracle Technology Network SQL Oracle SQL GROUP BY SQL Oracle Database 10g GROUP BY 1 GROUP BY 1 GROUP BY GROUPING SETS CUBE ROLLUP ANSI SQL-99 GROUP BY Oracle Database 10g SQL 4

5 GROUPING SETS ROLLUP CUBE OLAP GROUP BY Time Department Region 3 Time Department Video Sales Video Rentals Region East West Central Region Department Department Totals Video Rental Profit Video Sales Profit Central 82,000 85, ,000 East 101, , ,000 West 96,000 97, ,000 Regional Totals 279, , ,000 6 Region Department SUM GROUP BY 5 1 Video Rental Profit 279,000 East 238, Region Department GROUP BY 1 GROUP BY GROUP BY 4 GROUP BY Region Department GROUP BY Region GROUP BY Department GROUP BY Oracle Database 10g SQL 5

6 1 SELECT GROUP BY 1 UNION ALL UNION ALL GROUPING SETS GROUP BY GROUPING SETS GROUPING SETS SQL 3 Time, Region, Department Time, Department Region, Department SELECT Time, Region, Department, sum(profit) FROM Sales GROUP BY GROUPING SETS ((Time, Region, Department), (Time,Department), (Region,Department)); Time Region Department Profit 2003 Central VideoRental 75, Central VideoSales 74, East VideoRental 89, East VideoSales 115, West VideoRental 87, West VideoSales 86, [NULL] VideoRental 251, [NULL] VideoSales 275, Central VideoRental 82, Central VideoSales 85, East VideoRental 101, East VideoSales 137, West VideoRental 96, West VideoSales 97, [NULL] VideoRental 279, [NULL] VideoSales 319,000 [NULL] Central VideoRental 157,000 [NULL] Central VideoSales 159,000 Oracle Database 10g SQL 6

7 Time Region Department Profit [NULL] East VideoRental 190,000 [NULL] East VideoSales 252,000 [NULL] West VideoRental 183,000 [NULL] West VideoSales 183,000 UNION ALL SELECT Time, Region, Department, sum(profit) FROM salestable GROUP BY year, region, product UNION ALL SELECT Time, NULL, Department, sum(profit) FROM salestable GROUP BY Time, Department UNION ALL SELECT NULL, Region, Department, sum(profit) FROM salestable GROUP BY Region, Product; SQL 3 Oracle 1 NULL GROUP BY NULL NULL GROUPING SETS NULL Region 7 NULL 2003 Video Rental NULL NULL GROUPING NULL Oracle Oracle Database 10g SQL 7

8 ROLLUP ROLLUP ROLLUP ROLLUP ROLLUP SELECT... GROUP BY ROLLUP( <grouping column reference list> ) ROLLUP GROUP BY 1 ROLLUP n +1 ROLLUP Time Region Department n=3 4 ROLLUP GROUPING SET ROLLUP (a, b, c) GROUPING SETS ( (a, b, c), (a, b), (a), ( ) ) ( ) ROLLUP ROLLUP SELECT Time, Region, Department, sum(profit) AS Profit FROM sales GROUP BY ROLLUP(Time, Region, Dept) Time Region Dept : ROLLUP GROUP BY Time Region : Time Region Department Time : Time Region Department 2 : Oracle Database 10g SQL 8

9 Time Region Department Profit 2003 Central VideoRental 75, Central VideoSales 74, Central [NULL] 149, East VideoRental 89, East VideoSales 115, East [NULL] 204, West VideoRental 87, West VideoSales 86, West [NULL] 173, [NULL] [NULL] 526, Central VideoRental 82, Central VideoSales 85, Central [NULL] 167, East VideoRental 101, East VideoSales 137, East [NULL] 238, West VideoRental 96, West VideoSales 97, West [NULL] 193, [NULL] [NULL] 598,000 [NULL] [NULL] [NULL] 1,124,000 ROLLUP ROLLUP ROLLUP ROLLUP year, month, day ROLLUP country, state, city ROLLUP ROLLUP ROLLUP 1 ROLLUP 279, ,000 ROLLUP Time, Region, Department ROLLUP ROLLUP Time, Department, Region CUBE Oracle Database 10g SQL 9

10 CUBE CUBE 1 CUBE CUBE 1 SELECT CUBE SELECT... GROUP BY CUBE ( <grouping column reference list> ) CUBE CUBE CUBE Time, Region, Department ROLLUP CUBE n 2n ROLLUP CUBE GROUPING SET CUBE(a, b, c) GROUPING SETS ((a, b, c), (a, b), (a, c), (b, c), (a), (b), (c) ()) CUBE 3 CUBE SELECT Time, Region, Department, SUM(Profit) AS Profit FROM sales GROUP BY CUBE (Time, Region, Dept); CUBE ROLLUP 4 Time, Region, Dept Time, Region Time Region (Dept Time, Dept Region, Dept CUBE CUBE ROLLUP CUBE CUBE 1 month, state, product 3 year, month, day Oracle Database 10g SQL 10

11 17 CUBE 1 GROUP BY ROLLUP CUBE SELECT ROLLUP SELECT Year, Quarter, Month, SUM(Revenues) AS Revenues FROM Revenues GROUP BY ROLLUP(Year, Quarter, Month); Year Quarter Month Revenues 2004 Winter Jan 55, Winter Feb 64, Winter March 71, Winter [NULL] 190, Spring April 75, Spring May 86, Spring June 88, Spring [NULL] 249, Summer July 91, Summer August 87, Summer September 101, Summer [NULL] 279, Fall October 109, Fall November 114, Fall December 133, Fall [NULL] 356, [NULL] [NULL] 1,074,000 Oracle Database 10g SQL 11

12 1 ROLLUP ROLLUP (quarter, month) GROUP BY ROLLUP (year, (quarter, month), day) (quarter, month) SQL ROLLUP Quarter Month year quarter (year, quarter, month, day), (year, quarter, month), (year) () month year SELECT Year, Quarter, Month, SUM(Revenues) AS Revenues FROM Revenues GROUP BY ROLLUP(Year, (Quarter, Month)) Year Quarter Month Revenues 2004 Winter Jan 55, Winter Feb 64, Winter March 71, Spring April 75, Spring May 86, Sprint June 88, Summer July 91, Summer August 87, Summer September 101, Fall October 109, Fall November 114, Fall December 133, [NULL] [NULL] 1,074,000 Oracle Database 10g SQL 12

13 ROLLUP CUBE ROLLUP CUBE GROUPING SET ROLLUP CUBE GROUPING SET GROUP BY GROUPING SETS (a, b), GROUPING SETS (c, d) GROUPING SET a b 2 GROUPING SET c d (a, c) (a, d) (b, c) (b, d) SQL 1 CUBE ROLLUP ROLLUP 3 3 Oracle Database 10g SQL 13

14 Time year, quarter, month Product category, brand, item Geography region, state, city 3 ROLLUP ROLLUP GROUPING SET GROUP BY ROLLUP GROUP BY ROLLUP(year, quarter, month), ROLLUP(category, brand, item), ROLLUP(region, state, city) GROUP BY ROLLUP 4 ROLLUP by Time ROLLUP by Product ROLLUP by Geography year, quarter, month Category, brand, item region, state, city year, quarter Category, brand region, state year Category region all times all products all geographies SQL ROLLUP ROLLUP ROLLUP 64 SQL Oracle Database 10g SQL 14

15 GROUP BY 2 % 1 NULL NULL GROUP BY NULL NULL Oracle GROUPING GROUPING_ID GROUP_ID GROUPING 1 GROUP BY NULL 1 NULL GROUPING 1 NULL 0 GROUPING() SELECT SELECT [GROUPING(dimension column) ] GROUP BY {CUBE ROLLUP} GROUPING SELECT Time, Region, Department, SUM(Profit) AS Profit, GROUPING (Time) as T, GROUPING (Region) as R, GROUPING (Department) as D FROM Sales GROUP BY ROLLUP (Time, Region, Department); Time Region Department Profit T R D 2003 Central Video Rental 75, Central Video Sales 74, Central [NULL] 149, East Video Rental 89, East Video Sales 115, East [NULL] 204, West Video Rental 87, West Video Sales 86, Oracle Database 10g SQL 15

16 Time Region Department Profit T R D 2003 West [NULL] 173, [NULL] [NULL] 526, Central Video Rental 82, Central Video Sales 85, Central [NULL] 167, East Video Rental 101, East Video Sales 137, East [NULL] 238, West VideoRental 96, West VideoSales 97, West [NULL] 193, [NULL] [NULL] 598, [NULL] [NULL] [NULL] 1,124, T R D GROUPING "0 0 0" "0 0 1" 2 "0 1 1" "1 1 1" GROUPING HAVING GROUPING_ID GROUP BY GROUP BY GROUPING GROUPING GROUP BY GROUPING 4 GROUP BY 4 GROUPING SQL GROUPING_ID GROUPING_ID GROUP BY 1 GROUPING_ID 1 0 GROUP BY " " GROUPING_ID 10 CUBE(a, b) Oracle Database 10g SQL 16

17 GROUPING_ID a, b a b GROUPING_ID GROUP_ID GROUP BY GROUP_ID GROUP_ID 0 1 GROUP_ID GROUP_ID SELECT Region, State, sum(sales) as sum_sales, GROUPING_ID(state, region), GROUP_ID() FROM salestable GROUP BY GROUPING SETS (region, ROLLUP(region, state)); region, state region region region 2 GROUPING_ID GROUP_ID Region State sum_sales GROUPING_ID GROUP_ID E NY W CA E [NULL] E [NULL] W [NULL] W [NULL] [NULL] [NULL] Oracle Database 10g SQL 17

18 HAVING GROUP_ID() = 0 region MV Oracle Database 10g GROUP BY CUBE ROLLUP GROUPING SET 1 Oracle Database 10g ROLLUP ROLLUP CREATE MATERIALIZED VIEW mv AS SELECT productline, productfamily, productid, region, state, city, sum(sales) as sum_sales, grouping_id(productline, productfamily,productid,region,state,city) FROM salestable GROUP BY productline, ROLLUP(productfamily, productid), region, ROLLUP(state, city); SQL 9 1 productline, productfamily, productid, region, state, city productline, productfamily, productid, region, state productline, productfamily, productid, region productline, productfamily, region, state, city productline, productfamily, region, state productline, productfamily, region productline, region, state, city productline, region, state productline, region Oracle Database 10g SQL 18

19 Oracle Database Oracle Database 10g Release 2 Oracle ROLLUP CUBE GROUPING SET Oracle grouping_id SQL GROUP BY Oracle Database 10g SQL Oracle Database 10g Oracle Database 10g SQL 19

20 Oracle Database 10g SQL : John Haydu, Sankar Subramanian : Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A. : : : Copyright 2005, Oracle. All rights reserved. Oracle JD Edwards PeopleSoft Oracle Corporation

Analytic SQL Features in Oracle9i. An Oracle Technical White Paper December 2001

Analytic SQL Features in Oracle9i. An Oracle Technical White Paper December 2001 Analytic SQL Features in Oracle9i An Oracle Technical White Paper December 2001 Analytic SQL Features in Oracle9i Introduction... 3 Analytic Functions... 4 Analytic Functions Family List... 4 Inverse Percentile

More information

Advanced Data Management Technologies

Advanced Data Management Technologies ADMT 2017/18 Unit 10 J. Gamper 1/37 Advanced Data Management Technologies Unit 10 SQL GROUP BY Extensions J. Gamper Free University of Bozen-Bolzano Faculty of Computer Science IDSE Acknowledgements: I

More information

Oracle Database10g Release 2

Oracle Database10g Release 2 Oracle Database10g Release 2 2005 6 Oracle Database10g Release 2... 4... 4... 4 Oracle... 4 SQL... 6... 6... 6... 7... 7... 9... 9... 10 CUBE... 10... 11... 11... 11 OR... 12... 13... 14... 14... 16...

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

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

Data Warehousing and Data Mining SQL OLAP Operations

Data Warehousing and Data Mining SQL OLAP Operations Data Warehousing and Data Mining SQL OLAP Operations SQL table expression query specification query expression SQL OLAP GROUP BY extensions: rollup, cube, grouping sets Acknowledgements: I am indebted

More information

Tutorial 8 (Array I)

Tutorial 8 (Array I) Tutorial 8 (Array I) 1. Indicate true or false for the following statements. a. Every element in an array has the same type. b. The array size is fixed after it is created. c. The array size used to declare

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

Oracle 10g Oracle Net Services

Oracle 10g Oracle Net Services Oracle 10g Oracle Net Services 2005 5 Oracle Net Services... 3... 3 /... 4 Web... 4 Web Web.4... 5... 5... 7... 8... 8 InfiniBand... 8... 9... 10... 11 Connection Manager... 11... 12 Connection Manager...

More information

Multidimensional Queries

Multidimensional Queries Multidimensional Queries Krzysztof Dembczyński Intelligent Decision Support Systems Laboratory (IDSS) Poznań University of Technology, Poland Software Development Technologies Master studies, first semester

More information

Perceptive Enterprise Deployment Suite

Perceptive Enterprise Deployment Suite Perceptive Enterprise Deployment Suite Release Notes Version: 1.2.x Written by: Product Documentation, R&D Date: October 2014 2014 Perceptive Software. All rights reserved. Perceptive Software is a trademark

More information

Computer Grade 5. Unit: 1, 2 & 3 Total Periods 38 Lab 10 Months: April and May

Computer Grade 5. Unit: 1, 2 & 3 Total Periods 38 Lab 10 Months: April and May Computer Grade 5 1 st Term Unit: 1, 2 & 3 Total Periods 38 Lab 10 Months: April and May Summer Vacation: June, July and August 1 st & 2 nd week Day 1 Day 2 Day 3 Day 4 Day 5 Day 6 First term (April) Week

More information

Marketing Opportunities

Marketing Opportunities Email Marketing Opportunities Write the important dates and special events for your organization in the spaces below. You can use these entries to plan out your email marketing for the year. January February

More information

Optimizing and Simplifying Complex SQL with Advanced Grouping. Presented by: Jared Still

Optimizing and Simplifying Complex SQL with Advanced Grouping. Presented by: Jared Still Optimizing and Simplifying Complex SQL with Advanced Grouping Presented by: Jared Still About Me Worked with Oracle since version 7.0 Have an affinity for things Perlish, such as DBD::Oracle Working as

More information

Database Lab Queries. Fall Term 2017 Dr. Andreas Geppert

Database Lab Queries. Fall Term 2017 Dr. Andreas Geppert Database Lab Queries Fall Term 2017 Dr. Andreas Geppert geppert@acm.org Topics conceptual design logical design consistency constraints data manipulation queries transactions views stored procedures and

More information

Oracle Utilities Meter Data Management Business Intelligence

Oracle Utilities Meter Data Management Business Intelligence Oracle Utilities Meter Data Management Business Intelligence Data Mapping Guide Release 2.3.2 E23041-01 May 2011 Oracle Utilities Meter Data Management Business Intelligence Data Mapping Guide E23041-01

More information

SQL for Analysis, Reporting and Modeling

SQL for Analysis, Reporting and Modeling SQL for Analysis, Reporting and Modeling SQL - A Flexible and Comprehensive Framework for In-Database Analytics O R A C L E W H I T E P A P E R N O V E M B E R 2 0 1 6 Contents Data Analysis with SQL 1

More information

INFORMATION TECHNOLOGY SPREADSHEETS. Part 1

INFORMATION TECHNOLOGY SPREADSHEETS. Part 1 INFORMATION TECHNOLOGY SPREADSHEETS Part 1 Page: 1 Created by John Martin Exercise Built-In Lists 1. Start Excel Spreadsheet 2. In cell B1 enter Mon 3. In cell C1 enter Tue 4. Select cell C1 5. At the

More information

State Water Survey Division

State Water Survey Division THE CLIMATE OF ILLINOIS Lying midway between the Continental Divide and the Atlantic Ocean, and 500 miles north of the Gulf of Mexico, Illinois has a climate labeled as continental. Cold winters, and warm,

More information

Data Warehousing Introduction. Esteban Zimanyi Slides from Toon Calders

Data Warehousing Introduction. Esteban Zimanyi Slides from Toon Calders Data Warehousing Introduction Esteban Zimanyi ezimanyi@ulb.ac.be Slides from Toon Calders Course Organization Lectures on Tuesday 14:00 and Thursday 16:00 Check http://gehol.ulb.ac.be/ for room Most exercises

More information

Print and Online Editorial Calendar

Print and Online Editorial Calendar January 2014 Ad close: 12/2/13 Materials due: 12/5/13 Campus Security & Life Safety Mobile Apps Security Locks, Doors, and Hardware ID Cards Municipal Security Video Surveillance Locks FETC, Jan. 28-31,

More information

MIS2502: Data Analytics The Information Architecture of an Organization. Jing Gong

MIS2502: Data Analytics The Information Architecture of an Organization. Jing Gong MIS2502: Data Analytics The Information Architecture of an Organization Jing Gong gong@temple.edu http://community.mis.temple.edu/gong What Do You Do With Data? Gather Retrieve Interpret The Information

More information

NMOSE GPCD CALCULATOR

NMOSE GPCD CALCULATOR NMOSE CALCULATOR It should be noted that all the recorded data should be from actual metered results and should not include any estimates. Gallons per Capita - v2.4 Beta Release Date: Mar, 16, 29 This

More information

Scheduled Base Rental Revenue 919, , , ,027 1,013,613 1,038,875 1,064,831 1,091, ,637 1,099,323 1,132,302 1,166,272

Scheduled Base Rental Revenue 919, , , ,027 1,013,613 1,038,875 1,064,831 1,091, ,637 1,099,323 1,132,302 1,166,272 Time : 10:30 am Page : 1 Schedule Of Prospective Cash Flow In Inflated Dollars for the Fiscal Year Beginning 9/1/2010 Potential Gross Revenue Base Rental Revenue $919,148 $941,812 $965,099 $989,027 $1,013,613

More information

Monthly Indicators + 1.4% + 6.4% % Activity Overview New Listings Pending Sales. Closed Sales. Days on Market Until Sale. Median Sales Price

Monthly Indicators + 1.4% + 6.4% % Activity Overview New Listings Pending Sales. Closed Sales. Days on Market Until Sale. Median Sales Price Monthly Indicators 2018 Last year, U.S. consumers seemed to be operating with a renewed but cautious optimism. The stock market was strong, wages were edging upwards and home buying activity was extremely

More information

Testing Contact and Response Strategies to Improve Response in the 2012 Economic Census

Testing Contact and Response Strategies to Improve Response in the 2012 Economic Census Testing Contact and Response Strategies to Improve Response in the 2012 Economic Census Erica Marquette Michael Kornbau U.S. Census Bureau* Prepared for FCSM November 4-6, 2013 *The views expressed in

More information

CARIBBEAN TOURISM ORGANIZATION LATEST STATISTICS 2011

CARIBBEAN TOURISM ORGANIZATION LATEST STATISTICS 2011 CARIBBEAN TOURISM ORGANIZATION LATEST STATISTICS 2011 April 11, 2013 Destination Table 1: Tourist (Stop-over) Arrivals in 2011 Period Tourist Arrivals % Change Overall Winter# Summer# Anguilla Jan-Dec

More information

Data Warehousing and Data Mining OLAP Operations

Data Warehousing and Data Mining OLAP Operations Data Warehousing and Data Mining OLAP Operations SQL table expression query specification query expression OLAP GROUP BY extensions: rollup, cube, grouping sets SQL for analysis and reporting: ranking,

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

COMP33111 Lecture 3. Plan. Aims COMP33111, 2012/ Introduction to data analytics and on-line analytical processing (OLAP)

COMP33111 Lecture 3. Plan. Aims COMP33111, 2012/ Introduction to data analytics and on-line analytical processing (OLAP) COMP33111 Lecture 3 Introduction to data analytics and on-line analytical processing (OLAP) Goran Nenadic School of Computer Science 1 Plan Lecture today: Data analytics and OLAP Tutorial 3: Understanding

More information

Oracle FLEXCUBE Universal Banking Development of Dashboard Forms

Oracle FLEXCUBE Universal Banking Development of Dashboard Forms Oracle FLEXCUBE Universal Banking 12.0.2 August 2013 1 Table of Contents 1 Preface... 3 1.1 Audience... 3 1.2 Related Documents... 3 2 Introduction... 4 3 Creating Dashboard Screen... 4 3.1 Preferences...

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

Managing Metadata with Oracle Data Integrator. An Oracle Data Integrator Technical Brief Updated December 2006

Managing Metadata with Oracle Data Integrator. An Oracle Data Integrator Technical Brief Updated December 2006 Managing Metadata with Oracle Data Integrator An Oracle Data Integrator Technical Brief Updated December 2006 Managing Metadata with Oracle Data Integrator: An Oracle Data Integrator Technical Brief Metadata

More information

CALENDAR OF FILING DEADLINES AND SEC HOLIDAYS

CALENDAR OF FILING DEADLINES AND SEC HOLIDAYS CALENDAR OF FILING S AND SEC HOLIDAYS INFORMATION IN THIS CALENDAR HAS BEEN OBTAINED BY SOURCES BELIEVED TO BE RELIABLE, BUT CANNOT BE GUARANTEED FOR ACCURACY. PLEASE CONSULT WITH PROFESSIONAL COUNSEL

More information

Designing Adhoc Reports

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

More information

OLAP2 outline. Multi Dimensional Data Model. A Sample Data Cube

OLAP2 outline. Multi Dimensional Data Model. A Sample Data Cube OLAP2 outline Multi Dimensional Data Model Need for Multi Dimensional Analysis OLAP Operators Data Cube Demonstration Using SQL Multi Dimensional Data Model Multi dimensional analysis is a popular approach

More information

HPE Secur & HPE Secur Cloud

HPE Secur & HPE Secur Cloud HPE SecureMail & HPE SecureMail Cloud Product Lifecycle Status October 27, 207 207 HPE Security - Data Security INTRODUCTION HPE SecureMail Product Lifecycle Status The Product Lifecycle Status lists the

More information

DeVry University Houston

DeVry University Houston DeVry University Houston Faculty Orientation Manual IN THIS SECTION: Teaching Contracts & Payment Teaching Contracts Payment Terms Change of Address or Contact Information Section 2 Tax Information TEACHING

More information

Quarterly Sales (in millions) FY 16 FY 15 FY 14 Q1 $706.8 $731.1 $678.5 Q Q Q

Quarterly Sales (in millions) FY 16 FY 15 FY 14 Q1 $706.8 $731.1 $678.5 Q Q Q The following represents historical unaudited financial and statistical information regarding MSC s operations. MSC does not undertake any obligation to update any of the information presented below to

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

FY17 Army DACM Program Announcement Timelines

FY17 Army DACM Program Announcement Timelines FY17 Army DACM Program Announcement Timelines TUITION ASSISTANCE PROGRAMS Program Name: Naval Postgraduate School Master of Science in Program Management or Systems Engineering http://asc.army.mil/web/career

More information

MEDIA KIT & RATE CARD THESHEAF. UNIVERSITYof SASKATCHEWAN thesheaf.com

MEDIA KIT & RATE CARD THESHEAF. UNIVERSITYof SASKATCHEWAN thesheaf.com 8.9 MEDIA KIT & RATE CARD THESHEAF UNIVERSITYof SASKATCHEWAN ROOM 08 MEMORIAL UNION BUILDING, SASKATOON, SK S7N 5B2 306 966 8688 ads@thesheaf.com thesheaf.com 8/9 Publishing Schedule May 8 June 8 July

More information

Intel Cache Acceleration Software for Windows* Workstation

Intel Cache Acceleration Software for Windows* Workstation Intel Cache Acceleration Software for Windows* Workstation Release 3.1 Release Notes July 8, 2016 Revision 1.3 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

Common Mistakes with Functions. CSE 1310 Introduction to Computers and Programming Vassilis Athitsos University of Texas at Arlington

Common Mistakes with Functions. CSE 1310 Introduction to Computers and Programming Vassilis Athitsos University of Texas at Arlington Common Mistakes with Functions CSE 1310 Introduction to Computers and Programming Vassilis Athitsos University of Texas at Arlington 1 Common Mistakes with Functions Printing instead of returning. Returning

More information

Pulse of The Industry Periodicals Volume PAG Initiatives. Incentives & Promotions. Open Discussion. Agenda

Pulse of The Industry Periodicals Volume PAG Initiatives. Incentives & Promotions. Open Discussion. Agenda November 19, 2014 Agenda Pulse of The Industry Periodicals Volume PAG Initiatives Incentives & Promotions 2014 Promotions Saturation & High Density Incentive Every Door Direct Mail Alternate Postage Proposed

More information

April 1, 2018 ATSC Attachment 1 Page 1 of 12 LG Electronics Inc.

April 1, 2018 ATSC Attachment 1 Page 1 of 12 LG Electronics Inc. April 1, 2018 ATSC Attachment 1 Page 1 of 12 LG Electronics Inc. CA 2,322,909 CA 2,482,015 CA 2,575,035 CA 2,575,037 CA 2,575,038 CA 2,628,000 CA 2,629,277 CA 2,630,140 CA 2,688,848 CA 2,688,849 CA 2,688,851

More information

DATE OF BIRTH SORTING (DBSORT)

DATE OF BIRTH SORTING (DBSORT) DATE OF BIRTH SORTING (DBSORT) Release 3.1 December 1997 - ii - DBSORT Table of Contents 1 Changes Since Last Release... 1 2 Purpose... 3 3 Limitations... 5 3.1 Command Line Parameters... 5 4 Input...

More information

Miscellaneous Calendar 2017

Miscellaneous Calendar 2017 1/3/2017 Go to National Security and Trust to inventory Registrar Office records. 1/3/2017 Review student issues files for clean-up. 1/3/2017 201710 Send email to Web Services to change the date on the

More information

Reverse Segmentable GainMaker Node OIB Shorting Condition Technical Bulletin

Reverse Segmentable GainMaker Node OIB Shorting Condition Technical Bulletin Reverse Segmentable GainMaker Node OIB Shorting Condition Technical Bulletin Overview Reverse Segmentable GainMaker Nodes that were manufactured and shipped prior to August 2007 have the potential for

More information

April 1, 2019 ATSC Attachment 1 Page 1 of 12 LG Electronics Inc.

April 1, 2019 ATSC Attachment 1 Page 1 of 12 LG Electronics Inc. April 1, 2019 ATSC Attachment 1 Page 1 of 12 LG Electronics Inc. CA 2,322,909 CA 2,482,015 CA 2,575,035 CA 2,575,037 CA 2,575,038 CA 2,628,000 CA 2,629,277 CA 2,630,140 CA 2,688,848 CA 2,688,849 CA 2,688,851

More information

MAP OF OUR REGION. About

MAP OF OUR REGION. About About ABOUT THE GEORGIA BULLETIN The Georgia Bulletin is the Catholic newspaper for the Archdiocese of Atlanta. We cover the northern half of the state of Georgia with the majority of our circulation being

More information

Highline Excel 2016 Class 09: Date Functions

Highline Excel 2016 Class 09: Date Functions Highline Excel 2016 Class 09: Date Functions Table of Contents Date Functions... 2 Examples of EOMONTH, EDATE and DATE functions:... 2 Fiscal Year... 3 Example of Data Set with Date Helper Columns, including

More information

hereby recognizes that Timotej Verbovsek has successfully completed the web course 3D Analysis of Surfaces and Features Using ArcGIS 10

hereby recognizes that Timotej Verbovsek has successfully completed the web course 3D Analysis of Surfaces and Features Using ArcGIS 10 3D Analysis of Surfaces and Features Using ArcGIS 10 Completed on September 5, 2012 3D Visualization Techniques Using ArcGIS 10 Completed on November 19, 2011 Basics of Map Projections (for ArcGIS 10)

More information

Apple Inc. US 6,587,904 US 6,618,785 US 6,636,914 US 6,639,918 US 6,718,497 US 6,831,928 US 6,842,805 US 6,865,632 US 6,944,705 US 6,985,981

Apple Inc. US 6,587,904 US 6,618,785 US 6,636,914 US 6,639,918 US 6,718,497 US 6,831,928 US 6,842,805 US 6,865,632 US 6,944,705 US 6,985,981 April 1, 2019 1394 Attachment 1 Page 1 of 7 Apple Inc. US 6,587,904 US 6,618,785 US 6,636,914 US 6,639,918 US 6,718,497 US 6,831,928 US 6,842,805 US 6,865,632 US 6,944,705 US 6,985,981 LG Electronics Inc.

More information

December 2017 Marketing & Communications Report

December 2017 Marketing & Communications Report DoorCounty.com - Web Site Visits (Sessions) 2015 84,622 75,713 94,730 120,683 119,876 185,326 212,189 184,422 149,937 108,034 46,080 44,448 1,426,060 2016 63,405 60,289 80,863 101,543 131,388 173,247 201,583

More information

MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY

MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY 2018 January 01 02 03 04 05 06 07 Public Holiday 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 Supplementary exam: Basic s, Grooming 27 28 29 30 31 01 02 03 04 05 06 Notes: 2018 February 29

More information

Arrays. Arrays (8.1) Arrays. One variable that can store a group of values of the same type. Storing a number of related values.

Arrays. Arrays (8.1) Arrays. One variable that can store a group of values of the same type. Storing a number of related values. Arrays Chapter 8 page 471 Arrays (8.1) One variable that can store a group of values of the same type Storing a number of related values o all grades for one student o all temperatures for one month o

More information

SQL Saturday Cork Welcome to Cork. Andrea Martorana Tusa T-SQL advanced: Grouping and Windowing

SQL Saturday Cork Welcome to Cork. Andrea Martorana Tusa T-SQL advanced: Grouping and Windowing SQL Saturday Cork Welcome to Cork Andrea Martorana Tusa T-SQL advanced: Grouping and Windowing Andrea Martorana Tusa T-SQL Advanced: Grouping and Windowing Speaker info First name: Andrea. Last name: Martorana

More information

ECHOtourism STATistics. Performance Report on Québec City Tourist Industry

ECHOtourism STATistics. Performance Report on Québec City Tourist Industry ECHOtourism STATistics Performance Report on Québec City Tourist Industry FEBRUARY 2018 ÉCHO tourism STAT istics Table of contents Responsibles for design and production 2 Highlights 3 Performance indicators

More information

Grade 4 Mathematics Pacing Guide

Grade 4 Mathematics Pacing Guide Jul 2014 ~ August 2014 ~ Sep 2014 1 2 3 4 5 6 7 8 9 10 11 12 14 15 16 17 Routines 19 Routines 20 Routines BOY 22 BOY 23 24 11 12 14 29 15 30 31 Notes: Found Online @ wwweverydaymathonlinecom 1 More Calendars

More information

Partner Presentation Faster and Smarter Data Warehouses with Oracle OLAP 11g

Partner Presentation Faster and Smarter Data Warehouses with Oracle OLAP 11g Partner Presentation Faster and Smarter Data Warehouses with Oracle OLAP 11g Vlamis Software Solutions, Inc. Founded in 1992 in Kansas City, Missouri Oracle Partner and reseller since 1995 Specializes

More information

Unit 1: Module 1 Quantitative Reasoning. Unit 1: Module 2 Algebraic Models. Unit 2: Module 3 Functions and Models. Unit 3: Module 5 Linear Functions

Unit 1: Module 1 Quantitative Reasoning. Unit 1: Module 2 Algebraic Models. Unit 2: Module 3 Functions and Models. Unit 3: Module 5 Linear Functions Fall Unit : Module Quantitative Reasoning Unit : Module 2 Algebraic Models Unit 2: Module 3 and Models Unit 3: Module 5 Linear Unit 3: Module 6 Forms of Linear Equations Unit 5: Module Solving Systems

More information

CARIBBEAN TOURISM ORGANIZATION LATEST STATISTICS 2006

CARIBBEAN TOURISM ORGANIZATION LATEST STATISTICS 2006 CARIBBEAN TOURISM ORGANIZATION LATEST STATISTICS 2006 April 12, 2013 Table 1: Tourist (Stop-over) Arrivals in 2006 Destination Period Tourist Arrivals % Change Overall Winter# Summer# Anguilla Jan-Dec

More information

CARIBBEAN TOURISM ORGANIZATION LATEST STATISTICS June 19, 2015

CARIBBEAN TOURISM ORGANIZATION LATEST STATISTICS June 19, 2015 CARIBBEAN TOURISM ORGANIZATION LATEST STATISTICS 2014 June 19, 2015 FINAL Destination Table 1: Tourist (Stop-over) Arrivals in 2014 Period Tourist Arrivals % Change Overall Winter# Summer# Anguilla Jan-Dec

More information

collection of data that is used primarily in organizational decision making.

collection of data that is used primarily in organizational decision making. Data Warehousing A data warehouse is a special purpose database. Classic databases are generally used to model some enterprise. Most often they are used to support transactions, a process that is referred

More information

Freedom of Information Act 2000 reference number RFI

Freedom of Information Act 2000 reference number RFI P. Norris By email to: xxxxxxxxxxxxxxxxxxxxxx@xxxxxxxxxxxxxx.xxm 02 November 2011 Dear P. Norris Freedom of Information Act 2000 reference number RFI20111218 Thank you for your request under the Freedom

More information

Data Warehousing Introduction. Toon Calders

Data Warehousing Introduction. Toon Calders Data Warehousing Introduction Toon Calders toon.calders@ulb.ac.be Course Organization Lectures on Tuesday 14:00 and Friday 16:00 Check http://gehol.ulb.ac.be/ for room Most exercises in computer class

More information

Acknowledgment. MTAT Data Mining. Week 7: Online Analytical Processing and Data Warehouses. Typical Data Analysis Process.

Acknowledgment. MTAT Data Mining. Week 7: Online Analytical Processing and Data Warehouses. Typical Data Analysis Process. MTAT.03.183 Data Mining Week 7: Online Analytical Processing and Data Warehouses Marlon Dumas marlon.dumas ät ut. ee Acknowledgment This slide deck is a mashup of the following publicly available slide

More information

GROUND FAULT CIRCUIT INTERUPTERS

GROUND FAULT CIRCUIT INTERUPTERS Title: GFCI Effective Date: 11/14/2014 Control Number: THG_0031 Revision Number: 1 Date: 10/21/2015 Annual Review Completed: 5/13/2015 GROUND FAULT CIRCUIT INTERUPTERS CONTENTS I. PURPOSE II. GENERAL REQUIREMENTS

More information

MAP OF OUR REGION. About

MAP OF OUR REGION. About About ABOUT THE GEORGIA BULLETIN The Georgia Bulletin is the Catholic newspaper for the Archdiocese of Atlanta. We cover the northern half of the state of Georgia with the majority of our circulation being

More information

Sequential Search (Searching Supplement: 1-2)

Sequential Search (Searching Supplement: 1-2) (Searching Supplement: 1-2) A sequential search simply involves looking at each item in an array in turn until either the value being searched for is found or it can be determined that the value is not

More information

Executive Steering Committee (ESC) Update Minnesota Eligibility Technology System (METS)

Executive Steering Committee (ESC) Update Minnesota Eligibility Technology System (METS) Executive Steering Committee (ESC) Update Minnesota Eligibility Technology System (METS) Deb Tibstra Director Application Services Division, MNIT Services @ DHS/MNsure December 5, 2017 12/05/2017 1 MNsure

More information

Arrays. What if you have a 1000 line file? Arrays

Arrays. What if you have a 1000 line file? Arrays Arrays Chapter 8 page 477 11/8/06 CS150 Introduction to Computer Science 1 1 What if you have a 1000 line file? Read in the following file and print out a population graph as shown below. The maximum value

More information

Andrea Martorana Tusa. T-SQL Advanced: Grouping and Windowing

Andrea Martorana Tusa. T-SQL Advanced: Grouping and Windowing Andrea Martorana Tusa T-SQL Advanced: Grouping and Windowing Sponsor Organizzatori GetLatestVersion. it Speaker info First name: Andrea. Last name: Martorana Tusa. Italian, working by Widex a danish company

More information

/Internet Random Moment Sampling. STATE OF ALASKA Department of Health and Social Services Division of Public Assistance

/Internet Random Moment Sampling. STATE OF ALASKA Department of Health and Social Services Division of Public Assistance E-mail/Internet Random Moment Sampling STATE OF ALASKA Department of Health and Social Services Division of Public Assistance RMS Training Objectives Goal: Upon completion of this training session, participants

More information

Arrays and Pointers (part 2) Be extra careful with pointers!

Arrays and Pointers (part 2) Be extra careful with pointers! Arrays and Pointers (part 2) CSE 2031 Fall 2011 23 October 2011 1 Be extra careful with pointers! Common errors: Overruns and underruns Occurs when you reference a memory beyond what you allocated. Uninitialized

More information

Evolving To The Big Data Warehouse

Evolving To The Big Data Warehouse Evolving To The Big Data Warehouse Kevin Lancaster 1 Copyright Director, 2012, Oracle and/or its Engineered affiliates. All rights Insert Systems, Information Protection Policy Oracle Classification from

More information

Technical Upgrade Guidance SEA->SIA migration

Technical Upgrade Guidance SEA->SIA migration Technical Upgrade Guidance SEA->SIA migration Oracle Siebel Customer Relationship Management Applications Siebel Industry-Driven CRM November 2011 This document is intended to outline our general product

More information

Sinusoidal Data Worksheet

Sinusoidal Data Worksheet Sinusoidal Data Worksheet West Coast Tidal Analysis: Fill in the following chart for the low tide and high tides per day for the researched two-day period (so four low tides and high tides all inter-distributed)

More information

2015 Editorial Calendar

2015 Editorial Calendar Media Kit Intellectual capital for the nation s capital. 201 Editorial Calendar ISSUE DATE AD CLOSING ISSUE DATE AD CLOSING JANUARY 12 1 26 Dec 31 8 1 22 JULY 6* 13 20 27 2 23 FEBRUARY MARCH APRIL MAY

More information

Processing of Very Large Data

Processing of Very Large Data Processing of Very Large Data Krzysztof Dembczyński Intelligent Decision Support Systems Laboratory (IDSS) Poznań University of Technology, Poland Software Development Technologies Master studies, first

More information

Published: December 15, 2017 Revised: December 15, 2017

Published: December 15, 2017 Revised: December 15, 2017 Market Participant Guide: SPP 2018 Congestion Hedging Published: December 15, 2017 Revised: December 15, 2017 Revision History Chart Version Revised By Description of Modifications Revision Date 1.0 Congestion

More information

Contents:

Contents: Contents: Conventional/REO/Short Sale Single Family Sold Sold Properties by Cities - Properties Sold Supply Inventory Median Price Comparison by Year www.swflrealtors.com Page #. Single Family & Condo

More information

KENYA 2019 Training Schedule

KENYA 2019 Training Schedule KENYA 2019 Training Schedule Monday Tuesday Wednesday Thursday Friday 4th Feb 5th Feb 6th Feb 7th Feb 8th Feb Using 11th Feb 12th Feb 13th Feb 14th Feb 15th Feb Using (cont...) Field Data Collection and

More information

Fast Complex BI Analysis with Oracle OLAP. Collaborate 2011 Orlando, April 11, 2011

Fast Complex BI Analysis with Oracle OLAP. Collaborate 2011 Orlando, April 11, 2011 Fast Complex BI Analysis with Oracle OLAP Collaborate 2011 Orlando, April 11, 2011 Dan Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com Vlamis Software Solutions, Inc. Founded in 1992

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

EACH MONTH CUTTING EDGE PEER REVIEW RESEARCH ARTICLES ARE PUBLISHED

EACH MONTH CUTTING EDGE PEER REVIEW RESEARCH ARTICLES ARE PUBLISHED EACH MONTH 14 16 CUTTING EDGE PEER REVIEW RESEARCH ARTICLES ARE PUBLISHED 2017 Advertising Rate Card Rate Card Effective Date: November 2015 2017 Closing Dates Month Ad Material Deadline January November

More information

Instruction How To Use Excel 2007 Pivot Table Example Data Source

Instruction How To Use Excel 2007 Pivot Table Example Data Source Instruction How To Use Excel 2007 Pivot Table Example Data Source Excel pivot tables allow you to group the spreadsheet or external data source by any of your data fields. The screen snap below shows a

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

Outline. CS520-6) Data Warehousing

Outline. CS520-6) Data Warehousing Outline 0) Course Info 1) Introduction 2) Data Preparation and Cleaning 3) Schema matching and mapping 4) Virtual Data Integration 5) Data Exchange 6) Data Warehousing 7) Big Data Analytics 8) Data Provenance

More information

Partitioning in Oracle Database 10g Release 2. An Oracle White Paper May 2005

Partitioning in Oracle Database 10g Release 2. An Oracle White Paper May 2005 Partitioning in Oracle Database 10g Release 2 An Oracle White Paper May 2005 Oracle Partitioning EXECUTIVE OVERVIEW Oracle Partitioning will enhance the manageability, performance, and availability of

More information

CIMA Asia. Interactive Timetable Live Online

CIMA Asia. Interactive Timetable Live Online CIMA Asia Interactive Timetable 2017 2018 Live Online Version 1 Information last updated 09 October 2017 Please note: Information and dates in this timetable are subject to change. CIMA Cert BA Course

More information

TREES Lecture 12 CS2110 Spring 2019

TREES Lecture 12 CS2110 Spring 2019 TREES Lecture 12 CS2110 Spring 2019 Announcements 2 Submit P1 Conflict quiz on CMS by end of day Wednesday. We won t be sending confirmations; no news is good news. Extra time people will eventually get

More information

6/5/ Michael Hojnicki Chief of Technology and Administrative Services

6/5/ Michael Hojnicki Chief of Technology and Administrative Services Technology Update 6/5/2018 - Michael Hojnicki Chief of Technology and Administrative Services Projects Completed in 2017 Open Checkbook Published Network & Phone Upgrade High Level Design Competitive Bid

More information

How to Use Dates in Crosstab Reports

How to Use Dates in Crosstab Reports How to Use Dates in Crosstab Reports Presenters James Salmon Marketing Manager James.Salmon@budgetingsolutions.co.uk Andy Ellis Senior BI Consultant Andy.Ellis@budgetingsolutions.co.uk Want to ask a question?

More information

COMPANY PROFILE. #532-1, Daesung D-Polis, 606, Seobusaet-gil, Geumcheon-gu, Seoul, Rep. of Korea Tel:

COMPANY PROFILE. #532-1, Daesung D-Polis, 606, Seobusaet-gil, Geumcheon-gu, Seoul, Rep. of Korea Tel: COMPANY PROFILE #532-1, Daesung D-Polis, 606, Seobusaet-gil, Geumcheon-gu, Seoul, Rep. of Korea Tel: +82-32-876-1780 +82-10-3467-0031 Contents Introduction History Business Organization Factory Capacity

More information

Superior Product Variants Software for Multi-Attribute Product Companies. An Oracle White Paper April 2004

Superior Product Variants Software for Multi-Attribute Product Companies. An Oracle White Paper April 2004 Superior Product Variants Software for Multi-Attribute Product Companies An Oracle White Paper April 2004 Superior Product Variants Software for Multi- Attribute Product Companies Streamlining Management

More information

Measurement and Tracking Awareness June 2011

Measurement and Tracking Awareness June 2011 Measurement and Tracking Awareness June 2011 1 2010-2011 Cooperative Awareness Program Goals and Measurement The below goals were based on a initial budget of $547,572, actual media spend was $418,483.

More information

Conditional Formatting

Conditional Formatting Microsoft Excel 2013: Part 5 Conditional Formatting, Viewing, Sorting, Filtering Data, Tables and Creating Custom Lists Conditional Formatting This command can give you a visual analysis of your raw data

More information

Douglas Hoffman. BACS, MSEE, MBA, ASQ Fellow, ASQ-CSQE, ASQ-CMQ/OE

Douglas Hoffman. BACS, MSEE, MBA, ASQ Fellow, ASQ-CSQE, ASQ-CMQ/OE Douglas Hoffman BACS, MSEE, MBA, ASQ Fellow, ASQ-CSQE, ASQ-CMQ/OE Publications 1, 2 Self-Verifying Data Pacific Northwest Software Quality Conference (PNSQC) October, 2012 Why Tests Don t Pass Conference

More information