Think Huddle and Neustar Performance Gains with 12c

Size: px
Start display at page:

Download "Think Huddle and Neustar Performance Gains with 12c"

Transcription

1 Think Huddle and Neustar Performance Gains with 12c / OVERVIEW Big Data and its impact on Spatial performance Testing configurations Use cases / techniques for improving performance Performance improvement data CHALLENGES / OPPORTUNITIES With 11g, performance sometimes limited interactions with Big Data Making improvements was time-consuming 6.5x faster performance 11m 53s vs 1hr 17m 26s 5,000 4,500 4,000 3,500 3,000 2,500 2,000 1,500 1, g 12c 12c SVA SOLUTIONS Oracle Database 12c Enterprise Edition Spatial Option with GeoRaster, Network Data Model Partitioning Oracle Fusion Middleware MapViewer Oracle Business Intelligence Enterprise Edition RESULTS Achieving at least 2x performance improvement in some cases up to 300x improvement Only small configuration changes are needed Time to develop and maintain these solutions is reduced

2 May 2014 Oracle Spatial Summit

3 May 21, 2014 Walter E. Washington Convention Center Washington, DC USA

4 Steve Pierce CEO Nick Salem Distinguished Engineer

5 Performance Gains with Spatial & Graph Using Oracle Database 12c

6 Program Agenda Big Data: What s the big deal? Testing configurations Use cases and performance data on: Geometry aggregation Point in polygon Joins Q&A

7 Think Huddle Corporate Overview Our company Oracle Spatial and MapViewer Big Data and BI for Spatial Fortune 500 clients Steve Pierce Chair Oracle Spatial SIG 15 years Oracle

8 What s the Big Deal? Data growing Big Data systems for spatial processing Fundamental changes in 12c Faster vector algorithms Better caching Improved memory management 12c works for Big Data (and maintains data integrity and keeps data secure and supports relational integrity and your users can access it) BIG DATA

9 Test Environment Environment Oracle 11g Oracle 12c OS Oracle Linux 6.5 Oracle Linux 6.5 Processor E5 Xeon 2.9Ghz x 2 E5 Xeon 2.9Ghz x 2 Disk Intel SSD s Intel SSD s 1 Server 2 Oracle Databases Memory 32GB 32GB Huge Pages Yes Yes SGA/PGA 8GB/2GB 8GB/2GB Source data Census / Generated Census / Generated

10 Neustar Corporate Overview Real Intelligence. Better Decisions. Trusted company serving the internet, telco, information services, retail, media and advertising industries Publicly held - $902M+ Company 1,600+ employees worldwide HQ d in Sterling, VA Extensive data assets (4 billion global phone numbers, 2.8 billion global IP addresses, 6.4 million global domain names and 13.1 US business listings) 20 billion requests a day (DNS, text messages, phone)

11 Neustar s ElementOne Platform Geospatial Analytics in the Cloud Highly flexible and high performance mapping Rich market and trade area capability Road network / drive time analysis Heat themes GeoRaster images Aerials / terrain map overlays Scalable and high performance data retrieval Centralized secure data repository

12 Neustar s ElementOne Platform 11g vs 12c Test Benchmark Environment Oracle VM Server 3.0 (Xen version 4.1 PVM) Created 2 identical VMs with Oracle Linux 6.5 Installed Oracle 11g on one and 12c on the other Database configuration 8G of SGA / 2G of PGA 4 x 8 Core CPUs (Intel Xeon 2.70GHz) Loaded core ElementOne database on each Compare 11g to 12c w/ & w/o spatial vector acceleration

13 Use Case Geometry Aggregation Aggregation of census tracts into larger geometries based on neighbor relationships INTERACT UNION

14 Use Case Geometry Aggregation 350 Elapsed Time (s) g 12c 12c SVA Each Census tract in Virginia Aggregate Union of Neighbors SDO_ANY_INTERACT + SDO_AGGR_UNION 2,000 Aggregations Tracts have 7 neighbors = 14,000 tracts 280 tracts processed per second

15 Neustar s ElementOne on 12c SDO_AGGR_UNION CA ZIPs 4,000 3,500 3,000 2,500 2,000 1,500 1, Elapsed Time In Seconds 11g 12c 12c SVA Using SDO AGGR UNION SDO AGGR UNION + Mod/ Group Use case consisted of aggregating all ZIP Codes in California using plain SDO_AGGR_UNION and with mod/ group by functions Achieved up to 300x faster performance w\ SDO_AGGR_UNION and 40x faster with mod/group by method in12c with SVA enabled vs 11g Reduced elapsed time from 1 hour 54 seconds to just 12 seconds

16 Neustar s ElementOne on 12c SDO_AGGR_SET_UNION CA ZIPs 14x faster performance 12s vs 2m 51s g 12c 12c SVA SDO AGGR SET UNION

17 Neustar s ElementOne on 12c SDO_TOUCH CA ZIPs touch BGs 8x faster performance 25s vs 3m 23s For all California ZIP codes, retrieve the block groups that they touch SDO_TOUCH g 12c 12c SVA

18 Neustar s ElementOne on 12c Spatial Relationships Determine spatial relationships and interactions Inside, touch, anyinteract, overlap, disjoint SDO_UTIL and SDO_GEOM for various geography creation and manipulation Shape intersection, XOR, union, difference, point at bearing, radian, distance, convex hull, polygon smoothing and more ElementOne Trade Areas (customer threshold, non-overlapping radii + component geos, donuts, square + hex grids, drive time, heat regions) Thematic overlays and extents

19 1, Neustar s ElementOne on 12c SDO_WITHIN_DISTANCE Benchmarks 6x faster 2m 17s vs 14m 32s 11g 12c 12c SVA SDO WITHIN DISTANCE For 544 super regional shopping centers, retrieve all businesses with a 10 mile radius

20 Neustar s ElementOne on 12c SDO_GEOM.RELATE CA ZIPs & BGs 3x faster performance 2m 16s vs 7m 2s 11g 12c 12c SVA SDO_GEOM RELATE (mask = determine) Determine spatial topological relationship for California ZIP codes and surrounding block groups

21 Neustar s ElementOne on 12c SDO_GEOM.DISTANCE Benchmarks 2.6x faster performance 1m 13s vs 3m 11s Calculate distances between a single site and 112,610 surrounding sites SDO_GEOM DISTANCE g 12c 12c SVA

22 Neustar s ElementOne on 12c SDO_INSIDE Businesses inside NY BGs 2.1x faster performance 1m 22s vs 2m 53s Retrieve all businesses inside New York state block groups g 12c 12c SVA SDO_INSIDE

23 Use Case Point in Polygon Point in polygon calculations for finding houses within an area of interest What s in there?

24 Use Case Point in Polygon 11g In 11g there were ways to do this SELECT lon, lat FROM (SELECT SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(lon, lat, NULL), NULL, NULL) geom FROM large) c, states s WHERE SDO_ANYINTERACT(s.geom,c.geom) = 'TRUE' AND s.state_abrv='ca'

25 Use Case Point In Polygon 12c Elapsed Time (s) Sdo_PointInPolygon SELECT lon, lat FROM TABLE(mdsys.sdo_PointInPolygon( CURSOR(select lon, lat from large), (select geom from states where state_abrv='ca ),.05)) 50 /*+ PARALLEL(#) */ 0 11g Relate 12c SVA PiP 12c SVA PiP (8) Near linear performance boost

26 Use Case Joins Which objects are in which region? And there? What s in there? And here?

27 Use Case Joins Elapsed Time (s) SDO_JOIN For bulk joins sdo_join('large', 'GEOM', 'STATES', 'GEOM', 'mask=anyinteract' Works in 11g Faster in 12c 0 11g 12c 12c SVA

28 Neustar s ElementOne on 12c SDO_JOIN ZIP & Block Group Tables 6.5x faster performance 11m 53s vs 1hr 17m 26s Join using mask=anyinteract 5,000 4,500 4,000 3,500 3,000 2,500 2,000 1,500 1, g 12c 12c SVA SDO_JOIN

29 Neustar s ElementOne on 12c SDO_CS.TRANSFORM US block groups 10x faster performance 2m 10s vs 22m 26s 1,600 1,400 1,200 1, g 12c 12c SVA SDO CS Coordinate Transform

30 Neustar s ElementOne on 12c SDO_GEOM.VALIDATE_GEOM Benchmarks 1.9x faster performance 15s vs 29s 11g 12c 12c SVA SDO_GEOM Validate Geometry with Context Validate all US county geometries

31 Neustar s ElementOne on 12c Miscellaneous Features Reduction in redo/undo generation using global temporary tables resulting in 1.7x performance boost 2x performance gains with inline PL/SQL functions Up to 10x faster processing time with constructing large CLOBs / BLOBs Faster response times with cross session result set cache

32 Q&A

Economic Value of the Advertising-Supported Internet Ecosystem

Economic Value of the Advertising-Supported Internet Ecosystem Economic Value of the Advertising-Supported Internet Ecosystem Introduction & Agenda John Deighton, Ph.D. Baker Foundation Professor of Business Administration Harvard Business School Agenda Study background

More information

Economic Value of the Advertising-Supported Internet Ecosystem

Economic Value of the Advertising-Supported Internet Ecosystem Economic Value of the Advertising-Supported Internet Ecosystem Introduction & Agenda John Deighton, Ph.D. Baker Foundation Professor of Business Administration Harvard Business School Agenda Study background

More information

RAPID CALCULATION OF MEDICATION ADHERENCE USING PARALLEL COMPUTING WITH R AND PYTHON

RAPID CALCULATION OF MEDICATION ADHERENCE USING PARALLEL COMPUTING WITH R AND PYTHON RAPID CALCULATION OF MEDICATION ADHERENCE USING PARALLEL COMPUTING WITH R AND PYTHON Nick Davis, PhD Assistant Professor of Research Department of Medical Informatics University of Oklahoma, Tulsa School

More information

Server, Desktop, Mobile Platforms Working Group (SDMPWG) Dated

Server, Desktop, Mobile Platforms Working Group (SDMPWG) Dated Server, Desktop, Mobile Platforms Working Group (SDMPWG) Dated 2011-04-25 The information provided below is subject to change and reflects the current knowledge of the Working Group. 1. Management Problem(s)

More information

Request for Proposals

Request for Proposals Request for Proposals Managed Data Protection Storage Services PROPOSALS WILL BE RECEIVED UNTIL 12:00 Noon, Tuesday, December 5, 2017 in Purchasing Department, City Hall Building 101 North Main Street,

More information

Getting The Boundaries Right: The DoD Real Property Inventory Mapping Pilot Project

Getting The Boundaries Right: The DoD Real Property Inventory Mapping Pilot Project Getting The Boundaries Right: The DoD Real Property Inventory Mapping Pilot Project David LaBranche, P.E. DISDI Mission Assurance Officer ODUSD(I&E), Business Enterprise Integration 24 May, 2007 Agenda

More information

FPGA Accelerator Virtualization in an OpenPOWERcloud. Fei Chen, Yonghua Lin IBM China Research Lab

FPGA Accelerator Virtualization in an OpenPOWERcloud. Fei Chen, Yonghua Lin IBM China Research Lab FPGA Accelerator Virtualization in an OpenPOWERcloud Fei Chen, Yonghua Lin IBM China Research Lab Trend of Acceleration Technology Acceleration in Cloud is Taking Off Used FPGA to accelerate Bing search

More information

ISO 9001:2008 TENDER FOR SUPPLY, INSTALLATION, CONFIGURATION & TESTING RACK SERVER. Tender No. - NTSC/WST/Software Purchase/ /92

ISO 9001:2008 TENDER FOR SUPPLY, INSTALLATION, CONFIGURATION & TESTING RACK SERVER. Tender No. - NTSC/WST/Software Purchase/ /92 ISO 9001:2008 TENDER FOR SUPPLY, INSTALLATION, CONFIGURATION & TESTING of RACK SERVER Tender No. - NTSC/WST/Software Purchase/2016-17/92 NSIC- Technical Services Centre (A Government of India Enterprise)

More information

ABOUT MONSTER GOVERNMENT SOLUTIONS. FIND the people you need today and. HIRE the right people with speed, DEVELOP your workforce with diversity,

ABOUT MONSTER GOVERNMENT SOLUTIONS. FIND the people you need today and. HIRE the right people with speed, DEVELOP your workforce with diversity, FEDERAL SOLUTIONS ABOUT MONSTER GOVERNMENT SOLUTIONS FIND the people you need today and the leaders of tomorrow HIRE the right people with speed, efficiency, and security DEVELOP your workforce with diversity,

More information

UNFILLED JOBS. [ ]

UNFILLED JOBS. [ ] VIRTUAL LABOR MARKET 2005 COMPUTERWORLD HONORS CASE STUDY GOVERNMENT & NON-PROFIT ORGANIZATIONS EUROPE S LARGEST NATIONAL ECONOMY ATTACKS A 12% UNEMPLOYMENT RATE BY USING THE INTERNET TO LINK ITS UNEMPLOYED

More information

Population Centric Intelligence: Using Data Segmentation and Community Health Assessments for Better Patient Insights

Population Centric Intelligence: Using Data Segmentation and Community Health Assessments for Better Patient Insights Population Centric Intelligence: Using Data Segmentation and Community Health Assessments for Better Patient Insights Charles Boicey, MS, RN-BC, CPHIMS President American Nursing Informatics Association

More information

Leveraging Health IT: How can informatics transform public health (and public health transform health IT)?

Leveraging Health IT: How can informatics transform public health (and public health transform health IT)? Leveraging Health IT: How can informatics transform public health (and public health transform health IT)? Claire Broome, M.D. Health Information Technology Summit March 7, 2005 How can informatics transform

More information

AN OVERVIEW OF THE CLINICAL TRIAL ENGAGEMENT NETWORK

AN OVERVIEW OF THE CLINICAL TRIAL ENGAGEMENT NETWORK AN OVERVIEW OF THE CLINICAL TRIAL ENGAGEMENT NETWORK Gary Puckrein, Ph.D. President and CEO National Minority Quality Forum Salvatore Alesci, MD, PhD VP, Scientific & Regulatory Affairs PhRMA Participation

More information

Engaging, empowering technology

Engaging, empowering technology Breadth and depth of global consulting Engaging, empowering technology Greatest broking experience & solutions 340 Multinational Client Group colleagues 100 health management specialists Access to 450

More information

Rapid Force Structure Analysis

Rapid Force Structure Analysis Rapid Force Structure Analysis Capability Effectiveness Tool October 22, 2008 1 David Blancett Mgr, Systems Analysis & Simulation Kurt Dittmer Dir, Advanced CONOPS Northrop Grumman Corporation Overview

More information

Siebel Installation Guide for Microsoft Windows. Siebel Innovation Pack 2017 July 2017

Siebel Installation Guide for Microsoft Windows. Siebel Innovation Pack 2017 July 2017 Siebel Installation Guide for Microsoft Windows Siebel Innovation Pack 2017 July 2017 Copyright 2005, 2017 Oracle and/or its affiliates. All rights reserved. This software and related documentation are

More information

MASTERING THE LOGISTICS OF A LARGE SCALE HAZUS PROJECT

MASTERING THE LOGISTICS OF A LARGE SCALE HAZUS PROJECT August 25, 2010 MASTERING THE LOGISTICS OF A LARGE SCALE HAZUS PROJECT Shanna Michael, CFM, AECOM Stefan Zink, CFM, Michael Baker Jr., Inc. Agenda Part 1: Project Overview Averaged Annualized Loss Estimation

More information

VMware AirWatch Secure Gateway Guide Securing Your Infrastructure

VMware AirWatch Secure  Gateway Guide Securing Your  Infrastructure VMware AirWatch Secure Email Gateway Guide Securing Your Email Infrastructure Workspace ONE UEM v9.7 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard

More information

Personal cloud computer available for everyone

Personal cloud computer available for everyone Personal cloud computer available for everyone Boosteroid.com V.1.1 Personal cloud computer available for everyone Pre-ICO 22-29 September 2017 Token price: $0,1-0,47 ICO October 23 - November 6, 2017

More information

US Army Europe Joint Multinational Training Command

US Army Europe Joint Multinational Training Command US Army Europe Joint Multinational Training Command TSAE Tap In: Disseminating US Army Europe Training and Exercise Capability with ArcGIS Esri IUC 2016 28 Jun 2016 Sustainable Range Program Responsible

More information

Google Cloud Technical Brief

Google Cloud Technical Brief Google Cloud Technical Brief As data and applications move to GCP so does the increased threat of web attacks like SQL injections, cross site scripting (XSS), hacking attempts, bad bots and application

More information

FREEWAT modeling platform: software architecture and state of development Iacopo Borsi TEA SISTEMI SpA

FREEWAT modeling platform: software architecture and state of development Iacopo Borsi TEA SISTEMI SpA FREEWAT modeling platform: software architecture and state of development Iacopo Borsi TEA SISTEMI SpA iacopo.borsi@tea-group.com Outlook FREEWAT architecture Capabilities: a summary Code development:

More information

In God We Trust, All Others Must Bring Data. Installation Geospatial Information and Services in DoD

In God We Trust, All Others Must Bring Data. Installation Geospatial Information and Services in DoD In God We Trust, All Others Must Bring Data Installation Geospatial Information and Services in DoD Mr. David LaBranche, P.E. Geospatial Information Officer OASD(EI&E) February 24-25, 2015 ESRI FedGIS

More information

Announcement of Request for DoD HPC Modernization Program HPC Equipment Reutilization Proposals

Announcement of Request for DoD HPC Modernization Program HPC Equipment Reutilization Proposals Date: 18 May 2018 Announcement of Request for DoD HPC Modernization Program HPC Equipment Reutilization Proposals I. INTRODUCTION Department of Defense (DoD) High Performance Computing Modernization Program

More information

Leading Louisiana Baton Rouge G.I.S.

Leading Louisiana Baton Rouge G.I.S. Leading Louisiana Baton Rouge G.I.S. Louisiana Remote Sensing and G.I.S. Workshop Lindy C. Boggs Conference Center New Orleans, Louisiana April 8, 2008 Warren L. Kron, Jr. Justin Priola Leading Louisiana

More information

How to obtain HPC resources. A. Emerson, HPC, Cineca.

How to obtain HPC resources. A. Emerson, HPC, Cineca. How to obtain HPC resources A. Emerson, HPC, Cineca. How do I get access to a supercomputer? With the exception of commercial agreements, virtually all access to HPC systems is via peer-reviewed calls

More information

How do I get an Allocation?

How do I get an Allocation? How do I get an Allocation? How do I get time on an HPC system and what is available? You must submit a proposal for a project in order to gain access to an HPC system. We have two resources available

More information

An Internet Intelligence Report by ilogos Research

An Internet Intelligence Report by ilogos Research Fortune 500 Job Postings on Careers Web Sites & Major Job Boards Summary An Internet Intelligence Report by ilogos Research Contacts for ilogos Research: West Coast: Yves Lermusiaux (yves@ilogos.com) East

More information

Luc Gregoire Chief Financial Officer. Internet & Technology Services Conference. February,

Luc Gregoire Chief Financial Officer. Internet & Technology Services Conference. February, Luc Gregoire Chief Financial Officer Cantor Fitzgerald 4 th Annual Internet & Technology Services Conference February, 23 2017 Cantor Fitzgerald 4 th Annual Internet & Technology Services Conference February

More information

AFCEA TECHNET LAND FORCES EAST

AFCEA TECHNET LAND FORCES EAST AFCEA TECHNET LAND FORCES EAST Toward a Tactical Common Operating Picture LTC Paul T. Stanton OVERALL CLASSIFICATION OF THIS BRIEF IS UNCLASSIFIED/APPROVED FOR PUBLIC RELEASE Transforming Cyberspace While

More information

VMware AirWatch Secure Gateway Guide Securing Your Infrastructure

VMware AirWatch Secure  Gateway Guide Securing Your  Infrastructure VMware AirWatch Secure Email Gateway Guide Securing Your Email Infrastructure AirWatch v9.2 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

Joint Warfare System (JWARS)

Joint Warfare System (JWARS) Joint Warfare System (JWARS) Update to DMSO Industry Days June 4, 1999 Jim Metzger JWARS Office Web Site: http://www.dtic.mil/jwars/ e-mail: jwars@osd.pentagon.mil 6/4/99 slide 1 Agenda Background Development

More information

AGENDA / OBJECTIVES: NURSE LEADER INTENSIVE

AGENDA / OBJECTIVES: NURSE LEADER INTENSIVE DAY ONE (9am - 5pm) 9am Introductions/ ice breaker Opening Circle (.25) 9:30 am NURSE LEADER ROLE in TRANSFORMATION (1.5) Desired Outcomes 10:00 Break 10:15 Leadership vs Manager Define Transformational

More information

Crosby-Garfield Area Project Update

Crosby-Garfield Area Project Update Crosby-Garfield Area Project Update July 1, 2014 A Report on the Adopted Project Area and Service Usage Levels from July 1, 2012 through June 30, 2013 Report to Crosby-Garfield Management Team Compiled

More information

Oracle Talent Acquisition Cloud

Oracle Talent Acquisition Cloud Oracle Talent Acquisition Cloud Release 15B Release Content Document August 2016 Revised: August 2017 TABLE OF CONTENTS REVISION HISTORY... 3 OVERVIEW... 5 ORACLE TALENT ACQUISITION CLOUD... 6 ORACLE TALEO

More information

Regional IT platform for health related data exchange and improved management Agnieszka Aleksiejczuk

Regional IT platform for health related data exchange and improved management Agnieszka Aleksiejczuk Regional IT platform for health related data exchange and improved management Agnieszka Aleksiejczuk Agnieszka.Aleksiejczuk@wrotapodlasia.pl Bartosz Pampuch Bartosz.Pampuch@imed24.pl LOCAL LEVEL Maturity

More information

Annual Automated ISR and Battle Management Symposium

Annual Automated ISR and Battle Management Symposium Defense Strategies Institute professional educational forum: 6th Annual Automated ISR and Battle Management Symposium February 13-14, 2018: Mary M. Gates Learning Center 701 N. Fairfax St. Alexandria,

More information

Operations Centers. Natalie Feuerstein and Joe Bayles Defense Solutions

Operations Centers. Natalie Feuerstein and Joe Bayles Defense Solutions Operations Centers Natalie Feuerstein and Joe Bayles Defense Solutions Agenda Operations Centers Civil- Operations Centers Challenges Our Approach Solutions Expand the Solution What is an Operations Center?

More information

International Master in Computer Science. Sophia Antipolis, France

International Master in Computer Science. Sophia Antipolis, France International Master in Computer Science Sophia Antipolis, France http://mastercs.unice.fr/ CS Master at UNS Two-year program (a.k.a, M1 & M2) Contacts: M1 Frédéric Mallet http://www-sop.inria.fr/members/frederic.mallet/

More information

Nurse Call Communication System

Nurse Call Communication System Nurse Call Communication System GE is making a renewed commitment to health. With the same spirit of innovation that inspired Thomas Edison to develop the light bulb, we re putting our energy into creating

More information

Publication Development Guide Patent Risk Assessment & Stratification

Publication Development Guide Patent Risk Assessment & Stratification OVERVIEW ACLC s Mission: Accelerate the adoption of a range of accountable care delivery models throughout the country ACLC s Vision: Create a comprehensive list of competencies that a risk bearing entity

More information

Money and Members: Pay for Performance in a Medicaid Program

Money and Members: Pay for Performance in a Medicaid Program Money and Members: Pay for Performance in a Medicaid Program IHA National Pay for Performance Summit March 9, 2010 Greg Buchert, MD, MPH Chief Operating Officer 1 AGENDA CalOptima Overview CalOptima P4P

More information

LOS ANGELES COUNTY SHERIFF S DEPARTMENT REQUEST FOR INFORMATION RFI NUMBER 652 SH ONLINE TRAFFIC REPORTS (OLTR)

LOS ANGELES COUNTY SHERIFF S DEPARTMENT REQUEST FOR INFORMATION RFI NUMBER 652 SH ONLINE TRAFFIC REPORTS (OLTR) LOS ANGELES COUNTY SHERIFF S DEPARTMENT REQUEST FOR INFORMATION RFI NUMBER 652 SH ONLINE TRAFFIC REPORTS (OLTR) May 2018 Prepared By These guidelines are intended to provide general information only and

More information

Department of Defense Fiscal Year (FY) 2015 IT President's Budget Request Defense Prisoner of War/Missing Personnel Office

Department of Defense Fiscal Year (FY) 2015 IT President's Budget Request Defense Prisoner of War/Missing Personnel Office Mission Area Business System Breakout Appropriation BMA 0.003 Total 3.293 Defense Business Systems 0.243 EIEMA 3.290 All Other Resources 3.050 FY 2015 ($M) FY 2015 ($M) OPERATIONS 3.293 FY 2015 ($M) FY14

More information

HealthTech Opportunity. Frans van Houten CEO Royal Philips September 23, 2014

HealthTech Opportunity. Frans van Houten CEO Royal Philips September 23, 2014 HealthTech Opportunity Frans van Houten CEO Royal Philips September 23, 2014 Key takeaways We have strong businesses across the Health Continuum Consumer Lifestyle businesses showing strong growth and

More information

On Sharing Infrastructure Resources using Online Social Networks

On Sharing Infrastructure Resources using Online Social Networks On Sharing Infrastructure Resources using Online Social Networks Shailesh H. Dinde 1, Arati M. Dixit 2 1. Department of Computer Engineering, PVPIT/JSPM, Bavdhan, Pune, Maharashtra, India 2. Department

More information

From Stove-pipe to Network Centric Leveraging Technology to Present a Unified View

From Stove-pipe to Network Centric Leveraging Technology to Present a Unified View From Stove-pipe to Network Centric Leveraging Technology to Present a Unified View Medhat A. Abuhantash U.S. Army, Communications and Electronics Command (CECOM), Software Engineering Center (SEC), Battlespace

More information

Mr. Vincent Grizio Program Manager MISSION SUPPORT SYSTEMS (MSS)

Mr. Vincent Grizio Program Manager MISSION SUPPORT SYSTEMS (MSS) RSC SPECIAL OPERATIONS FORCES INDUSTRY CONFERENCE Win Transform People Mr. Vincent Grizio Program Manager MISSION SUPPORT SYSTEMS (MSS) DISTRIBUTION A: APPROVED FOR PUBLIC RELEASE Program Manager Mission

More information

HOUSTON FIRST CORPORATION 2018 TOURISM INCENTIVE PROGRAM GUIDELINES AND APPLICATION INFORMATION

HOUSTON FIRST CORPORATION 2018 TOURISM INCENTIVE PROGRAM GUIDELINES AND APPLICATION INFORMATION HOUSTON FIRST CORPORATION 2018 TOURISM INCENTIVE PROGRAM GUIDELINES AND APPLICATION INFORMATION PROGRAM OVERVIEW The Houston First Corporation (HFC) and its tourism marketing arm, Visit Houston, are proud

More information

AGENDA / OBJECTIVES: NURSE LEADER INTENSIVE

AGENDA / OBJECTIVES: NURSE LEADER INTENSIVE DAY ONE (9am - 5pm) 9am Introductions/ ice breaker Opening Circle (.5) 9:45 am NURSE LEADER ROLE in TRANSFORMATION (1.5) Desired Outcomes 10:15 Break 10:30 Leadership vs Manager Define Transformational

More information

Company Overview. Copyright 2014 Accenture All rights reserved. 1

Company Overview. Copyright 2014 Accenture All rights reserved. 1 Company Overview Copyright 2014 Accenture All rights reserved. 1 About us Copyright 2015 Accenture All rights reserved. 2 Accenture is a leading professional services company, with capabilities in strategy,

More information

The Loop Media Hub. Gigabit Economic Development Impact Statement. Prepared for: The Loop Media Hub Feasability Study. June 27, 2012.

The Loop Media Hub. Gigabit Economic Development Impact Statement. Prepared for: The Loop Media Hub Feasability Study. June 27, 2012. Sandel & Associates The Loop Media Hub Gigabit Economic Development Impact Statement Prepared for: The Loop Media Hub Feasability Study June 27, 2012 Prepared by: Special Advisor Pat McKeehan 6900 Delmar

More information

Roadblocks to a Successful Census

Roadblocks to a Successful Census Why Are We Here? California Department of Finance Informational s 017 Counting Every Californian Local Update of Addresses () Local jurisdictions have three chances to affect the accuracy of the : NOW

More information

High Performance Computing for Engineers

High Performance Computing for Engineers High Performance Computing for Engineers David Thomas dt10@ic.ac.uk Room 903 HPCE / dt10/ 2013 / 0.1 High Performance Computing for Engineers Research Testing communication protocols Evaluating signal-processing

More information

Recent Developments in Global IP Protection Systems and their Advantages for Developing Countries

Recent Developments in Global IP Protection Systems and their Advantages for Developing Countries Recent Developments in Global IP Protection Systems and their Advantages for Developing Countries From the Madrid System perspective Neil WILSON Director, Functional Support Division Brands and Designs

More information

Broadband Internet Affordability

Broadband Internet Affordability Broadband Internet Affordability 1. Does it matter at the first place? 2. Why broadband access should be universal and affordable, and why connecting more people with the information, education, and health

More information

Investment in ICT and Broadband for Economic Recovery and Long-Term Growth

Investment in ICT and Broadband for Economic Recovery and Long-Term Growth 2009/TEL40/DSG-LSG/WKSP/005 Investment in ICT and Broadband for Economic Recovery and Long-Term Growth Submitted by: ITIF Workshop on Enabling ICT Infrastructure Investment for Growth and Recovery Cancun,

More information

Spatial Incident Response Data Technical Interchange. April 17, 2014

Spatial Incident Response Data Technical Interchange. April 17, 2014 Spatial Incident Response Data Technical Interchange April 17, 2014 What We Do All emergencies are local where the role is to respond to observed impacts and identified threats with resources that protect

More information

Department of Defense DIRECTIVE

Department of Defense DIRECTIVE Department of Defense DIRECTIVE NUMBER 8320.2 December 2, 2004 ASD(NII)/DoD CIO SUBJECT: Data Sharing in a Net-Centric Department of Defense References: (a) DoD Directive 8320.1, DoD Data Administration,

More information

Global 500 Web Site Recruiting 2002 Survey

Global 500 Web Site Recruiting 2002 Survey Global 500 Web Site Recruiting 2002 Survey An Internet Intelligence Report by ilogos Research Contacts for ilogos Research: West Coast: Yves Lermusiaux (yves@ilogos.com) 415.538.9068 x607 East Coast: Alice

More information

MCKINSTRY INNOVATION CENTER

MCKINSTRY INNOVATION CENTER MCKINSTRY INNOVATION CENTER SEATTLE, Washington MCKINSTRY INNOVATION CENTER Seattle, Washington A HIVE FOR GREEN BUSINESS Set on the dynamic McKinstry campus, the Innovation Center provides flexible office

More information

Siebel Installation Guide for Microsoft Windows. Siebel Innovation Pack 2015, Rev. D November 2015

Siebel Installation Guide for Microsoft Windows. Siebel Innovation Pack 2015, Rev. D November 2015 Siebel Installation Guide for Microsoft Windows Siebel Innovation Pack 2015, Rev. D November 2015 Copyright 2005, 2015 Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

UNCLASSIFIED UNCLASSIFIED

UNCLASSIFIED UNCLASSIFIED EXHIBIT R-2, RDT&E Budget Item Justification APPROPRIATION/BUDGET ACTIVITY R-1 ITEM NOMENCLATURE RESEARCH DEVELOPMENT TEST & EVALUATION, NAVY / BA-7 0305192N - JOINT MILITARY INTELLIGENCE PROGRAM Prior

More information

Request for Proposals Nutanix Hyperconverged Infrastructure Solution

Request for Proposals Nutanix Hyperconverged Infrastructure Solution INTRODUCTION Request for Proposals Nutanix Hyperconverged Infrastructure Solution Through this Request for Proposals ( RFP ), RIHousing seeks proposals from qualified reseller partner to provide pricing

More information

Happy patients, healthy patients. Solutions for interactive patient care

Happy patients, healthy patients. Solutions for interactive patient care Happy patients, healthy patients Solutions for interactive patient care A new era of patient care Fueled by the current healthcare climate, healthcare enterprises have been looking for ways to integrate

More information

ERA-Net Smart Energy Systems. Flux 50, Brussels June 7, 2018 Welcome! The webinar will start soon.

ERA-Net Smart Energy Systems. Flux 50, Brussels June 7, 2018 Welcome! The webinar will start soon. ERA-Net Smart Energy Systems Flux 50, Brussels June 7, 2018 Welcome! The webinar will start soon. ERA-Net Smart Energy Systems Webinar on RegSys call June 14, 2018, 14-15h CEST Agenda About ERA-Net Smart

More information

CENGN Summit December 7, 2017 Strategic Program Development and Delivery Office

CENGN Summit December 7, 2017 Strategic Program Development and Delivery Office Ministry of Research, Innovation and Science / Ministry of Economic Development and Growth CENGN Summit December 7, 2017 Strategic Program Development and Delivery Office The Digital Economy is growing

More information

PDMS to S3D Plant Migration

PDMS to S3D Plant Migration PDMS to S3D Plant Migration Webinar on April 6 th, 2016 Session 1: Europe / Asia Pacific starts at 3pm Singapore Session 2: Americas / Europe starts at 11pm Singapore Your presenters Raghu Krishnamoorthy

More information

Link: Phone: Link:

Link:    Phone: Link: Link: http://business-fundas.com Email: Editor.webposts@gmail.com Phone: +91-70421-30512 Link: http://tech-talk.org Business Fundas is an educational initiative on business management providing actionable

More information

Innovation for Poverty Alleviation

Innovation for Poverty Alleviation EUROPEAN COMMISSION Andris Piebalgs Development Commissioner Innovation for Poverty Alleviation Side event to the 5 th Bilateral Annual EU-South Africa Summit on the role of science and technology as tool

More information

The Omohundro Institute of Early American History and Culture Conference Proposal Guide

The Omohundro Institute of Early American History and Culture Conference Proposal Guide The Omohundro Institute of Early American History and Culture Conference Proposal Guide Welcome Thank you for your interest in co-sponsoring a conference with the Omohundro Institute of Early American

More information

Defense Transformation

Defense Transformation Defense Transformation Building the Foundation: Net-Centric Operations and IPv6 John Osterholz Director, Architecture & Interoperability DoD Chief Information Officer 1 john.osterholz@osd.mil Where We

More information

Joint Staff J7 / Deputy Director for Joint Training

Joint Staff J7 / Deputy Director for Joint Training Joint Staff J7 / Deputy Director for Joint Training Joint Theater Level Simulation Global Operations Don Weter, CIV Joint Staff J7 Environment Operations Division Program Manager M&S Analysis Larry Hose,

More information

Enhancing Productivity of Recruitment Process Using Data mining & Text Mining Tools

Enhancing Productivity of Recruitment Process Using Data mining & Text Mining Tools San Jose State University SJSU ScholarWorks Master's Projects Master's Theses and Graduate Research Fall 2011 Enhancing Productivity of Recruitment Process Using Data mining & Text Mining Tools Charul

More information

The Croatian Armed Forces Training Simulations Program

The Croatian Armed Forces Training Simulations Program The Croatian Armed Forces Training Simulations Program By Major Richard B. Liebl, U.S. Army Office of Defense Cooperation, Zagreb In February 2001, the Croatian Armed Forces officially opened the Croatian

More information

ONESOURCE Indirect Tax Reporting 6

ONESOURCE Indirect Tax Reporting 6 ONESOURCE Indirect Tax Reporting 6 ONESOURCE Indirect Tax The Tax & Accounting Business of Thomson Reuters Presenter: Nick Vallely March 14, 2013 Upcoming Events Webinars: March 21, 2013-10AM PT (2PM ET)

More information

Using Trustwave SEG Cloud with Exchange Server

Using Trustwave SEG Cloud with Exchange Server .trust Using Trustwave SEG Cloud with Exchange Server Table of Contents About This Document 1 1 Trustwave SEG Cloud with Exchange Server 2 2 Networking and DNS Setup 2 3 Provisioning Trustwave SEG Cloud

More information

INNOVATIONS IN CARE MANAGEMENT. Michael Burcham, Narus Health

INNOVATIONS IN CARE MANAGEMENT. Michael Burcham, Narus Health INNOVATIONS IN CARE MANAGEMENT Michael Burcham, Narus Health Innovations in Care Management Dr. Michael Burcham, CEO Narus Health Part 1 Care Management Trends & Headwinds Four Mega Trends Transforming

More information

Ranked #1 on Google! trade show news network. unrivaled access to your industry. The Ultimate Event Resource

Ranked #1 on Google! trade show news network. unrivaled access to your industry. The Ultimate Event Resource Ranked #1 trade show news network unrivaled access to your industry 135,000 registered members 42,000 exhibiting companies 30,000 newsletter subscribers 16,000 event producers, meeting planners and trade

More information

ELY AREA BROADBAND COALITION (ELY ABC)- BROADBAND FEASIBILITY STUDY REQUEST FOR PROPOSAL

ELY AREA BROADBAND COALITION (ELY ABC)- BROADBAND FEASIBILITY STUDY REQUEST FOR PROPOSAL ELY AREA BROADBAND COALITION (ELY ABC)- BROADBAND FEASIBILITY STUDY REQUEST FOR PROPOSAL INTRODUCTION The Ely ABC and the Ely Economic Development Authority- (EEDA) are seeking proposals for a broadband

More information

DREAM IT PROJECTS RESUME BUILDER. DREAM IT Projects Contact: Page 1

DREAM IT PROJECTS RESUME BUILDER.   DREAM IT Projects Contact: Page 1 DREAM IT PROJECTS RESUME BUILDER www.dreamitprojects.com DREAM IT Projects Contact: 9870699963 9870645416 Page 1 Contents 1. Abstract... 3 2. Proposed Solution:... 4 3. Block Diagram... 4 4. Data Flow

More information

National Grid Ventures. Lisa Lambert, SVP, CTIO June 2018

National Grid Ventures. Lisa Lambert, SVP, CTIO June 2018 National Grid Ventures Lisa Lambert, SVP, CTIO June 2018 Lisa Lambert Education MBA, Harvard Business School BS/MIS, Pennsylvania State University Executive Education, Stanford University UPWARD www.upwardwomen.org/

More information

UNCLASSIFIED. R-1 Program Element (Number/Name) PE D8Z / International Intelligence Technology and Architectures. Prior Years FY 2013 FY 2014

UNCLASSIFIED. R-1 Program Element (Number/Name) PE D8Z / International Intelligence Technology and Architectures. Prior Years FY 2013 FY 2014 Exhibit R-2, RDT&E Budget Item Justification: PB 2015 Office of Secretary Of Defense Date: March 2014 0400: Research, Development, Test & Evaluation, Defense-Wide / BA 7: Operational Systems Development

More information

Playing to Win in MSSP HEALTH ENDEAVORS

Playing to Win in MSSP HEALTH ENDEAVORS Playing to Win in MSSP FEBRUARY 16, 2016 HEALTH ENDEAVORS 2016 1-888-862-0366 1 CMS Portals Who is responsible? MFT, HPMS, ACO PORTLET, QNET, EIDM, CAHPS, PUBLIC REPORTING HEALTH ENDEAVORS 2016 1-888-862-0366

More information

Call for Proposals Computer Science / Information Systems Mini-Grants 2017/2018

Call for Proposals Computer Science / Information Systems Mini-Grants 2017/2018 Jomo Kenyatta Memorial Library University of Nairobi P.O. Box 30244 00100, Nairobi 0732 150 500 / 0703 044 500 info@kenet.or.ke www.kenet.or.ke Call for Proposals Computer Science / Information Systems

More information

MERG: Mountain Empire Regional Geographic Information System Project

MERG: Mountain Empire Regional Geographic Information System Project MERG: Mountain Empire Regional Geographic Information System Project Washington County, VA 2011 VACO Achievement Awards Page 1 of 8 2011 VACO ACHIEVEMENT AWARD MERG: Mountain Empire Regional Geographic

More information

The Wesley Clover Company Development Model

The Wesley Clover Company Development Model Building Businesses The Wesley Clover Company Development Model Managing Risks while Developing Tech Companies for Global Markets 2015 1 The information and images contained in this presentation may not

More information

BIRMINGHAM CITY COUNCIL PUBLIC REPORT

BIRMINGHAM CITY COUNCIL PUBLIC REPORT BIRMINGHAM CITY COUNCIL PUBLIC REPORT Report to: CABINET Report of: Strategic Director for Major Projects Date of Decision: 22 nd March 2016 SUBJECT: BIG DATA CORRIDOR: A NEW BUSINESS ECONOMY SUBMISSION

More information

IBM in China A Short Overview

IBM in China A Short Overview IBM in China A Short Overview IBM in China A Short Overview 2 Our journey of growth with China IBM re-established its business relations with China in 1979, shortly after the country announced its economic

More information

Mohamed Ismail, MD, MPH; Lance Miller, MA; Andrea Rodriguez, MS; Eric Frykman, MD, MPH, MBA

Mohamed Ismail, MD, MPH; Lance Miller, MA; Andrea Rodriguez, MS; Eric Frykman, MD, MPH, MBA Mohamed Ismail, MD, MPH; Lance Miller, MA; Andrea Rodriguez, MS; Eric Frykman, MD, MPH, MBA All thanks and praise are due to God, the most Compassionate, all Merciful Acknowledgements Co authors on this

More information

Price: $9,679,538 Rent: $629,170 ($10.00 PSF) CAP: 6.50%

Price: $9,679,538 Rent: $629,170 ($10.00 PSF) CAP: 6.50% Representative Photo Academy Sports with Hobby Lobby, Burlington Coat, Warren Theatre, Chick-Fil-A and Murphy USA 5635 SE 15th St Oklahoma City, OK 73110 Price: $9,679,538 Rent: $629,170 ($10.00 PSF) CAP:

More information

The Concept of C2 Communication and Information Support

The Concept of C2 Communication and Information Support The Concept of C2 Communication and Information Support LTC. Ludek LUKAS Military Academy/K-302 Kounicova str.65, 612 00 Brno, Czech Republic tel.: +420 973 444834 fax:+420 973 444832 e-mail: ludek.lukas@vabo.cz

More information

The Domain Name Association ICANN Durban Update.

The Domain Name Association ICANN Durban Update. The Domain Name Association ICANN Durban Update 1 Agenda The Domain Name Industry Our Mission Key Messages Current Status Benefits to Joining the DNA Educational Website Next Steps 2 The Domain Name Industry

More information

Give your company a competitive advantage in the global marketplace

Give your company a competitive advantage in the global marketplace G L O B A L A D V A N T A G E BUSINESS KNOWS NO BOUNDARIES Give your company a competitive advantage in the global marketplace Global Advantage creates real-world solutions by meeting the challenges that

More information

MEETING NOTICE AND AGENDA ECONOMIC DEVELOPMENT ADVISORY COMMISSION

MEETING NOTICE AND AGENDA ECONOMIC DEVELOPMENT ADVISORY COMMISSION MEETING NOTICE AND AGENDA ECONOMIC DEVELOPMENT ADVISORY COMMISSION Thursday, January 29, 2015 3:00PM 5:00PM 922 Machin Avenue, Novato 94945 Baget Conference Room, 2 nd Floor A. Call to Order Chairman John

More information

Mississippi Division of Medicaid Leverages MedeAnalytics to Become First Medicaid Agency in the Nation to Exchange Clinical Data

Mississippi Division of Medicaid Leverages MedeAnalytics to Become First Medicaid Agency in the Nation to Exchange Clinical Data Mississippi Division of Medicaid Leverages MedeAnalytics to Become First Medicaid Agency in the Nation to Exchange Clinical Data Data Analytics Leader Establishes Interface between Medicaid and State s

More information

GOOD PRACTICE. Leeds City Region Growth Programme

GOOD PRACTICE. Leeds City Region Growth Programme GOOD PRACTICE Leeds City Region Growth Programme ORGANISATION: Wakefield Council TOPIC: Penetration of territories and attraction of investment TOPIC OF THE GOOD PRACTICE The topic of this best practice

More information

Optum capability landscape. Modernising infrastructure. Advancing care. Empowering consumers.

Optum capability landscape. Modernising infrastructure. Advancing care. Empowering consumers. Optum capability landscape Modernising infrastructure. Advancing care. Empowering consumers. Optum is a leading health services and innovation company dedicated to helping make the health system work better

More information

IMPROVE THE PLANNING, OPERATION AND MAINTENANCE OF TRANSPORT INFRASTRUCTURES

IMPROVE THE PLANNING, OPERATION AND MAINTENANCE OF TRANSPORT INFRASTRUCTURES TACKLE REAL CHALLENGES BY USING EARTH OBSERVATION TECHNOLOGY IMPROVE THE PLANNING, OPERATION AND MAINTENANCE OF TRANSPORT INFRASTRUCTURES Submit your solution until 30.06.2017 The FabSpace 2.0 project

More information

UNCLASSIFIED. COST (in millions) FY02 FY03 FY04 FY05 FY06 FY07 FY08 FY09

UNCLASSIFIED. COST (in millions) FY02 FY03 FY04 FY05 FY06 FY07 FY08 FY09 Exhibit R-2, RDT&E Budget Item Justification R-1 ITEM NOMENCLATURE C4I for the Warrior/PE 0303149K COST (in millions) FY02 FY03 FY04 FY05 FY06 FY07 FY08 FY09 Total Program Element (PE) 0 19.914 37.100

More information