How To Manage A Server On A Microsoft Microsoft Powerbook 2.5 (Powerbook 2) (Powerware) (For Microsoft) (Microsoft) And Powerbook (Powerpoint 2) On A

Size: px
Start display at page:

Download "How To Manage A Server On A Microsoft Microsoft Powerbook 2.5 (Powerbook 2) (Powerware) (For Microsoft) (Microsoft) And Powerbook 1.5.2 (Powerpoint 2) On A"

Transcription

1 Control-M As an Application Management Platform 10/2015 Vedran Vesel, Imaves Control-M stručnjak

2 Control-M 9 Unmatched application workflow automation Lowering TCO Increasing application deployment speed Gartner Magic Quadrant for Workload Automation

3 BMC Control-M Workload Automation Recent Releases Single Point of Control Service Level Management Self Service & Mobility Audit & Compliance Application Integrator Application Hub Archiving Workload Change Manager JCL Verify Mobile App Big Data / Hadoop Databases (Hana, Teradata, more ) Oracle Retail SAP IBM Cognos Backup Workload Conversion & Discovery Java, Messaging & Web Services BMC Confidential Subject to Change

4 The Only Constant is Change

5 Legacy Application Lifecycle Zero Value Value D ES I G N D EV E L O P T ES T D EP L O Y R U N 5

6 The Workload Change Request Lifecycle #&?!!! #&?!!! BMC Control-M Workload Change Manager #&?!!! #&?!!! #&?!!!

7 Workload Change Manager : Functionality Web interface, easy and intuitive, for requesting or modifying batch processes Available items and features (job types, actions, etc) can be configured depending on the end user Site standards & naming conventions enforcement Follow-up for each request status, with optional notification Tracks and audits all changes Integration with external Workflow and Change Management systems

8 Workload Change Manager : Benefits Standardize the workload change request process Avoid mistakes that can lead to potential problems on business services Enforce the predefined standards and naming conventions Totally audited process Accelerate the go-live of new business processes Avoid a manual, slow and error prone process Enable an easy development of batch workflows for developers and other users Immediate notification of the requests statuses Save time for both the users requesting the change and the administrators Thanks to a intuitive interface for users and a total integration in the administrator console With an automatic update in the change management system, avoiding additional time needed to update it manually

9 Customer case Itau Unibanco accelerates change process by 80% 80 % Reduction 400K daily jobs; over a million defined in total About 60,000 change requests monthly 15 schedulers dedicated to making changes Current process is Help desk ticket, , phone Expect 80% reduction in tickets and time Addresses compliance, audit and security gaps

10 BIG DATA

11 Boeing 787 generates an average of 500GB of system data a flight Airbus A380 is fitted with as many as 25,000 sensors capturing 8,000+ data points per second Airlines are looking to use emerging technologies, such as Hadoop and sophisticated data mining algorithms, to capture unstructured data Operations Bag tracking data Ticketing data Scheduling data Capturing sensor data Optimize maintenance Minimize downtime Forecasting the weather to optimize fuel loads Optimization of flight path / Trajectory corrections Flaps Data Wingtips Improved gas mileage System Data Customer Loyalty 360 degree view of the customer 150+ variables about each customer Enhance customer value Cultivate high-value customers Engine data One cross-country flight GE jet engines collect information at 5,000 data points per second 20 TB x 2 x 6 x 28,537 x 365 Info per engine per hour Engines hours Commercial flights per day in the U.S. = 2,499,841,200 TB Days per year

12 Hadoop Traditional

13 Big Data The Batch Challenge Nearly 100% of processing in Hadoop is batch Scheduling tools available for Hadoop: Open source tools like Oozie, Spring, Azkaban Batch scheduling tools are version 1 at best Batch jobs are hand-written scripts Tools are used for scheduling jobs not creating and managing workflows

14 Programmers program SQL Query Informatica File Transfer Hadoop #!/usr/bin/sh # Sample pmcmd script set pagesize 0 linesize 80 feedback off SELECT 'The database ' instance_name ' has been running since ' to_char(startup_time, 'HH24:MI MM/DD/YYYY') FROM v$instance; SELECT 'There are ' count(status) ' data files with a status of ' status FROM dba_data_files GROUP BY status ORDER BY status; SELECT 'The total storage used by the data files is ' sum(bytes)/1024/1024 ' MB' FROM dba_data_files; #!/usr/bin/bash # Sample pmcmd script # Check if the service is alive pmcmd pingservice -sv testservice -d testdomain if [ "$?"!= 0 ]; then # handle error echo "Could not ping service" exit fi # Get service properties pmcmd getserviceproperties -sv testservice -d testdomain if [ "$?"!= 0 ]; then # handle error echo "Could not get service properties" exit fi # Get task details for session task "s_testsessiontask" of workflow # "wf_test_workflow" in folder "testfolder" pmcmd gettaskdetails -sv testservice -d testdomain -u Administrator -p adminpass -folder testfolder -workflow wf_test_workflow s_testsessiontask if [ "$?"!= 0 ]; then # handle error echo "Could not get details for task s_testsessiontask" exit fi #!/bin/ksh cd /home/bmcu1ser/ftp_race_source sftp -b /dev/stdin -o Cipher=blowfish -o Compression=yes -o BatchMode=yes -o IdentityFile=/export/home/user/.ssh/id_rsa -o Port=22 bmcus1ser@hou-hadoopmstr 1>sftp.log 2>&1 <<ENDSFTP if [ -f /home/bmcu1ser/ftp_race_target/daily_shipment_log ]; then exit 1 else put daily_shipment_log /home/bmcu1ser/ftp_race_target fi quit ENDSFTP rc=$? if [[ $rc!= 0 ]]; then print "***Error occurred...$rc" `date "+%Y-%m-%d-%H.%M.%S"` if [[ -f /home/bmcu1ser/ftp_race_target/daily_shipment_log ]]; then rm /home/bmcu1ser/ftp_race_target/daily_shipment_log fi else mv /home/bmcu1ser/ftp_race_source/daily_shipment_log /home/bmcu1ser/ftp_race_source/old/daily_shipment_log print "***Successful transfer...$rc" `date "+%Y-%m-%d-%H.%M.%S"` fi #!/usr/bin/env bash bin=`dirname "$0"` bin=`cd "$bin"; pwd`. "$bin"/../libexec/hadoop-config.sh #set the hadoop command and the path to the hadoop jar HADOOP_CMD="${HADOOP_PREFIX}/bin/hadoop --config $HADOOP_CONF_DIR #find the hadoop jar HADOOP_JAR=' #find under HADOOP_PREFIX (tar ball install) HADOOP_JAR=`find ${HADOOP_PREFIX} -name 'hadoop--*.jar' head -n1` #if its not found look under /usr/share/hadoop (rpm/deb installs) if [ "$HADOOP_JAR" == '' ]then HADOOP_JAR=`find /usr/share/hadoop -name 'hadoop--*.jar' head -n1` fi #if it is still empty then dont run the tests if [ "$HADOOP_JAR" == '' ]then echo "Did not find hadoop--*.jar under '${HADOOP_PREFIX} or '/usr/share/hadoop'" exit 1 fi #dir where to store the data on hdfs. The data is relative of the users home dir on hdfs. PARENT_DIR="validate_deploy_`date+%s` TERA_GEN_OUTPUT_DIR="${PARENT_DIR}/tera_gen_data TERA_SORT_OUTPUT_DIR="${PARENT_DIR}/tera_sort_data

15 What happens when this runs? What is related to what? Are we on time or late? What if something fails? Which program was running? Where is the output? How do I fix it? Can I just rerun it? If so, from the beginning? Does any cleanup have to be done? How do I track this problem and the steps taken to resolve the problem? Hadoop #!/usr/bin/env bash bin=`dirname "$0"` bin=`cd "$bin"; pwd`. "$bin"/../libexec/hadoop-config.sh #set the hadoop command and the path to the hadoop jar HADOOP_CMD="${HADOOP_PREFIX}/bin/hadoop --config $HADOOP_CONF_DIR #find the hadoop jar HADOOP_JAR=' #find under HADOOP_PREFIX (tar ball install) HADOOP_JAR=`find ${HADOOP_PREFIX} -name 'hadoop--*.jar' head -n1` #if its not found look under /usr/share/hadoop (rpm/deb installs) if [ "$HADOOP_JAR" == '' ]then HADOOP_JAR=`find /usr/share/hadoop -name 'hadoop--*.jar' head -n1` fi #if it is still empty then dont run the tests if [ "$HADOOP_JAR" == '' ]then echo "Did not find hadoop--*.jar under '${HADOOP_PREFIX} or '/usr/share/hadoop'" exit 1 fi #dir where to store the data on hdfs. The data is relative of the users home dir on hdfs. PARENT_DIR="validate_deploy_`date+%s` TERA_GEN_OUTPUT_DIR="${PARENT_DIR}/tera_gen_data TERA_SORT_OUTPUT_DIR="${PARENT_DIR}/tera_sort_data

16 A better way SQL Query Informatica File Transfer Hadoop BMC Control-M

17 Defining Control-M for Hadoop jobs Hadoop Program parameters HDFS commands

18 A better way

19 And the fun is just beginning

20 Integration for All Applications

21 Applications. And More Applications Workload Automation Survey Teradata Microsoft SQL Server Reporting Services (SSRS) Microsoft SQL Server Analysis Services (SSAS) SAS Microstrategy Tibco Analytics Splunk Enterprise Qlikview Other Tableau Pentaho SPSS Splunk Microsoft Access Informix SQLite HP Vertica Cassandra MariaDB Neo4j Redis Salesforce.com Oracle JD Edwards EnterpriseOne Workdays Other Concur Infor Lawson Oracle Flexcube (iflex) Accenture Alnova TCS BaNCS (Tata Consulting services) core banking solution Infosys Finance

22 Control-M Application Integrator Build applications faster Reduce scripting effort Rapid deployment of new applications or application changes Minimize risk and downtime in case of job failures

23 Applications & Platforms

24 Native application plug-ins Taking advantage of all CONTROL-M workload automation offerings Predefined connection profiles holding secured credentials Eliminate copy/paste or manually typing of job attributes Automatic load of input parameters, allow use of variables inputs Control level of details to include in job output for auto recovery Advanced controls including restart from point of failure

25 Automation steps in a job Execute Start the Job in the application Progress Monitor job progress and determine completion Abort Terminate the application job interactively Output Retrieve the job output from the application

26 New Type of Job in Control-M Job available in the Templates Manager

27 Application Integrator A workload automation design tool that connects applications and process so business services are quickly and reliably delivered to customers Innovation Made Easy Increase Value The Power of Many

28 Advanced File Transfer

29 Control-M Control Module for Advanced File Transfer Integrate file transfers into automated workflows: Manage FTP transfers securely Eliminate lag time between file transfers and subsequent processing steps Gain instant visibility into the status of your transfers. Use automated recovery capabilities to improve reliability.

30 Control-M for SAP 8 Optimize your SAP environment XBP 3.0 certification Conversion Coming next SAP Process Integration (PI) Solution Manager Financial Closing Cockpit (FCC) BMC Confidential Subject to Change

31 Oracle Retail Quickly integrate Oracle Retail jobs into your workload automation environment Oracle Retail Merchandising System (RMS) Oracle Retail Price Management (RPM) Support release 13.x and higher

32 Executive Summary Control-M 9 Why Control-M 9? Leading Workload Automation Solution in the market History of innovation and investment On-going customers engagement Record breaking CXI Key Elements Unmatched application workflow automation Lowering TCO Increasing application deployment speed Release Highlights Automated agent and client deployment Runtime analytics High Availability Automated application workflow promotion between environments

33 Our commitment remaining focused on customers.

34 Hvala na pažnji! TM Bring IT to Life.

Control-M As an Application Management Platform

Control-M As an Application Management Platform Control-M As an Application Management Platform Zagreb Lipanj 2015 Vedran Vesel, Imaves Control-M stručnjak Legal Notice The information contained in this presentation is the confidential information of

More information

Oozie or Easy. Managing Hadoop Workflows The EASY Way. John Crespin BMC So0ware

Oozie or Easy. Managing Hadoop Workflows The EASY Way. John Crespin BMC So0ware Oozie or Easy Managing Hadoop Workflows The EASY Way John Crespin BMC So0ware Interest is HUGE, ProducCon use is low One top reason cited: Hadoop Adoption Barriers DifficulCes IntegraCng with ExisCng Merv

More information

Big Business, Big Data, Industrialized Workload

Big Business, Big Data, Industrialized Workload Big Business, Big Data, Industrialized Workload Big Data Big Data 4 Billion 600TB London - NYC 1 Billion by 2020 100 Million Giga Bytes Copyright 3/20/2014 BMC Software, Inc 2 Copyright 3/20/2014 BMC Software,

More information

Peninsula Strategy. Creating Strategy and Implementing Change

Peninsula Strategy. Creating Strategy and Implementing Change Peninsula Strategy Creating Strategy and Implementing Change PS - Synopsis Professional Services firm Industries include Financial Services, High Technology, Healthcare & Security Headquartered in San

More information

Solution White Paper Connect Hadoop to the Enterprise

Solution White Paper Connect Hadoop to the Enterprise Solution White Paper Connect Hadoop to the Enterprise Streamline workflow automation with BMC Control-M Application Integrator Table of Contents 1 EXECUTIVE SUMMARY 2 INTRODUCTION THE UNDERLYING CONCEPT

More information

Tips and Techniques on how to better Monitor, Manage and Optimize your MicroStrategy System High ROI DW and BI Solutions

Tips and Techniques on how to better Monitor, Manage and Optimize your MicroStrategy System High ROI DW and BI Solutions Tips and Techniques on how to better Monitor, Manage and Optimize your MicroStrategy System InfoCepts 'LJLWDOO\ VLJQHG E\,QIR&HSWV '1 FQ,QIR&HSWV JQ,QIR&HSWV F 8QLWHG 6WDWHV O 86 R,QIR&HSWV RX,QIR&HSWV

More information

BMC Control-M Workload Automation

BMC Control-M Workload Automation solution overview BMC Control-M Workload Automation Accelerating Delivery of Digital Services with Workload Management Table of Contents 1 SUMMARY 2 FASTER AND CHEAPER DYNAMIC WORKLOAD MANAGEMENT Minimize

More information

Scheduling in SAS 9.4 Second Edition

Scheduling in SAS 9.4 Second Edition Scheduling in SAS 9.4 Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. Scheduling in SAS 9.4, Second Edition. Cary, NC: SAS Institute

More information

Guardium Change Auditing System (CAS)

Guardium Change Auditing System (CAS) Guardium Change Auditing System (CAS) Highlights. Tracks all changes that can affect the security of database environments outside the scope of the database engine Complements Guardium's Database Activity

More information

Application Management Services

Application Management Services Application Management Services Application Development Key Initiative Overview Structured Approach Strategize and Plan Develop Governance Drive Change Management Execute Measure and Improve Data source:

More information

New Features... 1 Installation... 3 Upgrade Changes... 3 Fixed Limitations... 4 Known Limitations... 5 Informatica Global Customer Support...

New Features... 1 Installation... 3 Upgrade Changes... 3 Fixed Limitations... 4 Known Limitations... 5 Informatica Global Customer Support... Informatica Corporation B2B Data Exchange Version 9.5.0 Release Notes June 2012 Copyright (c) 2006-2012 Informatica Corporation. All rights reserved. Contents New Features... 1 Installation... 3 Upgrade

More information

QlikView Business Discovery Platform. Algol Consulting Srl

QlikView Business Discovery Platform. Algol Consulting Srl QlikView Business Discovery Platform Algol Consulting Srl Business Discovery Applications Application vs. Platform Application Designed to help people perform an activity Platform Provides infrastructure

More information

INVESTOR PRESENTATION. First Quarter 2014

INVESTOR PRESENTATION. First Quarter 2014 INVESTOR PRESENTATION First Quarter 2014 Note to Investors Certain non-gaap financial information regarding operating results may be discussed during this presentation. Reconciliations of the differences

More information

Microsoft Business Intelligence solution. What makes Microsoft BI difference

Microsoft Business Intelligence solution. What makes Microsoft BI difference Business Intelligence today Microsoft Business Intelligence solution What makes Microsoft BI difference Case study and Demo Gartner BI Platform Software Revenue (in $Billions) CIO Priorities: Data Analysis

More information

Control-M Roadmap. BMC Control-M Seminar Series

Control-M Roadmap. BMC Control-M Seminar Series Control-M Roadmap BMC Control-M Seminar Series History of Leadership New Applications Support Control-M 8 Self Planning Control-M Simplified Packages AMIGO program Copyright 9/21/2011 BMC Software, Inc

More information

Scheduling in SAS 9.3

Scheduling in SAS 9.3 Scheduling in SAS 9.3 SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. Scheduling in SAS 9.3. Cary, NC: SAS Institute Inc. Scheduling in SAS 9.3

More information

Integrating Salesforce Using Talend Integration Cloud

Integrating Salesforce Using Talend Integration Cloud Integrating Salesforce Using Talend Integration Cloud Table of Contents Executive Summary 3 Why Integrate Salesforce? 3 Advances in Data and Application Integration 4 About Talend Integration Cloud 5 Key

More information

Cisco Tidal Enterprise Scheduler

Cisco Tidal Enterprise Scheduler Cisco Tidal Enterprise Scheduler Introduction to Automated Enterprise Job Scheduling Automated job scheduling is essential to complex data centers, because it helps them operate more efficiently and reliably.

More information

ENTERPRISE-CLASS MONITORING SOLUTION FOR EVERYONE ALL-IN-ONE OPEN-SOURCE DISTRIBUTED MONITORING

ENTERPRISE-CLASS MONITORING SOLUTION FOR EVERYONE ALL-IN-ONE OPEN-SOURCE DISTRIBUTED MONITORING ENTERPRISE-CLASS MONITORING SOLUTION FOR EVERYONE ALL-IN-ONE OPEN-SOURCE DISTRIBUTED MONITORING 1 CONTENTS About Zabbix Software... 2 Main Functions... 3 Architecture... 4 Installation Requirements...

More information

Cisco Tidal Enterprise Scheduler

Cisco Tidal Enterprise Scheduler Product Data Sheet Cisco Tidal Enterprise Scheduler Automation is critically important to organizations that are focused on unifying and standardizing data centers. Automation technology supports unified

More information

The Digital Enterprise Demands a Modern Integration Approach. Nada daveiga, Sr. Dir. of Technical Sales Tony LaVasseur, Territory Leader

The Digital Enterprise Demands a Modern Integration Approach. Nada daveiga, Sr. Dir. of Technical Sales Tony LaVasseur, Territory Leader The Digital Enterprise Demands a Modern Integration Approach Nada daveiga, Sr. Dir. of Technical Sales Tony LaVasseur, Territory Leader Yesterday s approach to data and application integration is a barrier

More information

Einsatzfelder von IBM PureData Systems und Ihre Vorteile.

Einsatzfelder von IBM PureData Systems und Ihre Vorteile. Einsatzfelder von IBM PureData Systems und Ihre Vorteile demirkaya@de.ibm.com Agenda Information technology challenges PureSystems and PureData introduction PureData for Transactions PureData for Analytics

More information

Control-M for Hadoop. Technical Bulletin. www.bmc.com

Control-M for Hadoop. Technical Bulletin. www.bmc.com Technical Bulletin Control-M for Hadoop Version 8.0.00 September 30, 2014 Tracking number: PACBD.8.0.00.004 BMC Software is announcing that Control-M for Hadoop now supports the following: Secured Hadoop

More information

EMA Radar for Workload Automation (WLA): Q2 2012

EMA Radar for Workload Automation (WLA): Q2 2012 EMA Radar for Workload Automation (WLA): Q2 2012 By Torsten Volk, Senior Analyst Enterprise Management Associates (EMA) June 2012 Introduction Founded in 2004, Network Automation focuses on automating

More information

RESEARCH NOTE TECHNOLOGY VALUE MATRIX SECOND HALF 2012 ANALYTICS THE BOTTOM LINE MARKET OVERVIEW. October 2012. Document M144

RESEARCH NOTE TECHNOLOGY VALUE MATRIX SECOND HALF 2012 ANALYTICS THE BOTTOM LINE MARKET OVERVIEW. October 2012. Document M144 RESEARCH NOTE TECHNOLOGY VALUE MATRIX SECOND HALF 2012 ANALYTICS THE BOTTOM LINE The future of analytics resides in end user data access and analysis. Over the past six months, companies have demanded

More information

Architecting for Big Data Analytics and Beyond: A New Framework for Business Intelligence and Data Warehousing

Architecting for Big Data Analytics and Beyond: A New Framework for Business Intelligence and Data Warehousing Architecting for Big Data Analytics and Beyond: A New Framework for Business Intelligence and Data Warehousing Wayne W. Eckerson Director of Research, TechTarget Founder, BI Leadership Forum Business Analytics

More information

Hadoop and Relational Database The Best of Both Worlds for Analytics Greg Battas Hewlett Packard

Hadoop and Relational Database The Best of Both Worlds for Analytics Greg Battas Hewlett Packard Hadoop and Relational base The Best of Both Worlds for Analytics Greg Battas Hewlett Packard The Evolution of Analytics Mainframe EDW Proprietary MPP Unix SMP MPP Appliance Hadoop? Questions Is Hadoop

More information

The ActiveBatch Integrated Jobs Library: Extensions Job Steps. The ActiveBatch Integrated Jobs Library: SSIS Job

The ActiveBatch Integrated Jobs Library: Extensions Job Steps. The ActiveBatch Integrated Jobs Library: SSIS Job IT organizations are managing an expanding array of applications, databases and technologies. Businesses are operating in a real-time world where IT demands are becoming increasingly complex. More advanced

More information

A Tour of the Zoo the Hadoop Ecosystem Prafulla Wani

A Tour of the Zoo the Hadoop Ecosystem Prafulla Wani A Tour of the Zoo the Hadoop Ecosystem Prafulla Wani Technical Architect - Big Data Syntel Agenda Welcome to the Zoo! Evolution Timeline Traditional BI/DW Architecture Where Hadoop Fits In 2 Welcome to

More information

Batch Scheduling in the SAP Environment

Batch Scheduling in the SAP Environment Batch Scheduling in the SAP Environment Introduction Companies gain a competitive edge when they quickly implement sophisticated enterprise resource planning (ERP), customer relationship management (CRM),

More information

Data Warehouse as a Service. Lot 2 - Platform as a Service. Version: 1.1, Issue Date: 05/02/2014. Classification: Open

Data Warehouse as a Service. Lot 2 - Platform as a Service. Version: 1.1, Issue Date: 05/02/2014. Classification: Open Data Warehouse as a Service Version: 1.1, Issue Date: 05/02/2014 Classification: Open Classification: Open ii MDS Technologies Ltd 2014. Other than for the sole purpose of evaluating this Response, no

More information

Informatica MRS Backup

Informatica MRS Backup Informatica MRS Backup The purpose of this document is to provide methods to back up the Model Repository Service (MRS) from the Administration Console as well as automating this process using a batch

More information

Analytics for Business, Consumers and Social Insights

Analytics for Business, Consumers and Social Insights Singapore Management University Institutional Knowledge at Singapore Management University Library Events SMU Library 7-2015 Analytics for Business, Consumers and Social Insights Bhavish SOOD Gartner Follow

More information

Simba XMLA Provider for Oracle OLAP 2.0. Linux Administration Guide. Simba Technologies Inc. April 23, 2013

Simba XMLA Provider for Oracle OLAP 2.0. Linux Administration Guide. Simba Technologies Inc. April 23, 2013 Simba XMLA Provider for Oracle OLAP 2.0 April 23, 2013 Simba Technologies Inc. Copyright 2013 Simba Technologies Inc. All Rights Reserved. Information in this document is subject to change without notice.

More information

Has been into training Big Data Hadoop and MongoDB from more than a year now

Has been into training Big Data Hadoop and MongoDB from more than a year now NAME NAMIT EXECUTIVE SUMMARY EXPERTISE DELIVERIES Around 10+ years of experience on Big Data Technologies such as Hadoop and MongoDB, Java, Python, Big Data Analytics, System Integration and Consulting

More information

ITPS AG. Aplication overview. DIGITAL RESEARCH & DEVELOPMENT SQL Informational Management System. SQL Informational Management System 1

ITPS AG. Aplication overview. DIGITAL RESEARCH & DEVELOPMENT SQL Informational Management System. SQL Informational Management System 1 ITPS AG DIGITAL RESEARCH & DEVELOPMENT SQL Informational Management System Aplication overview SQL Informational Management System 1 Contents 1 Introduction 3 Modules 3 Aplication Inventory 4 Backup Control

More information

Cisco Data Preparation

Cisco Data Preparation Data Sheet Cisco Data Preparation Unleash your business analysts to develop the insights that drive better business outcomes, sooner, from all your data. As self-service business intelligence (BI) and

More information

Intro to BI. Mul0- dimensional Analysis

Intro to BI. Mul0- dimensional Analysis Intro to BI BI Vendor Landscape BI Roles & Responsibili0es Data Governance and Quality DW Architectures ETL Processes BI Capabili0es & Maturity Mul0- dimensional Analysis BI Vendors and Products Module

More information

Jenkins World Tour 2015 Santa Clara, CA, September 2-3

Jenkins World Tour 2015 Santa Clara, CA, September 2-3 1 Jenkins World Tour 2015 Santa Clara, CA, September 2-3 Continuous Delivery with Container Ecosystem CAD @ Platform Equinix - Overview CAD Current Industry - Opportunities Monolithic to Micro Service

More information

IT Workload Automation: Control Big Data Management Costs with Cisco Tidal Enterprise Scheduler

IT Workload Automation: Control Big Data Management Costs with Cisco Tidal Enterprise Scheduler White Paper IT Workload Automation: Control Big Data Management Costs with Cisco Tidal Enterprise Scheduler What You Will Learn Big data environments are pushing the performance limits of business processing

More information

HP APPLICATION PERFORMANCE MONITORING

HP APPLICATION PERFORMANCE MONITORING HP APPLICATION PERFORMANCE MONITORING mr. sci Tomislav Kanižaj Teritorry Sales Manager HP Software March 2011 2010 Hewlett-Packard Development Company, L.P. The information contained 1 herein is subject

More information

CA Workload Automation Agents for Mainframe-Hosted Implementations

CA Workload Automation Agents for Mainframe-Hosted Implementations PRODUCT SHEET CA Workload Automation Agents CA Workload Automation Agents for Mainframe-Hosted Operating Systems, ERP, Database, Application Services and Web Services CA Workload Automation Agents are

More information

Cisco Unified Data Center Solutions for MapR: Deliver Automated, High-Performance Hadoop Workloads

Cisco Unified Data Center Solutions for MapR: Deliver Automated, High-Performance Hadoop Workloads Solution Overview Cisco Unified Data Center Solutions for MapR: Deliver Automated, High-Performance Hadoop Workloads What You Will Learn MapR Hadoop clusters on Cisco Unified Computing System (Cisco UCS

More information

BMC Control-M for Cloud. BMC Control-M Workload Automation

BMC Control-M for Cloud. BMC Control-M Workload Automation BMC Control-M for Cloud BMC Control-M Workload Automation Virtualization & Cloud Computing Are Top Priorities Cloud Computing is a catalyst for improving IT maturity and moving virtualization to another

More information

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015 Integration Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 93.

More information

Company Profile. Areas of Competence. Software- und Organisations-Service. Committed to Service. Software- und Organisations-Service GmbH

Company Profile. Areas of Competence. Software- und Organisations-Service. Committed to Service. Software- und Organisations-Service GmbH Software- und Organisations-Service Committed to Service Company Profile Areas of Competence Software- und Organisations-Service GmbH www.sos-berlin.com 2 Overview Areas of Competence Company Products

More information

Oracle BI Application: Demonstrating the Functionality & Ease of use. Geoffrey Francis Naailah Gora

Oracle BI Application: Demonstrating the Functionality & Ease of use. Geoffrey Francis Naailah Gora Oracle BI Application: Demonstrating the Functionality & Ease of use Geoffrey Francis Naailah Gora Agenda Oracle BI & BI Apps Overview Demo: Procurement & Spend Analytics Creating a ad-hoc report Copyright

More information

Armanino McKenna LLP Welcomes You To Today s Webinar:

Armanino McKenna LLP Welcomes You To Today s Webinar: Armanino McKenna LLP Welcomes You To Today s Webinar: Business Intelligence Are You Data Rich & Information Poor? The presentation will begin in a few moments About the Presenter(s) John Horner, Director

More information

HDP Enabling the Modern Data Architecture

HDP Enabling the Modern Data Architecture HDP Enabling the Modern Data Architecture Herb Cunitz President, Hortonworks Page 1 Hortonworks enables adoption of Apache Hadoop through HDP (Hortonworks Data Platform) Founded in 2011 Original 24 architects,

More information

Big Data Architecture & Analytics A comprehensive approach to harness big data architecture and analytics for growth

Big Data Architecture & Analytics A comprehensive approach to harness big data architecture and analytics for growth MAKING BIG DATA COME ALIVE Big Data Architecture & Analytics A comprehensive approach to harness big data architecture and analytics for growth Steve Gonzales, Principal Manager steve.gonzales@thinkbiganalytics.com

More information

EVERYTHING THAT MATTERS IN ADVANCED ANALYTICS

EVERYTHING THAT MATTERS IN ADVANCED ANALYTICS EVERYTHING THAT MATTERS IN ADVANCED ANALYTICS Marcia Kaufman, Principal Analyst, Hurwitz & Associates Dan Kirsch, Senior Analyst, Hurwitz & Associates Steve Stover, Sr. Director, Product Management, Predixion

More information

2015 Ironside Group, Inc. 2

2015 Ironside Group, Inc. 2 2015 Ironside Group, Inc. 2 Introduction to Ironside What is Cloud, Really? Why Cloud for Data Warehousing? Intro to IBM PureData for Analytics (IPDA) IBM PureData for Analytics on Cloud Intro to IBM dashdb

More information

Open Source Business Intelligence Intro

Open Source Business Intelligence Intro Open Source Business Intelligence Intro Stefano Scamuzzo Senior Technical Manager Architecture & Consulting Research & Innovation Division Engineering Ingegneria Informatica The Open Source Question In

More information

The preceding is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

The preceding is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into The preceding is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,

More information

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016 Integration Guide IBM Note Before using this information and the product it supports, read the information

More information

Workload Automation: Accelerate Digital Services Delivery. Thought Leadership White Paper

Workload Automation: Accelerate Digital Services Delivery. Thought Leadership White Paper Workload Automation: Accelerate Digital Services Delivery Thought Leadership White Paper Table of Contents 1 EXECUTIVE SUMMARY 2 A BUMPY PATH FROM DEVELOPMENT TO PRODUCTION Lack of Comprehensive Scheduling

More information

Enterprise-wide Workload Automation > Control-M

Enterprise-wide Workload Automation > Control-M Enterprise-wide Workload Automation > Control-M Gur Steif November 17 th, 2010 Enterprise Workload Automation Why talk about scheduling / workload automation?! It s important despite adoption of new technology

More information

An Enterprise Messaging Solution using Integrated Open Source Software

An Enterprise Messaging Solution using Integrated Open Source Software An Enterprise Messaging Solution using Integrated Open Source Software Prateek Sinha and Nishi Gupta TATA Consultancy Services Limited Abstract Organizations are increasingly focusing on deploying Open

More information

Empower Your organization with

Empower Your organization with Empower Your organization with Big Data Predictive Analytics Solutions AUTOMOBILES MACHINE DATA POINT SALE SOCIAL NET WORK RFID CUSTOMER BASED TEXT DATA SMART METER MOBILE DATA LOCATION BASED STRUCTURED

More information

The Future of Data Management

The Future of Data Management The Future of Data Management with Hadoop and the Enterprise Data Hub Amr Awadallah (@awadallah) Cofounder and CTO Cloudera Snapshot Founded 2008, by former employees of Employees Today ~ 800 World Class

More information

<Insert Picture Here> Big Data

<Insert Picture Here> Big Data Big Data Kevin Kalmbach Principal Sales Consultant, Public Sector Engineered Systems Program Agenda What is Big Data and why it is important? What is your Big

More information

FUNCTIONAL PRODUCT OVERVIEW: BOND ENTERPRISE RELEASE AND DEPLOYMENT MANAGEMENT

FUNCTIONAL PRODUCT OVERVIEW: BOND ENTERPRISE RELEASE AND DEPLOYMENT MANAGEMENT FUNCTIONAL PRODUCT OVERVIEW: BOND ENTERPRISE RELEASE AND DEPLOYMENT MANAGEMENT BOND IS A READY-MADE SOLUTION FOR THE RELEASE MANAGEMENT AND DEPLOYMENT OF ENTERPRISE IT SYSTEMS. IT COMBINES PROCESS CONTROL

More information

Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014

Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014 Contents Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014 Copyright (c) 2012-2014 Informatica Corporation. All rights reserved. Installation...

More information

Tableau Visual Intelligence Platform Rapid Fire Analytics for Everyone Everywhere

Tableau Visual Intelligence Platform Rapid Fire Analytics for Everyone Everywhere Tableau Visual Intelligence Platform Rapid Fire Analytics for Everyone Everywhere Agenda 1. Introductions & Objectives 2. Tableau Overview 3. Tableau Products 4. Tableau Architecture 5. Why Tableau? 6.

More information

SQL Server Solutions GETTING STARTED WITH. SQL Safe Backup

SQL Server Solutions GETTING STARTED WITH. SQL Safe Backup SQL Server Solutions GETTING STARTED WITH SQL Safe Backup Purpose of this document Due to its depth and potential for customization, there are often parts of SQL Safe Backup that are overlooked during

More information

SAS 9.4 In-Database Products

SAS 9.4 In-Database Products SAS 9.4 In-Database Products Administrator s Guide Fifth Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. SAS 9.4 In-Database Products:

More information

Integration Guide. Help Desk Authority, Perspective and sl360. 1.800.424.9411 www.scriptlogic.com

Integration Guide. Help Desk Authority, Perspective and sl360. 1.800.424.9411 www.scriptlogic.com Integration Guide Help Desk Authority, Perspective and sl360 1.800.424.9411 www.scriptlogic.com Table of Contents Introduction... 3 Product Overview... 3 Benefits of Product Integration... 3 Advanced Help

More information

Can I customize my identity management deployment without extensive coding and services?

Can I customize my identity management deployment without extensive coding and services? SOLUTION BRIEF CONNECTOR XPRESS AND POLICY XPRESS UTILITIES IN CA IDENTITY MANAGER Can I customize my identity management deployment without extensive coding and services? SOLUTION BRIEF CA DATABASE MANAGEMENT

More information

The BIg Picture. Dinsdag 17 september 2013

The BIg Picture. Dinsdag 17 september 2013 The BIg Picture Dinsdag 17 september 2013 2 Agenda A short historical overview on BI Current Issues Current trends Future architecture First steps to this architecture 3 MIS/EIS Data Warehouse BI Multidimensional

More information

ar Seri BMC Control M Workload Automation Roadmap

ar Seri BMC Control M Workload Automation Roadmap BMC Contro ol M Semina ar Seri es BMC Control M Workload Automation Roadmap History of Leadership New Applications Support Control M 8 Workload Change Manger JCL Verify Control M Simplified Packages AMIGO

More information

HDP Hadoop From concept to deployment.

HDP Hadoop From concept to deployment. HDP Hadoop From concept to deployment. Ankur Gupta Senior Solutions Engineer Rackspace: Page 41 27 th Jan 2015 Where are you in your Hadoop Journey? A. Researching our options B. Currently evaluating some

More information

IBM Analytical Decision Management

IBM Analytical Decision Management IBM Analytical Decision Management Deliver better outcomes in real time, every time Highlights Organizations of all types can maximize outcomes with IBM Analytical Decision Management, which enables you

More information

CA Workload Automation Agent for Databases

CA Workload Automation Agent for Databases CA Workload Automation Agent for Databases Implementation Guide r11.3.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the

More information

SAP Sybase Replication Server What s New in 15.7.1 SP100. Bill Zhang, Product Management, SAP HANA Lisa Spagnolie, Director of Product Marketing

SAP Sybase Replication Server What s New in 15.7.1 SP100. Bill Zhang, Product Management, SAP HANA Lisa Spagnolie, Director of Product Marketing SAP Sybase Replication Server What s New in 15.7.1 SP100 Bill Zhang, Product Management, SAP HANA Lisa Spagnolie, Director of Product Marketing Agenda SAP Sybase Replication Server Overview Replication

More information

Upgrading From PDI 4.0 to 4.1.0

Upgrading From PDI 4.0 to 4.1.0 Upgrading From PDI 4.0 to 4.1.0 This document is copyright 2011 Pentaho Corporation. No part may be reprinted without written permission from Pentaho Corporation. All trademarks are the property of their

More information

Instant Chime for IBM Sametime For IBM Websphere and IBM DB2 Installation Guide

Instant Chime for IBM Sametime For IBM Websphere and IBM DB2 Installation Guide Instant Chime for IBM Sametime For IBM Websphere and IBM DB2 Installation Guide Fall 2014 Page 1 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license

More information

The Homebuilder Intelligence Suite

The Homebuilder Intelligence Suite The Homebuilder Intelligence Suite informxl is a comprehensive reporting suite providing builders with better data insight for more intelligent and informed decisions. Summary to detail, desktop to mobile,

More information

HP Business Service Management (BSM) George Leschener BSM Solution Lead, MEMA

HP Business Service Management (BSM) George Leschener BSM Solution Lead, MEMA HP Business Service Management (BSM) George Leschener BSM Solution Lead, MEMA SaaS Packaged applications Employees IT metrics/analytics Storage Public cloud Security Challenges for IT Environments are

More information

III JORNADAS DE DATA MINING

III JORNADAS DE DATA MINING III JORNADAS DE DATA MINING EN EL MARCO DE LA MAESTRÍA EN DATA MINING DE LA UNIVERSIDAD AUSTRAL PRESENTACIÓN TECNOLÓGICA IBM Alan Schcolnik, Cognos Technical Sales Team Leader, IBM Software Group. IAE

More information

SAS Marketing Automation 4.4. Unix Install Instructions for Hot Fix 44MA10

SAS Marketing Automation 4.4. Unix Install Instructions for Hot Fix 44MA10 SAS Marketing Automation 4.4 Unix Install Instructions for Hot Fix 44MA10 Introduction This document describes the steps necessary to install and deploy the SAS Marketing Automation 4.4 Hot fix Release

More information

Three Reasons Why Visual Data Discovery Falls Short

Three Reasons Why Visual Data Discovery Falls Short Three Reasons Why Visual Data Discovery Falls Short Vijay Anand, Director, Product Marketing Agenda Introduction to Self-Service Analytics and Concepts MicroStrategy Self-Service Analytics Product Offerings

More information

Luncheon Webinar Series May 13, 2013

Luncheon Webinar Series May 13, 2013 Luncheon Webinar Series May 13, 2013 InfoSphere DataStage is Big Data Integration Sponsored By: Presented by : Tony Curcio, InfoSphere Product Management 0 InfoSphere DataStage is Big Data Integration

More information

On-Demand SAP BPC Support

On-Demand SAP BPC Support On-Demand SAP BPC Support Content Solution Overview Introduction to SAP RDS Solutions Solution Details SAP BPC 10 Techwave Consulting Inc. Data source: Gartner Techwave BPC Center of Excellence Implementation

More information

Intel HPC Distribution for Apache Hadoop* Software including Intel Enterprise Edition for Lustre* Software. SC13, November, 2013

Intel HPC Distribution for Apache Hadoop* Software including Intel Enterprise Edition for Lustre* Software. SC13, November, 2013 Intel HPC Distribution for Apache Hadoop* Software including Intel Enterprise Edition for Lustre* Software SC13, November, 2013 Agenda Abstract Opportunity: HPC Adoption of Big Data Analytics on Apache

More information

IBM AND NEXT GENERATION ARCHITECTURE FOR BIG DATA & ANALYTICS!

IBM AND NEXT GENERATION ARCHITECTURE FOR BIG DATA & ANALYTICS! The Bloor Group IBM AND NEXT GENERATION ARCHITECTURE FOR BIG DATA & ANALYTICS VENDOR PROFILE The IBM Big Data Landscape IBM can legitimately claim to have been involved in Big Data and to have a much broader

More information

Fast and Easy Delivery of Data Mining Insights to Reporting Systems

Fast and Easy Delivery of Data Mining Insights to Reporting Systems Fast and Easy Delivery of Data Mining Insights to Reporting Systems Ruben Pulido, Christoph Sieb rpulido@de.ibm.com, christoph.sieb@de.ibm.com Abstract: During the last decade data mining and predictive

More information

ILM et Archivage Les solutions IBM

ILM et Archivage Les solutions IBM Information Management ILM et Archivage Les solutions IBM Dr. Christian ARNOUX Consultant Information Management IBM Suisse, Software Group 2007 IBM Corporation IBM Strategy for Enterprise Content Compliance

More information

ITG Software Engineering

ITG Software Engineering IBM WebSphere Administration 8.5 Course ID: Page 1 Last Updated 12/15/2014 WebSphere Administration 8.5 Course Overview: This 5 Day course will cover the administration and configuration of WebSphere 8.5.

More information

IBM WebSphere Cast Iron Cloud integration

IBM WebSphere Cast Iron Cloud integration IBM Cast Iron Cloud integration Integrate SugarCRM in days Highlights Speeds up time to implementation for SugarCRM integration projects with configuration, not coding approach Offers cost savings with

More information

Introducing Oracle Exalytics In-Memory Machine

Introducing Oracle Exalytics In-Memory Machine Introducing Oracle Exalytics In-Memory Machine Jon Ainsworth Director of Business Development Oracle EMEA Business Analytics 1 Copyright 2011, Oracle and/or its affiliates. All rights Agenda Topics Oracle

More information

IT Automation: Evaluate Job Scheduling and Run Book Automation Solutions

IT Automation: Evaluate Job Scheduling and Run Book Automation Solutions IT Automation: Evaluate Job Scheduling and Run Book Automation Solutions What You Will Learn Businesses increasingly use IT automation tools to meet the challenge of managing their data centers. This document

More information

Beyond Lambda - how to get from logical to physical. Artur Borycki, Director International Technology & Innovations

Beyond Lambda - how to get from logical to physical. Artur Borycki, Director International Technology & Innovations Beyond Lambda - how to get from logical to physical Artur Borycki, Director International Technology & Innovations Simplification & Efficiency Teradata believe in the principles of self-service, automation

More information

Augmented Reality, Skype, icalendar and Custom Visualizations for MicroStrategy Mobile. www.infocepts.com

Augmented Reality, Skype, icalendar and Custom Visualizations for MicroStrategy Mobile. www.infocepts.com Augmented Reality, Skype, icalendar and Custom Visualizations for MicroStrategy Mobile Ben Craigo 29 Jan, 2013 Brief Overview of InfoCepts Helping Our Customers Derive Value from their Data since 2004

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Processes and Best Practices Guide (Codeless Mode)

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Processes and Best Practices Guide (Codeless Mode) HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Processes and Best Practices Guide (Codeless Mode) Document Release Date: December, 2014 Software Release

More information

BMC Mainframe Solutions. Optimize the performance, availability and cost of complex z/os environments

BMC Mainframe Solutions. Optimize the performance, availability and cost of complex z/os environments BMC Mainframe Solutions Optimize the performance, availability and cost of complex z/os environments If you depend on your mainframe, you can rely on BMC Sof tware. Yesterday. Today. Tomorrow. You can

More information

Cisco IT Automates Workloads for Big Data Analytics Environments

Cisco IT Automates Workloads for Big Data Analytics Environments Cisco IT Case Study - September 2013 Cisco Tidal Enterprise Scheduler and Big Data Cisco IT Automates Workloads for Big Data Analytics Environments Cisco Tidal Enterprise Scheduler eliminates time-consuming

More information

S T A F F I N G P R O D U C T E V A L U A T I O N & D E V E L O P M E N T

S T A F F I N G P R O D U C T E V A L U A T I O N & D E V E L O P M E N T E R P C O N S U LT I N G M A N A G E M E N T & B U S I N E S S C O N S U LT I N G A D V I S O R Y S E R V I C E S S T A F F I N G P R O D U C T E V A L U A T I O N & D E V E L O P M E N T I T M A N A G

More information

Initializing SAS Environment Manager Service Architecture Framework for SAS 9.4M2. Last revised September 26, 2014

Initializing SAS Environment Manager Service Architecture Framework for SAS 9.4M2. Last revised September 26, 2014 Initializing SAS Environment Manager Service Architecture Framework for SAS 9.4M2 Last revised September 26, 2014 i Copyright Notice All rights reserved. Printed in the United States of America. No part

More information

CA Workload Automation Strategy and Roadmap. Bill Sherwin Principal Consultant EMEA Workload Automation Owner

CA Workload Automation Strategy and Roadmap. Bill Sherwin Principal Consultant EMEA Workload Automation Owner CA Workload Automation Strategy and Roadmap Bill Sherwin Principal Consultant EMEA Workload Automation Owner CA Workload Automation: Key component in successful enterprise IT management Service Service

More information

Business Process Services. White Paper. Automating Email Management: Managing Workflow Effectively

Business Process Services. White Paper. Automating Email Management: Managing Workflow Effectively Business Process Services White Paper Automating Email Management: Managing Workflow Effectively About the Authors Deva Latha S. Assistant Consultant Deva Latha has over nine years of experience in Business

More information