COntext INterchange (COIN) Mediation Technology

Size: px
Start display at page:

Download "COntext INterchange (COIN) Mediation Technology"

Transcription

1 COntext INterchange (COIN) Mediation Technology Technology developed at MIT Sloan School of Management Exploitation by Mediation Technologies, Inc. by Allen Moulton Stuart Madnick Michael Siegel 1 Information Integration Challenge Lack of it costly and problematic Costs U.S. capital facilities industry $15.8 billion/year (NIST) Estimated cost $1 trillion worldwide Achieving it difficult, expensive 30-50% IT $$$ $100 M/yr in a large org. Simple example: US user is interested in products from South Korea and Turkey. South Korean vendors quote their prices in thousands of South Korea won (KRW, $1 is about 1000 KRW), not including taxes. Turkish vendors quote prices with taxes included in millions of Turkish lira (TRL, $1 is about 1,000,000 TRL). US user wants the comparison to be in US Dollars (USD) with taxes and Shipping and Handling included. Currently this usually requires considerable manual intervention and/or custom software. How can this information be integrated with the semantic differences automatically resolved? 2

2 Traditional approach 1 Brute Force Data Conversion For each combination of receivers and sources, implement data conversion software Widely used in ad-hoc integration 5 4 Costly to implement, and maintain 3 Traditional Approach 2 Global Data Standardization All organizations must agree on a global standard E.g., use kg for weight, cm for height, etc Legitimate reasons for not standardizing U.S. agent is used to lbs, ft, inches.. Other difficulties Agreeing means somebody needs to change existing system Difficult to maintain and enforce DoD case , aimed to standardize ~ 1M elements; managed to put 12,000 into repository, 4

3 Traditional Approach 3 Standardize Interchange Format Agreement on data formats for a predefined set of data elements exchanged at the interface between systems Drawbacks multiple standards, simultaneously and over time extensible standards result in different standards different interpretations and implementations semantic interoperability of internal enterprise systems with external standards Interchange standard examples COT EDI OFX IFX SWIFT MTF 5 Mediation Approach sources and receivers are autonomously designed and evolve autonomously reasoning uses declarative descriptions of source and receiver data semantics prepares a plan for combining sources and conversion components to meet receiver semantic requirements 6

4 Role Of $? CONTEXT VARIATIONS: - GEOGRAPHIC ( US vs. UK ) - FUNCTIONAL (CASH MGMT vs. LOANS ) - ORGANIZATIONAL ( CITIBANK vs. CHASE ) Data: Databases Web data 7 COIN Approach Concept: Length Meters Feet Shared Ontologies f() meters Conversion Libraries feet Management Administrator part length 17.0 Source Mediator Transformation Receiver select partlength from catalog where partno= 12AY select partlength/.3048 from catalog where partno= 12AY Source Auto-composition of conversion plan Receiver 8

5 COIN System Architecture SERVER PROCESSES MEDIATOR PROCESSES CLIENT PROCESSES Web Client WWW Gateway HTTPD-Daemon COIN Repository Mediator Optimizer Mediated Query SQL Compiler Datalog Query SQL Query SQL Query (cgi-scripts) HTTPD-Daemon N N Wrapper HTTPD-Daemon Executioner Optimized Query Plan Results ODBC-compliant Apps (e.g Microsoft Excel) ODBC-Driver HTTPD-Daemon Web-site Data Store for Intermediate Results 9 COIN Technology Status Basic research funded by DARPA (about $2M). MIT patented technologies (3 patents) Series of prototypes implemented Tested in variety of application settings Current technology ready to be made into commercial-grade software Research on extending context interchange mediation technology continues 10

6 MIT Patented Technology Patent number 5,913,214: "Data Extraction from World Web Pages" Filed: Aug. 8, 1996; Patent Issued: June 15, Patent number 5,953,716: "Querying Heterogeneous Data Sources Distributed over a Network Using Interchange" Filed: May 30, 1996; Patent Issued: Sept 14, Patent number 6,282,537: "Querying and Retrieving Semi-Structured Data from Heterogeneous Data Sources by Translating Structured Queries" Filed: Apr 6, 1999; Patent Issued: Aug. 28, COIN Application Case Studies Counter-terrorism intelligence integration Financial services information integration Insurance (intra-company context differences) Equity securities analysis Fixed income securities investment Medical supplies and logistics Weather and hotels Airfare, car rental & merged travel agent Disaster relief 12

7 Example: Counter-Terrorism Intelligence (CTI) Problem 3 different heights and weights reported for one individual because: src1 reports in US context using inches and pounds src2 reports in NATO context using meters and kilograms src3 reports in UK context using feet and stones SQL none Stage Naive Datalog SQL Translation Sensitive Datalog Execution Conflict Detection Mediation Result recid srcid person height weight 106 src2 Aleph Faruk src3 Aleph Faruk src3 Aleph Faruk src3 Aleph Faruk src1 Aleph Faruk CTI Domain Ontology place Place Event event Type event Date dateformat gmtoffset Country City geo Coord event Time timeformat gmtoffset country language city language geocoord RefFrame datum geoformat height Person weight person country Code airport lengthunit weightunit romanization System ctrycodestd aptsymtype Legend attribute modifier Entity semantic type 14

8 Detection of Semantic Conflicts Semantic Type weight height Semantic Type weight height Column Source Modifier source context cti_reports_usa(, _country, _countrycode, _city, _airport, _place, _weight weightunit c_usa : lb _eventtype, _eventdate, _eventtime, ) cti_reports_usa(, _country, _height _countrycode, _city, _airport, _place, lengthunit c_usa : in _eventtype, _eventdate, _eventtime, ) Column Source Modifier source context cti_reports_uk(, _country, _countrycode, _city, _airport, _place, _weight weightunit c_uk : stone _eventtype, _eventdate, _eventtime, ) cti_reports_uk(, _country, _countrycode, _city, _airport, _place, _height lengthunit c_uk : ft _eventtype, _eventdate, _eventtime, ) target context c_analyst : kg c_analyst : m target context c_analyst : kg c_analyst : m Conversion Function Conversion Function Semantic Type height Column Source Modifier _height source context cti_reports_nato(, _country, _countrycode, _city, _airport, _place, lengthunit c_nato : cm _eventtype, _eventdate, _eventtime, ) target context c_analyst : m Conversion Function 15 CTI Mediation Solution Solution Mediation finds semantic conflicts and rewrites the query in semantics needed by Analyst receiver (meters and kilograms) SQL c_analyst Stage Naive Datalog SQL Translation Sensitive Datalog Execution Conflict Detection Mediation Result recid srcid person height weight 106 src2 Aleph Faruk src3 Aleph Faruk src3 Aleph Faruk src3 Aleph Faruk src1 Aleph Faruk select cti_reports_usa.recid, cti_reports_usa.srcid, 'Aleph Faruk', (cti_reports_usa.height*unit_conv.unitfactor), (cti_reports_usa.weight*unit_conv2.unitfactor) from (select recid, country, countrycode, city, airport, place, geocoord, 'Aleph Faruk', height, weight, eventtype, eventdate, eventtime, srcid from cti_reports_usa where person='aleph Faruk') cti_reports_usa, (select 'in', 'm', UnitFactor from unit_conv where FrmUnit='in and ToUnit='m') unit_conv, (select 'lb', 'kg', UnitFactor from unit_conv where FrmUnit='lb' and ToUnit='kg') unit_conv2 union select cti_reports_uk.recid, cti_reports_uk.srcid, 'Aleph Faruk', (cti_reports_uk.height*unit_conv3.unitfactor), (cti_reports_uk.weight*unit_conv4.unitfactor) from (select recid, country, countrycode, city, airport, place, geocoord, 'Aleph Faruk', height, weight, eventtype, eventdate, eventtime, srcid from cti_reports_uk where person='aleph Faruk') cti_reports_uk, (select 'ft', 'm', UnitFactor from unit_conv where FrmUnit='ft' and ToUnit='m') unit_conv3, (select 'stone', 'kg', UnitFactor from unit_conv where FrmUnit='stone' and ToUnit='kg') unit_conv4 union select cti_reports_nato.recid, cti_reports_nato.srcid, 'Aleph Faruk', (cti_reports_nato.height*unit_conv5.unitfactor), cti_reports_nato.weight from (select 'cm', 'm', UnitFactor from unit_conv where FrmUnit='cm' and ToUnit='m') unit_conv5, (select recid, country, countrycode, city, airport, place, geocoord, 'Aleph Faruk', height, weight, eventtype, eventdate, eventtime, srcid from cti_reports_nato where person='aleph Faruk') cti_reports_nato 16

9 Fixed Income Securities Fixed Income Investment Portfolio Manager RECEIVER Portfolio Management Application System Domain Ontology Interchange Mediator SOURCES Security Details Security Valuations Portf olio Holdings Receiver Source s Bond Calculation Functions Receiver needs Autonomous sources provide RR AA BB CC DD EE price: price for a security in percent with fraction in 32nds price: price for a security in percent with decimal fraction price: nominal spread to Treasury yield curve in basis points coupon: coupon interest rate for a security in percent 10yr: point on Treasury yield curve in percent price: yield: rate: computes price from yield given coupon interest rate, etc. with price in percent and inputs in factor form 17

The Context Interchange Approach

The Context Interchange Approach COntext INterchange (COIN) System Demonstration Aykut Firat (aykut@mit.edu) M. Bilal Kaleem (mbilal@mit.edu) Philip Lee (philee@mit.edu) Stuart Madnick (smadnick@mit.edu) Allen Moulton (amoulton@mit.edu)

More information

September Semantic Information Integration in the Large: Adaptability, Extensibility, and Scalability of the Context Mediation Approach

September Semantic Information Integration in the Large: Adaptability, Extensibility, and Scalability of the Context Mediation Approach A research and education initiative at the MIT Sloan School of Management Semantic Information Integration in the Large: Adaptability, Extensibility, and Scalability of the Context Mediation Approach Paper

More information

Framework for the Analysis of the Adaptability, Extensibility, and Scalability of Semantic Information Integration and the Context Mediation Approach

Framework for the Analysis of the Adaptability, Extensibility, and Scalability of Semantic Information Integration and the Context Mediation Approach Framework for the Analysis of the Adaptability, Extensibility, and Scalability of Semantic Information Integration and the Context Mediation Approach Thomas Gannon, Stuart Madnick, Allen Moulton, Marwan

More information

Boston Chapter of The Data Warehousing Institute Towards Profitable, Coherent, Effective Data Quality Management

Boston Chapter of The Data Warehousing Institute Towards Profitable, Coherent, Effective Data Quality Management Boston Chapter of The Data Warehousing Institute Towards Profitable, Coherent, Effective Data Quality Management Framework for the Analysis of the Adaptability, Extensibility, and Scalability of Semantic

More information

Semantic Conflicts Reconciliation as a Viable Solution for Semantic Heterogeneity Problems

Semantic Conflicts Reconciliation as a Viable Solution for Semantic Heterogeneity Problems Semantic Conflicts Reconciliation as a Viable Solution for Semantic Heterogeneity Problems Walaa S. Ismail Faculty of Computers and Information, Information Systems Department, Helwan University Torky

More information

Knowledge Representation Architecture for Context Interchange Mediation: Fixed Income Securities Investment Examples

Knowledge Representation Architecture for Context Interchange Mediation: Fixed Income Securities Investment Examples Knowledge Representation Architecture for Context Interchange Mediation: Fixed Income Securities Investment Examples Allen Moulton, Stuart Madnick, Michael Siegel Sloan WP # 4169 CISL WP #01-05 May, 2001

More information

Knowledge Representation Architecture for Context Interchange Mediation: Fixed Income Securities Investment Examples

Knowledge Representation Architecture for Context Interchange Mediation: Fixed Income Securities Investment Examples Knowledge Representation Architecture for Context nterchange Mediation: Fixed ncome Securities nvestment Examples Allen Moulton Stuart E. Madnick Michael D. Siege1 MT Sloan School of Management amoulton

More information

Overcoming Ontological Conflicts in Information Integration

Overcoming Ontological Conflicts in Information Integration Overcoming Ontological Conflicts in Information Integration Aykut Firat, Stuart Madnick and Benjamin Grosof MIT Sloan School of Management {aykut,smadnick,bgrosof}@mit.edu Presentation for ICIS 2002 Barcelona,

More information

A Lightweight Ontology Approach to Scalable Interoperability

A Lightweight Ontology Approach to Scalable Interoperability A Lightweight Ontology Approach to Scalable Interoperability Hongwei Zhu, Stuart Madnick Massachusetts Institute of Technology Cambridge, MA USA {mrzhu, smadnick}@mit.edu Working Paper CISL# 2006-06 June

More information

Tools for Virtual Merging of Ecoin Applications and. Guidelines for Building Ecoin Ontologies

Tools for Virtual Merging of Ecoin Applications and. Guidelines for Building Ecoin Ontologies Tools for Virtual Merging of Ecoin Applications and Guidelines for Building Ecoin Ontologies Faisal R. Anwar Working Paper CISL# 2004-09 June 2004 Composite Information Systems Laboratory (CISL) Sloan

More information

Financial Information Integration In the Presence of Equational Ontological Conflicts

Financial Information Integration In the Presence of Equational Ontological Conflicts A research and education initiative at the MIT Sloan School of Management Financial Information Integration In the Presence of Equational Ontological Conflicts Paper 169 Aykut Firat Stuart Madnick Benjamin

More information

Context Interchange as a Scalable Solution to Interoperating Amongst Heterogeneous Dynamic Services (Web2004/ICIS)

Context Interchange as a Scalable Solution to Interoperating Amongst Heterogeneous Dynamic Services (Web2004/ICIS) Context Interchange as a Scalable Solution to Interoperating Amongst Heterogeneous Dynamic Services (Web2004/ICIS) Hongwei Zhu Stuart E. Madnick Working Paper CISL# 2004-16 October 2004 Composite Information

More information

Federal Reserve Bank of Chicago 22 nd Annual Economic Outlook Symposium. Automotive Outlook. Will Shearin December 5, 2008

Federal Reserve Bank of Chicago 22 nd Annual Economic Outlook Symposium. Automotive Outlook. Will Shearin December 5, 2008 Federal Reserve Bank of Chicago 22 nd Annual Economic Outlook Symposium Automotive Outlook Will Shearin December 5, 2008 Ability to Buy Leading Indicators Nov 07 Nov 08 Disposable Income Green Red Household

More information

DesCartes: A Continuum of Learning

DesCartes: A Continuum of Learning Ratios and Proportional Relationships Ratios and Proportional Relationships Ratios and Proportional Relationships Solves simple problems involving miles/kilometers per hour Converts between cups, pints,

More information

Processing Reimbursements in Kuali with a Disbursement Voucher Quick Expense (DVQE) document for travel and non-travel expenses

Processing Reimbursements in Kuali with a Disbursement Voucher Quick Expense (DVQE) document for travel and non-travel expenses Processing Reimbursements in Kuali with a Disbursement Voucher Quick Expense (DVQE) document for travel and non-travel expenses This is a step-by-step guide for reimbursement DVQEs. The system will not

More information

PEGACSA72V1.pegasystems

PEGACSA72V1.pegasystems PEGACSA72V1.pegasystems Number: PEGACSA72V1 Passing Score: 800 Time Limit: 120 min Exam A QUESTION 1 You are designing a form for an online bookstore to display new arrivals. The form is displayed on laptops

More information

Open Database Connectivity Development of the Context Interchange System

Open Database Connectivity Development of the Context Interchange System Open Database Connectivity Development of the Context Interchange System Andy C.Y. Shum CISL WP# 96-07 December 1996 The Sloan School of Management Massachusetts Institute of Technology Cambridge, MA 02142

More information

Enabling Seamless Sharing of Data among Organizations Using the DaaS Model in a Cloud

Enabling Seamless Sharing of Data among Organizations Using the DaaS Model in a Cloud Enabling Seamless Sharing of Data among Organizations Using the DaaS Model in a Cloud Addis Mulugeta Ethiopian Sugar Corporation, Addis Ababa, Ethiopia addismul@gmail.com Abrehet Mohammed Omer Department

More information

The Design and Implementation of a Corporate Householding Knowledge Processor to Improve Data Quality

The Design and Implementation of a Corporate Householding Knowledge Processor to Improve Data Quality The Design and Implementation of a Corporate Householding Knowledge Processor to Improve Data Quality Stuart Madnick Richard Wang Xiang Xian Working Paper CISL # 2003-07 October 2003 Composite Information

More information

JR Simplot Corporate 810 Invoice

JR Simplot Corporate 810 Invoice JR Simplot Corporate 810 Invoice X12/V4010/810: 810 Invoice Version: 1.0 Company: JR Simplot Company Modified: 3/2/2018 Notes: edi@simplot.com Table of Contents 810 Invoice.......................................................................................................................................

More information

Practical Database Design Methodology and Use of UML Diagrams Design & Analysis of Database Systems

Practical Database Design Methodology and Use of UML Diagrams Design & Analysis of Database Systems Practical Database Design Methodology and Use of UML Diagrams 406.426 Design & Analysis of Database Systems Jonghun Park jonghun@snu.ac.kr Dept. of Industrial Engineering Seoul National University chapter

More information

For the test, be sure to show all work! PROBLEMS: ANSWERS: For problems 1 9, simplify the expression ( ) Evaluate if x = -2 and y = 1 8.

For the test, be sure to show all work! PROBLEMS: ANSWERS: For problems 1 9, simplify the expression ( ) Evaluate if x = -2 and y = 1 8. Pre-algebra For the test, be sure to show all work! PROBLEMS: For problems 9, simplify the expression.. 9 ( 7) Ch / Review.. 56 74... 4. 4 7 4. 5. ( 87) + ( ) 5. 6. 6. 7. ( ) + 4 6 5 + 7. Evaluate if x

More information

Semantic Interoperability in the Securities Industry: Context Interchange Mediation of Semantic Differences in Enumerated Data Types

Semantic Interoperability in the Securities Industry: Context Interchange Mediation of Semantic Differences in Enumerated Data Types Semantic Interoperability in the Securities Industry: Context Interchange Mediation of Semantic Differences in Enumerated Data Types Allen Moulton Stuart E. Madnick Michael D. Siegel MIT Sloan School of

More information

Semantic Interoperability in the Securities Industry: Context Interchange Mediation of Semantic Differences in Enumerated Data Types (WEBH)

Semantic Interoperability in the Securities Industry: Context Interchange Mediation of Semantic Differences in Enumerated Data Types (WEBH) Semantic Interoperability in the Securities Industry: Context Interchange Mediation of Semantic Differences in Enumerated Data Types (WEBH) Allen Moulton, Stuart Madnick, Michael Siegel CISL WP #02-10

More information

879 - Price Information

879 - Price Information 879 - Price Information Author: DOT FOODS, INC. Publication: September 24, 2008 879 Price Information Functional Group=QG Purpose: This Draft Standard for Trial Use contains the format and establishes

More information

Incremental Updates VS Full Reload

Incremental Updates VS Full Reload Incremental Updates VS Full Reload Change Data Capture Minutes VS Hours 1 Table of Contents Executive Summary - 3 Accessing Data from a Variety of Data Sources and Platforms - 4 Approaches to Moving Changed

More information

810 IBM Subset - Invoice To Customer - (004010)

810 IBM Subset - Invoice To Customer - (004010) 810 IBM Subset - Invoice To Customer - (004010) Functional Group ID=IN Introduction: This Draft Standard for Trial Use contains the format and establishes the data contents of the Invoice Transaction Set

More information

Improved Database Development using SQL Compare

Improved Database Development using SQL Compare Improved Database Development using SQL Compare By David Atkinson and Brian Harris, Red Gate Software. October 2007 Introduction This white paper surveys several different methodologies of database development,

More information

KNOWLEDGE INTEGRATION TO OVERCOME ONTOLOGICAL HETEROGENEITY: CHALLENGES FROM FINANCIAL INFORMATION SYSTEMS

KNOWLEDGE INTEGRATION TO OVERCOME ONTOLOGICAL HETEROGENEITY: CHALLENGES FROM FINANCIAL INFORMATION SYSTEMS KNOWLEDGE INTEGRATION TO OVERCOME ONTOLOGICAL HETEROGENEITY: CHALLENGES FROM FINANCIAL INFORMATION SYSTEMS Aykut Firat Sloan School of Management Massachusetts Institute of Technology Cambridge, MA USA

More information

Mesh Networking Principles

Mesh Networking Principles Technology, N. Jones Research Note 8 July 2003 Mesh Topologies Promise Resilient Wireless Networks Mesh architecture will become an essential element of wireless networking because it is easy to install,

More information

IBM United States Hardware Announcement , dated June 7, 2011

IBM United States Hardware Announcement , dated June 7, 2011 IBM United States Hardware Announcement 111-120, dated June 7, 2011 QLogic 4/8 Gb Intelligent Pass-thru Module and QLogic 20-port 4/8 Gb SAN Switch Module for IBM BladeCenter enables support options with

More information

GREENWOOD PUBLIC SCHOOL DISTRICT Grade Math Pacing Guide

GREENWOOD PUBLIC SCHOOL DISTRICT Grade Math Pacing Guide Week Instructional Period/ Date Academic Focus 1 st Nine Weeks Common Core Standards I can statements 1 Aug. 7 th 11 th ( 5 days) 2 Aug. 14 th 18 th ( 5 days) 3 Aug. 7 th 11 th ( 5 days) 4 Aug. 21 st 25

More information

Real Estate Forecast 2017

Real Estate Forecast 2017 Real Estate Forecast 2017 Twitter @DrTCJ Non-Renewals - Dead on Arrival Mortgage Insurance Deductibility Residential Mortgage Debt Forgiveness Residential Energy Savings Renewables Wind and Solar ObamaCare

More information

Brookhaven School District Pacing Guide Fourth Grade Math

Brookhaven School District Pacing Guide Fourth Grade Math Brookhaven School District Pacing Guide Fourth Grade Math 11 days Aug. 7- Aug.21 1 st NINE WEEKS Chapter 1- Place value, reading, writing and comparing whole numbers, rounding, addition and subtraction

More information

855 Purchase Order Acknowledgment

855 Purchase Order Acknowledgment 855 Purchase Order Acknowledgment Version: 004010 CNH_855v4010.ecs 1 Table of Contents 855 Purchase Order Acknowledgment... 4 ISA Interchange Control Header... 7 GS Functional Group Header... 9 ST Transaction

More information

A Complete CRM Specially Designed for Travel Industry

A Complete CRM Specially Designed for Travel Industry A Complete CRM Specially Designed for Travel Industry Key Features Dashboard Daily Query Summary Query Status Report Top 10 Corporate Information Most Selling Destination Monthly Sales Report To Do List

More information

Database Management Systems (CPTR 312)

Database Management Systems (CPTR 312) Database Management Systems (CPTR 312) Preliminaries Me: Raheel Ahmad Ph.D., Southern Illinois University M.S., University of Southern Mississippi B.S., Zakir Hussain College, India Contact: Science 116,

More information

Course Logistics & Chapter 1 Introduction

Course Logistics & Chapter 1 Introduction CMSC 461, Database Management Systems Spring 2018 Course Logistics & Chapter 1 Introduction These slides are based on Database System Concepts book th edition, and the 2009 CMSC 461 slides by Dr. Kalpakis

More information

ANSI X (Purchase Order) Inbound (to Eclipse) Version 4010

ANSI X (Purchase Order) Inbound (to Eclipse) Version 4010 ANSI X12 850 (Purchase Order) Inbound (to Eclipse) Version 4010 Eclipse 850 4010 (Customer) 1 10/11/2012 850 Purchase Order Functional Group=PO Purpose: This Draft Standard for Trial Use contains the format

More information

DIONE. (DAML Integrated Ontology Evolution Tools) Ontology Versioning in Semantic Web Applications. ISX Corporation Lehigh University

DIONE. (DAML Integrated Ontology Evolution Tools) Ontology Versioning in Semantic Web Applications. ISX Corporation Lehigh University (DAML Integrated Evolution Tools) Versioning in Semantic Web Applications ISX Corporation Lehigh University Dr. Brian Kettler, ISX bkettler@isx.com Prof. Jeff Heflin & Zhengxiang Pan, Lehigh heflin@cse.lehigh.edu

More information

76 Million Boomers. 83 Million Millennials 19 to Million Millennials 16 to 35

76 Million Boomers. 83 Million Millennials 19 to Million Millennials 16 to 35 76 Million Boomers 83 Million Millennials 19 to 35 91 Million Millennials 16 to 35 Top Millennial Population Growth Markets 2005 to 2015 12-Month Population Job Rank City, State Growth Growth 1 Charlotte,

More information

Quick Reference Card Booking Travel in Concur Travel and Expense

Quick Reference Card Booking Travel in Concur Travel and Expense This QRC provides the steps for travelers and/or their delegates to book travel and complete the Request Header in Concur Travel and Expense. Log In To Concur Go to the Employee Portal page. www.purdue.edu/employeeportal

More information

IDEX company presentation. January 2009

IDEX company presentation. January 2009 IDEX company presentation January 2009 About IDEX ASA IDEX ASA is a public company traded on the Oslo OTC list. IDEX is headquartered near Oslo, Norway with its US office in Foster City, California. IDEX

More information

Technical Overview. Access control lists define the users, groups, and roles that can access content as well as the operations that can be performed.

Technical Overview. Access control lists define the users, groups, and roles that can access content as well as the operations that can be performed. Technical Overview Technical Overview Standards based Architecture Scalable Secure Entirely Web Based Browser Independent Document Format independent LDAP integration Distributed Architecture Multiple

More information

DAML: ATLAS Project Carnegie Mellon University

DAML: ATLAS Project Carnegie Mellon University DAML: ATLAS Project Carnegie Mellon University Katia Sycara Anupriya Ankolekar, Massimo Paolucci, Naveen Srinivasan November 2004 0 Overall Program Summary What is the basic problem you are trying to solve?

More information

Lesson 6: Collecting Rational Number Like Terms

Lesson 6: Collecting Rational Number Like Terms Lesson 6: Collecting Rational Number Like Terms Classwork Opening Exercise Do the computations, leaving your answers in simplest/standard form. Show your steps. 1. Terry weighs kg. Janice weighs kg less

More information

THE BILLY BISHOP TORONTO CITY AIRPORT PEDESTRIAN TUNNEL CONNECTING INVESTORS, TRAVELLERS AND CITIZENS

THE BILLY BISHOP TORONTO CITY AIRPORT PEDESTRIAN TUNNEL CONNECTING INVESTORS, TRAVELLERS AND CITIZENS THE BILLY BISHOP TORONTO CITY AIRPORT PEDESTRIAN TUNNEL CONNECTING INVESTORS, TRAVELLERS AND CITIZENS BILLY BISHOP TUNNEL FUN FACTS It s an award-winner International Tunnelling & Underground Space Association

More information

Accelerating Digital Transformation with InterSystems IRIS and vsan

Accelerating Digital Transformation with InterSystems IRIS and vsan HCI2501BU Accelerating Digital Transformation with InterSystems IRIS and vsan Murray Oldfield, InterSystems Andreas Dieckow, InterSystems Christian Rauber, VMware #vmworld #HCI2501BU Disclaimer This presentation

More information

Database Technology Introduction. Heiko Paulheim

Database Technology Introduction. Heiko Paulheim Database Technology Introduction Outline The Need for Databases Data Models Relational Databases Database Design Storage Manager Query Processing Transaction Manager Introduction to the Relational Model

More information

STATISTICAL BULLETIN 20 YEARS

STATISTICAL BULLETIN 20 YEARS STATISTICAL BULLETIN 20 YEARS Banco de Cabo Verde STATISTICAL BULLETIN 20 YEARS Banco de Cabo Verde 2012 1 Banco de Cabo Verde BANCO DE CABO VERDE Avenida Amílcar Cabral, 27 PO Box No. 7600 101 Praia Cape

More information

COM F. Troni, L. Fiering

COM F. Troni, L. Fiering F. Troni, L. Fiering Research Note 8 September 2003 Commentary Notebook TCO Comparison: Day Extenders vs. Traveling s Notebooks used by traveling workers, who are out of the office more often and work

More information

Copyright 2016 Ramez Elmasri and Shamkant B. Navathe

Copyright 2016 Ramez Elmasri and Shamkant B. Navathe Copyright 2016 Ramez Elmasri and Shamkant B. Navathe CHAPTER 1 Databases and Database Users Copyright 2016 Ramez Elmasri and Shamkant B. Navathe Slide 1-2 OUTLINE Types of Databases and Database Applications

More information

DesCartes: A Continuum of Learning

DesCartes: A Continuum of Learning Ratios and Proportional Relationships Ratios and Proportional Relationships Ratios and Proportional Relationships Completes arithmetic growth patterns in number tables by identifying the missing elements

More information

10 June 2015 MILITARY VETERANS SUPPORT AND BENEFITS. 10 June

10 June 2015 MILITARY VETERANS SUPPORT AND BENEFITS. 10 June 10 June 2015 MILITARY VETERANS SUPPORT AND BENEFITS 10 June 2015 1 ACSA s Value Chain and Associated Strategic Intent In terms of the Airports Company Act (No 44 of 1993), Airports Company South Africa

More information

Database System Concepts and Architecture

Database System Concepts and Architecture CHAPTER 2 Database System Concepts and Architecture Copyright 2017 Ramez Elmasri and Shamkant B. Navathe Slide 2-2 Outline Data Models and Their Categories History of Data Models Schemas, Instances, and

More information

36.4% Business Overview CAGR ( ) 13,788 10,606 4, (E) 2016 (E) 2017(E)

36.4% Business Overview CAGR ( ) 13,788 10,606 4, (E) 2016 (E) 2017(E) CAGR ( 2013 2017) 36.4% 18,000 16,000 16,545 14,000 12,000 13,788 10,000 10,606 8,000 8,329 6,000 4,000 4,786 2,000-2013 2014 2015(E) 2016 (E) 2017(E) Source: Korea Onlinead Association, emarketer, FSN

More information

Overview of a Prolog Implementation of the COntext INterchange Mediator

Overview of a Prolog Implementation of the COntext INterchange Mediator in Proceedings of the Fifth nternational Conference and Exhibition on the Practical Applications of Prolog Overview of a Prolog mplementation of the COntext Nterchange Mediator Stephane Bressan, Kofi Fynn,

More information

INFORMATICS RESEARCH PROPOSAL REALTING LCC TO SEMANTIC WEB STANDARDS. Nor Amizam Jusoh (S ) Supervisor: Dave Robertson

INFORMATICS RESEARCH PROPOSAL REALTING LCC TO SEMANTIC WEB STANDARDS. Nor Amizam Jusoh (S ) Supervisor: Dave Robertson INFORMATICS RESEARCH PROPOSAL REALTING LCC TO SEMANTIC WEB STANDARDS Nor Amizam Jusoh (S0456223) Supervisor: Dave Robertson Abstract: OWL-S as one of the web services standards has become widely used by

More information

Metadata Jones and the Tower of Babel: The Challenge of Large-Scale Semantic Heterogeneity

Metadata Jones and the Tower of Babel: The Challenge of Large-Scale Semantic Heterogeneity Metadata Jones and the Tower of Babel: The Challenge of Large-Scale Semantic Heterogeneity Stuart E. Madnick Sloan School of Management, Massachusetts Institute of Technology 30 Wadsworth Street, Room

More information

An Approach to Resolve Data Model Heterogeneities in Multiple Data Sources

An Approach to Resolve Data Model Heterogeneities in Multiple Data Sources Edith Cowan University Research Online ECU Publications Pre. 2011 2006 An Approach to Resolve Data Model Heterogeneities in Multiple Data Sources Chaiyaporn Chirathamjaree Edith Cowan University 10.1109/TENCON.2006.343819

More information

GovX Purchase Order. X12/V5010/850: 850 Purchase Order

GovX Purchase Order. X12/V5010/850: 850 Purchase Order 850 Purchase Order X12/V5010/850: 850 Purchase Order Company: GovX.com 1 4/12/2013 Purchase Order - 850 10/16/2015 Added TD5 segment 1/7/2016 Added new value UP in PO106 2 Table of Contents 850 Purchase

More information

Context Knowledge Representation and Reasoning in the Context Interchange System

Context Knowledge Representation and Reasoning in the Context Interchange System Context Knowledge Representation and Reasoning in the Context Interchange System Stephane Bressan 1, Cheng Goh, Natalia Levina, Stuart Madnick, Ahmed Shah, Michael Siegel Massachusetts Institute of Technology,

More information

Reasoning about Temporal Context using Ontology and Abductive Constraint Logic Programming

Reasoning about Temporal Context using Ontology and Abductive Constraint Logic Programming Reasoning about Temporal Context using Ontology and Abductive Constraint Logic Programming (PPSWR/ICLP) Hongwei Zhu Stuart E. Madnick Michael D. Siegel Working Paper CISL# 2004-15 August 2004 Composite

More information

Using Semantic Values to Facilitate Interoperability Among Heterogeneous Information Systems

Using Semantic Values to Facilitate Interoperability Among Heterogeneous Information Systems Replacing CISL WP# 92-10 REVISED Using Semantic Values to Facilitate Interoperability Among Heterogeneous Information Systems February 1993 WP# 3543-93 CISL WP# 93-03 Michael Siegel* Edward Sciore** Arnon

More information

P to ~o, c E E' D' INl -a~s

P to ~o, c E E' D' INl -a~s 02- -4S The 6th World Muiticonference on Sy,sttemics, Cyib.emetics and [nformatics July 14-18,2002 - Orlando, Florida, USA P to ~o, c E E' D' INl -a~s ~ - - \.. t ~ 1. \.. t. ~ \ Volume VII Information

More information

Trend Micro Reports Record First Quarter Revenue & Operating Profit

Trend Micro Reports Record First Quarter Revenue & Operating Profit Trend Micro Reports Record First Quarter Revenue & Operating Profit Continued strong growth in U.S and Asia highlight quarter Tokyo, Japan April 25, 2006 Trend Micro, Incorporated (TSE: 4704, NASDAQ: TMIC),

More information

Chapter 3: AIS Enhancements Through Information Technology and Networks

Chapter 3: AIS Enhancements Through Information Technology and Networks Accounting Information Systems: Essential Concepts and Applications Fourth Edition by Wilkinson, Cerullo, Raval, and Wong-On-Wing Chapter 3: AIS Enhancements Through Information Technology and Networks

More information

Part B R&D Project Plans. R&D Project Plan for Project 1. Project Title: Travelogix Wholesale System Project Manager: Date: 30/09/2012.

Part B R&D Project Plans. R&D Project Plan for Project 1. Project Title: Travelogix Wholesale System Project Manager: Date: 30/09/2012. Part B R&D Project Plans R&D Project Plan for Project 1 Project Title: Travelogix Wholesale System Project Manager: Date: 30/09/2012 Summary Overseas: Developers configure Business to Consumer (B2C) Infrastructure

More information

ANSI X (Purchase Order Acknowledgment) Inbound (to Eclipse) Version 4010

ANSI X (Purchase Order Acknowledgment) Inbound (to Eclipse) Version 4010 ANSI X12 855 (Purchase Order Acknowledgment) Inbound (to Eclipse) Version 4010 Eclipse 855 4010 (Vendor) 1 10/12/2012 855 Purchase Order Acknowledgment Functional Group=PR Purpose: This Draft Standard

More information

A complete travel commerce experience EXPEDIA, INC.

A complete travel commerce experience EXPEDIA, INC. A complete travel commerce experience Forward-Looking Statements This presentation contains forward-looking statements within the meaning of the Private Securities Litigation Reform Act of 1995, including

More information

Effective Data Integration in the Presence of Temporal Semantic Conflicts

Effective Data Integration in the Presence of Temporal Semantic Conflicts Effective Data Integration in the Presence of Temporal Semantic Conflicts Hongwei Zhu Stuart E. Madnick Michael D. Siegel MIT Sloan School of Management 30 Wadsworth Street, Cambridge, MA 02142, USA {mrzhu,

More information

Ten Innovative Financial Services Applications Powered by Data Virtualization

Ten Innovative Financial Services Applications Powered by Data Virtualization Ten Innovative Financial Services Applications Powered by Data Virtualization DATA IS THE NEW ALPHA In an industry driven to deliver alpha, where might financial services firms find opportunities when

More information

BANNER REQUISITION USER GUIDE

BANNER REQUISITION USER GUIDE NORTHWEST FLORIDA STATE COLLEGE BANNER REQUISITION USER GUIDE 2 Table of Contents: Chapter 1 Forms used for Banner Requisitions. 3 Chapter 2 Navigating and creating a new Requisition... 4 Requestor/ Delivery

More information

MIT Sloan School of Management

MIT Sloan School of Management MIT Sloan School of Management MIT Sloan Working Paper 4557-05 CISL Working Paper 2005-07 August 2005 A case study of Electronic Bill Presentment and Payment (EBPP) integration using the COIN mediation

More information

Crystal Clear Software Ltd. Customer Charter

Crystal Clear Software Ltd. Customer Charter Crystal Clear Software Ltd. Customer Charter Support Between 08.30 and 18.00 hrs. from Monday to Friday (East African Time, GMT+3). Live Support (via www.loanperformer.com). We guarantee to answer your

More information

CONTEXTUAL ALIGNMENT OF ONTOLOGIES IN THE ecoin SEMANTIC INTEROPERABILITY FRAMEWORK

CONTEXTUAL ALIGNMENT OF ONTOLOGIES IN THE ecoin SEMANTIC INTEROPERABILITY FRAMEWORK CONTEXTUAL ALIGNMENT OF ONTOLOGIES IN THE ecoin SEMANTIC INTEROPERABILITY FRAMEWORK Aykut Firat Northeastern University Boston, MA USA a.firat@neu.edu Stuart Madnick, Benjamin Grosof Massachusetts Institute

More information

CS425 Fall 2016 Boris Glavic Chapter 1: Introduction

CS425 Fall 2016 Boris Glavic Chapter 1: Introduction CS425 Fall 2016 Boris Glavic Chapter 1: Introduction Modified from: Database System Concepts, 6 th Ed. See www.db-book.com for conditions on re-use Textbook: Chapter 1 1.2 Database Management System (DBMS)

More information

Light Vehicle Sales Are We at a Turning Point?

Light Vehicle Sales Are We at a Turning Point? Light Vehicle Sales Are We at a Turning Point? Federal Reserve Bank of Chicago June 3, 2016 Paul Traub Senior Business Economist Overview U.S. Economy (C + I + G + Nx) U.S. Consumer Ability and Willingness

More information

April Q 2017 Results Update

April Q 2017 Results Update April 2017 1Q 2017 Results Update Maintain Moderate Growth, Asset Quality and Good Earning momentum Moderate Loans Growth with Good Portfolio Quality: Loans growth: 10% (YoY); Deposit growth: 12% (YoY)

More information

GovX Purchase Order. X12/V5010/850: 850 Purchase Order

GovX Purchase Order. X12/V5010/850: 850 Purchase Order 850 Purchase Order X12/V5010/850: 850 Purchase Order Company: GovX.com 1 4/12/2013 Purchase Order - 850 10/16/2015 Added TD5 segment 1/7/2016 9/19/2018 Added new value UP in PO106 Added TD512 segment Table

More information

4 th Grade MATH Pacing Guide

4 th Grade MATH Pacing Guide Week 1 First 9 Weeks 4.OA.1 Interpret a multiplication equation as a comparison, e.g., interpret 35 = 5 7 as a statement that 35 is 5 times as many as 7 and 7 times as many as 5. Represent verbal statements

More information

SUSE Enterprise Storage 3

SUSE Enterprise Storage 3 SUSE Enterprise Storage 3 Agenda Enterprise Data Storage Challenges SUSE Enterprise Storage SUSE Enterprise Storage Deployment SUSE Enterprise Storage Sample Use Cases Summary Enterprise Data Storage Challenges

More information

SPARQL Query Mediation over RDF Data Sources with Disparate Contexts

SPARQL Query Mediation over RDF Data Sources with Disparate Contexts SPARQL Mediation over RDF Data Sources with Disparate s Xiaoqing Zheng Xitong Li Stuart Madnick Working Paper CISL# 2012-10 November 2012 Composite Information Systems Laboratory (CISL) Sloan School of

More information

COMS 469: Interactive Media II

COMS 469: Interactive Media II COMS 469: Interactive Media II Agenda Project One PHP Preview Project One Grading Methodology Return Project One & Evaluation Sheet Project One Evaluation Methodology Consider each project in and of itself

More information

Mapletree Investments and Mapletree Industrial Trust Form Joint Venture to Acquire 14 Data Centres in the United States of America

Mapletree Investments and Mapletree Industrial Trust Form Joint Venture to Acquire 14 Data Centres in the United States of America PRESS RELEASE Mapletree Investments and Mapletree Industrial Trust Form Joint Venture to Acquire 14 Data Centres in the United States of America 60:40 Joint venture between Mapletree Investments Pte Ltd

More information

ACCOUNTING (ACCT) Kent State University Catalog

ACCOUNTING (ACCT) Kent State University Catalog Kent State University Catalog 2018-2019 1 ACCOUNTING (ACCT) ACCT 23020 INTRODUCTION TO FINANCIAL ACCOUNTING 3 Credit (Equivalent to ACTT 11000) Introduction to the basic concepts and standards underlying

More information

Using Semantic Values to Facilitate Interoperability Among Heterogeneous Information Systems

Using Semantic Values to Facilitate Interoperability Among Heterogeneous Information Systems Replacing CISL WP# 92-10 Accepted for publication for Transactions on Database Systems REVISED Using Semantic Values to Facilitate Interoperability Among Heterogeneous Information Systems February 1993

More information

4 th Grade Summer Mathematics Review #1. Name: 1. How many sides does each polygon have? 2. What is the rule for this function machine?

4 th Grade Summer Mathematics Review #1. Name: 1. How many sides does each polygon have? 2. What is the rule for this function machine? . How many sides does each polygon have? th Grade Summer Mathematics Review #. What is the rule for this function machine? A. Pentagon B. Nonagon C. Octagon D. Quadrilateral. List all of the factors of

More information

This tutorial will help computer science graduates to understand the basic-to-advanced concepts related to data warehousing.

This tutorial will help computer science graduates to understand the basic-to-advanced concepts related to data warehousing. About the Tutorial A data warehouse is constructed by integrating data from multiple heterogeneous sources. It supports analytical reporting, structured and/or ad hoc queries and decision making. This

More information

An ODBC CORBA-Based Data Mediation Service

An ODBC CORBA-Based Data Mediation Service An ODBC CORBA-Based Data Mediation Service Paul L. Bergstein Dept. of Computer and Information Science University of Massachusetts Dartmouth, Dartmouth MA pbergstein@umassd.edu Keywords: Data mediation,

More information

COMP Instructor: Dimitris Papadias WWW page:

COMP Instructor: Dimitris Papadias WWW page: COMP 5311 Instructor: Dimitris Papadias WWW page: http://www.cse.ust.hk/~dimitris/5311/5311.html Textbook Database System Concepts, A. Silberschatz, H. Korth, and S. Sudarshan. Reference Database Management

More information

THOMSON ONE BANKER ANALYTICS

THOMSON ONE BANKER ANALYTICS THOMSON ONE BANKER ANALYTICS Browser User Guide Thomson ONE Banker Analytics 1.0 getting started using the Analytics Website CONTENTS Introduction Data Coverage Basic Layout Company Information Index Information

More information

Practice with Functions

Practice with Functions CptS 111 Lab # Practice with Functions Learning Objectives: Be able to define functions Be able to call functions Be able to pass arguments into functions Be able to return values from functions Be able

More information

Motivation and Intro. Vadim Ermolayev. MIT2: Agent Technologies on the Semantic Web

Motivation and Intro. Vadim Ermolayev. MIT2: Agent Technologies on the Semantic Web MIT2: Agent Technologies on the Semantic Web Motivation and Intro Vadim Ermolayev Dept. of IT Zaporozhye National Univ. Ukraine http://eva.zsu.zp.ua/ http://kit.zsu.zp.ua/ http://www.zsu.edu.ua/ http://www.ukraine.org/

More information

Databases & Database Users

Databases & Database Users Databases & Database Users Dr Fawaz Alarfaj Al Imam Mohammed Ibn Saud Islamic University ACKNOWLEDGEMENT Slides are adopted from: Elmasri & Navathe, Fundamentals of Database Systems Types of Databases

More information

Why Japan? Masashi Nakazono JETRO Genève. Prepared for Handelskammer beider Basel & JETRO seminar on 4 Nov 2016

Why Japan? Masashi Nakazono JETRO Genève. Prepared for Handelskammer beider Basel & JETRO seminar on 4 Nov 2016 Why Japan? Masashi Nakazono JETRO Genève Prepared for Handelskammer beider Basel & JETRO seminar on 4 Nov 2016 Copyright (C) 2016 JETRO. All rights reserved. Who are we? Japan External Trade Organization

More information

March 18, 2019 SUBMITTING TRAVEL PLANS USING CONCUR

March 18, 2019 SUBMITTING TRAVEL PLANS USING CONCUR March 18, 2019 SUBMITTING TRAVEL PLANS USING CONCUR 1 Contents Logging into Concur... 3 Concur Home Page... 4 Updating Profile (Personal Information)... 5 Travel Tab (Getting estimates for air, hotel,

More information

OUTLOOK FOR THE U.S. ECONOMY AND FINANCIAL MARKETS

OUTLOOK FOR THE U.S. ECONOMY AND FINANCIAL MARKETS OUTLOOK FOR THE U.S. ECONOMY AND FINANCIAL MARKETS GIC/PCBE Luncheon Philadelphia February, A Presentation by: Martin H. Barnes Managing Editor The Bank Credit Analyst mbarnes@bcaresearch.com Sherbrooke

More information

Kiosks for Tourists: Heterogeneous Distributed Database Access for Multimedia Information Presentation. Michael Wilson Rutherford Appleton Laboratory

Kiosks for Tourists: Heterogeneous Distributed Database Access for Multimedia Information Presentation. Michael Wilson Rutherford Appleton Laboratory 1 Kiosks for Tourists: Heterogeneous Distributed Database Access for Multimedia Information Presentation Michael Wilson Rutherford Appleton Laboratory ABSTRACT When accessing on-line electronic information

More information

Improving the Data Quality of Web Services Composition

Improving the Data Quality of Web Services Composition Improving the Data Quality of Web Services Composition Xitong Li Stuart Madnick Hongwei Zhu Working Paper CISL# 2011-07 November 2011 Composite Information Systems Laboratory (CISL) Sloan School of Management,

More information