REST API / JSON Use Case Scenarios

Größe: px
Ab Seite anzeigen:

Download "REST API / JSON Use Case Scenarios"

Transkript

1 REST API / JSON Use Case Scenarios Oliver Draese, STSM Db2 for z/os Development IBM Silicon Valley Lab (odraese@us.ibm.com)

2 Disclaimer Disclaimer IBM s statements regarding its plans, directions and intent are subject to change or withdrawal without notice at IBM s sole discretion. Information regarding potential future products is intended to outline our general product direction and it should not be relied on in making a purchasing decision. The information mentioned regarding potential future products is not a commitment, promise, or legal obligation to deliver any material, code or functionality. Information about potential future products many not be incorporated into any contract. The development, release, and timing of any future features or functionality described for our product remains at our sole discretion. 2

3 Worum geht es? Db2 ist nun selbst ein RESTful Service Provider Einfache Integration von Enterprise Data in neue APIs oder Anwendungen Statisches SQL mit modernem Interface Unabhängig von verwendeten Programmiersprachen DBA hat volle Kontrolle über das hinterlegte SQL 3

4 API Connect API API API API API API IBM Watson 4

5 Die verschiedenen Lösungen in der Übersicht Db2 Db2 liefert als Service Provider Zugriff auf Enterprise Daten. Existente SQL Applikationen können modernisiert werden. Daten können einfach mit anderen API integriert werden! z/os Connect implementiert Industrie Standards (OpenAPI Initiative) und erlaubt durch seine mehrschichtige Architektur einen vereinheitlichten Zugangspunkt zu z/os mit EAL5+ Sicherheit. API Connect ist eine umfassende API Management Schicht für Authentifizierung und Token Management, Monitoring, Throttling und Abrechnung. API Connect 5

6 Db2 als Service Provider Data Studio DDF RESTful JSON HTTP z/os Connect Service Discovery Service Invoc. Service Creation DDF Access Control (SAF) SQL Package Security & Auditing Eingebaute Management Services: Anlegen, auflisten, ausführen von Services, ebenfalls via REST API 6

7 Db2 als Service Provider Data Studio DDF RESTful JSON HTTP z/os Connect Service Discovery Service Invocation Service Creation DDF Access Control (SAF) SQL Package Security & Auditing Anlegen von neuen Services: Ein einzelnes SQL Statement (INSERT, UPDATE, DELETE, SELECT, CALL) in ein eigenes Package gebunden 7

8 Db2 als Service Provider Data Studio DDF RESTful JSON HTTP z/os Connect Service Discovery Service Invocation Service Creation DDF Acc. Control (SAF) SQL Package Security & Auditing Zugriffskontrolle: Existente DDF Infrastruktur für Klassifizierung, Sicherheit, Accounting, Statistics, Auditing 8

9 Db2 als Service Provider Data Studio RESTful JSON HTTP z/os Connect Service Discovery Service Invocation Service Creation DDF Access Control (SAF) DDF SQL Package Security & Auditing Eingebettet in DDF: DDF beantwortet nun auch die HTTP Requests, formatiert die JSON Ausgaben und startet das statische SQL Statement. Dabei werden Thread Pooling, Profiling... genauso genutzt wie bei traditionellem DDF. 9

10 Db2 Service mit DataStudio anlegen SQL Statement schreiben 3. Service registrieren (Deploy) 2. Statement als Service anlegen 4. Service Aufruf testen 10

11 ...oder einfach via REST Calls 11

12 ...oder einfach via REST Calls 12

13 oder via UI für MacOS 13

14 ...oder via BIND Command BIND SERVICE(collid) NAME(service_name) [SQLDDNAME(ddname)] [SQLENCODING()] DESCRIPTION('string') [Additional BIND options] *voraussichtlich November

15 Beispiel: AngularJS, NodeJS & Db2 AngularJS / HTML5 Node Server App HTTP HTTP Client / Offene Zone DMZ Sichere Zone 15

16 Beispiel: AngularJS, NodeJS & Db2 AngularJS / HTML5 Node Server App HTTP HTTP 16

17 Beispiel: AngularJS, NodeJS & Db2 AngularJS / HTML5 Node Server App 1 Node Server liefert die Web Seite und den Angular JavaScript Code. 17

18 Beispiel: AngularJS, NodeJS & Db2 AngularJS / HTML5 Angular View fordert Daten via Relay REST Service getempdata an Node Server App

19 Beispiel: AngularJS, NodeJS & Db2 AngularJS / HTML5 Node Server App NodeJS REST Service fordert die Rohdaten via REST POST bei Db2 an

20 Beispiel: AngularJS, NodeJS & Db2 { "ResultSet Output": [ { "firstname": "CHRISTINE", "lastname": "HAAS", "bday": " " }, { "firstname": "MICHAEL", "lastname": "THOMPSON", "bday": " " },... ], 4 "StatusCode": 200, "StatusDescription": "Execution Successful } 20

21 Beispiel: AngularJS, NodeJS & Db2 AngularJS / HTML5 [ { firstname: "Christine", lastname: "Haas", bday: " ", age: 83}, { firstname: "Michael", lastname: "Thompson", bday: " ", age: 69}, 5... ] 21

22 Beispiel: AngularJS, NodeJS & Db2 AngularJS / HTML5 Angular generiert die Tabellen Zeilen basierend auf dem JSON Objekt Array... <tbody> <tr ng-repeat="emp in empdata"> <td>{{emp.firstname}}</td> <td>{{emp.lastname}}</td> <td>{{emp.bday}}</td> <td>{{emp.age}}</td> </tr> </tbody> 22

23 Demo 23

24 Integration mit z/os Connect EE zcee Service Archive Toolkit (zconbt) zcee Service Archive (SAR) Datei Db2 REST Service JSON Request und Response Schemas Db2ServiceDiscover API Db2 Data Web Services in Data Studio SQL Statement Via DB2ServiceManager API POST { requesttype : createservice, servicename : EmployeeLookup, sqlstmt : select * from employee where empno=:empno, description : Query employee for the input empno } 24

25 APARs für Db2 V11 und V12 DB2 V11 APARs PI Initiale Version. Einschränkungen: Kein LOB/XML, Keine SP ResultSets,... PI70477 (Ähnlich wie Db2 V12 PI70652) Erster Db2 V11 Service Refresh. Db2 V11 GA Version. PI74409 (Ähnlich wie Db2 V12 PI74515) Verschiedene Fehlerbehebungen PI80087 (Ähnlich wie Db2 V12 PI80088) Unterstützung für Db2 Trusted Contexts. Fehlerbehebungen für SSL Client Certificate Authentifizierung, Benennung von Ergebnisspalten, DB2 V12 APARs PI70652 (Ähnlich wie Db2 V11 PI70477) Erster Db2 V12 Release (DB2 V12 "GA" level). PI74515 (Ähnlich wie Db2 V11 PI74409) - Verschiedene Fehlerbehebungen PI80088 (Ähnlich wie Db2 V11 PI80087) Unterstützung für Db2 Trusted Contexts. Fehlerbehebungen für SSL Client Certificate Authentifizierung, Benennung von Ergebnisspalten, 25 25

26 Videos und Demo Code Db2 11 and 12 for z/os Native REST Services Part #1 Demo, wie Db2 REST Services angelegt werden können Db2 11 and 12 for z/os Native REST Services and z/os Connect EE 2.0 Part #2 Video über die Erweiterung von Db2 REST Services mit z/os Connect EE Demo Code dieser Db2 Aktuell Session 26

27 DB2 12 rules the API Economy The RESTful API is yet another way where DB2 is at the leading edge and again cementing DB2 s and the mainframes position as a full capable server in the IT infrastructure of today. Using these REST-services Mobile applications can both be built faster and run faster! Kundenzitate Frank Petersen Chief Architect BankData DB2 12 RESTful API helping enterprises to be Agile Restful API in DB2 12 for z/os allows you to develop mobile and other apps with scalable performance in a matter of minutes. Do you want to be quick and agile? Use Restful API in DB2 12 for z/os Kurt Struyf IBM GOLD Consultant IBM Champion for Analytics 27

28 Danke! Oliver Draese STSM, Db2 for z/os Development, IBM Silicon Valley Lab 28

Neue Welten: Externe Daten mit APEX nutzen

Neue Welten: Externe Daten mit APEX nutzen Neue Welten: Externe Daten mit APEX nutzen Carsten Czarski Oracle Application Express Development-Team DOAG Regio München - 17. Mai 2018 Copyright 2017 Oracle and/or its affiliates. All rights reserved.

Mehr

Der Oracle Mobile Cloud Service

Der Oracle Mobile Cloud Service Der Oracle Mobile Cloud Service - Die Infrastruktur für Mobile Apps in der Cloud Jürgen Menge Sales Consultant Oracle Deutschland B.V. & Co KG Safe Harbor Statement The following is intended to outline

Mehr

Automatisierter Java EE Entwicklungs-Lifecycle mit WebLogic Server 12c. Robin Müller-Bady Systemberater, Oracle Deutschland

Automatisierter Java EE Entwicklungs-Lifecycle mit WebLogic Server 12c. Robin Müller-Bady Systemberater, Oracle Deutschland Automatisierter Java EE Entwicklungs-Lifecycle mit WebLogic Server 12c Robin Müller-Bady Systemberater, Oracle Deutschland The following is intended to outline our general product direction. It is intended

Mehr

BPA Suite und SOA - vom fachlichen Prozessmodell zur Anwendung. Bernhard Fischer-Wasels Leitender Systemberater

BPA Suite und SOA - vom fachlichen Prozessmodell zur Anwendung. Bernhard Fischer-Wasels Leitender Systemberater BPA Suite und SOA - vom fachlichen Prozessmodell zur Anwendung Bernhard Fischer-Wasels Leitender Systemberater Safe Harbor Statement The following is intended to outline our general product direction.

Mehr

Neues von Oracle Gut zu wissen

Neues von Oracle Gut zu wissen Neues von Oracle Gut zu wissen Lorenz Keller Manager Sales Consulting Server Technologies Customer Center Nord 12. Juni 2014 Safe Harbor Statement The following is intended to outline our general product

Mehr

Immer in Bewegung bleiben Oracle Managed File Transfer

Immer in Bewegung bleiben Oracle Managed File Transfer Immer in Bewegung bleiben Oracle Managed File Transfer Michael Stapf DOAG 2014 Oracle Deutschland B.V. & Co. KG 18. November 2014 Safe Harbor Statement The following is intended to outline our general

Mehr

Oracle Bare Metal Cloud Service

Oracle Bare Metal Cloud Service Oracle Bare Metal Cloud Service Ein Überblick Marcus Schröder Master Principal Sales Consultant Business Unit Core & Cloud Technologies November, 2017 2 Safe Harbor Statement The following is intended

Mehr

<Insert Picture Here> Application Express: Stand der Dinge und Ausblick auf Version 5.0

<Insert Picture Here> Application Express: Stand der Dinge und Ausblick auf Version 5.0 Application Express: Stand der Dinge und Ausblick auf Version 5.0 Oliver Zandner ORACLE Deutschland B.V. & Co KG Was erwartet Sie in diesem Vortrag? 1. Was ist APEX? Wozu ist es gut?

Mehr

Sichere Testdaten mit Oracle Enterprise Manager

Sichere Testdaten mit Oracle Enterprise Manager Sichere Testdaten mit Oracle Enterprise Manager Ralf Durben, Oracle Deutschland - BU Database 16. März 2016 Copyright 2015, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The

Mehr

Demo Kino: Der Herr der Wolken Die Gefährten

Demo Kino: Der Herr der Wolken Die Gefährten Demo Kino: Der Herr der Wolken Die Gefährten Gemeinsame orchestriert: Database und Java Cloud Service Marcus Schröder Manuel Hoßfeld Oracle Deutschland B.V. & Co KG Copyright 2016, Oracle and/or its affiliates.

Mehr

WebLogic Server im Zusammenspiel mit Real Application Cluster

WebLogic Server im Zusammenspiel mit Real Application Cluster WebLogic Server im Zusammenspiel mit Real Application Cluster Michael Bräuer Leitender Systemberater Sylvie Lübeck Leitende Systemberaterin ORACLE Deutschland B.V. & Co. KG The following is intended to

Mehr

Oracle E-Business Suite Überblick Report Manager

Oracle E-Business Suite Überblick Report Manager 1 1 28.03.2013 Oracle E-Business Suite Überblick Report Manager Thomas.Fricke@oracle.com Oracle Germany The following is intended to outline our general product direction. It is intended

Mehr

Oracle Data Visualization. Demo-Kino

Oracle Data Visualization. Demo-Kino Oracle Data Visualization Demo-Kino 16. November 2016, DOAG 2016 Konferenz Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes

Mehr

Informationen zur Oracle DB SE2

Informationen zur Oracle DB SE2 Informationen zur Oracle DB SE2 Dipl.-Inf. Karin Patenge Leitende Systemberaterin Stand der Bearbeitung: 23. September 2015 Copyright 2014 Oracle and/or its affiliates. All rights reserved. Safe Harbor

Mehr

Identity Propagation in Oracle Fusion Middleware

Identity Propagation in Oracle Fusion Middleware Identity Propagation in Oracle Fusion Middleware Klaus Scherbach Principle Sales Consultant BU Identity Management 1 The following is intended to outline our general product direction. It is intended for

Mehr

Business Process Management. Cloud und Mobile Computing. BPMday 2013 Köln, 13. November 2013. Enzo Favuzzi - Sales Manager WebCenter & BPM

Business Process Management. Cloud und Mobile Computing. BPMday 2013 Köln, 13. November 2013. Enzo Favuzzi - Sales Manager WebCenter & BPM Business Process Management von Cloud und Mobile Computing BPMday 2013 Köln, 13. November 2013 Enzo Favuzzi - Sales Manager WebCenter & BPM Safe Harbor Statement The

Mehr

HANNE Notes Version 10 - Domino Version 10 #Domino HCL. Hamburger Notes Netzwerk HANNE-Treffen:

HANNE Notes Version 10 - Domino Version 10 #Domino HCL. Hamburger Notes Netzwerk HANNE-Treffen: HANNE 2017 Hamburger Notes Netzwerk 147. HANNE-Treffen: Notes Version 10 - Domino Version 10 #Domino2025 - HCL Ausblick in die Zukunft von IBM Domino, Vorstellung und Diskussion Andreas Schulte, IBM Technical

Mehr

Migra?on VMWare basierender Datenbanken auf Knopfdruck

Migra?on VMWare basierender Datenbanken auf Knopfdruck Migra?on VMWare basierender Datenbanken auf Knopfdruck Oracle Ravello Cloud Service Marcus Schröder Master Principal Sales Consultant Business Unit Core & Cloud Technologies Oracle Deutschland Copyright

Mehr

WebLogic Server für Dummies

WebLogic Server für Dummies WebLogic Server für Dummies Robin Müller-Bady Sales Consultant, Oracle Deutschland Steffen Miller Principal Sales Consultant, Oracle Deutschland The following is intended to outline our general product

Mehr

SAFE HARBOR STATEMENT

SAFE HARBOR STATEMENT SAFE HARBOR STATEMENT The following 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

Mehr

<Insert Picture Here> Integration von MOS Patch Empfehlungen im Enterprise Manager

<Insert Picture Here> Integration von MOS Patch Empfehlungen im Enterprise Manager Integration von MOS Patch Empfehlungen im Enterprise Manager Martin Obst Senior Systemberater Oracle Deutschland B.V. & Co. KG martin.obst@oracle.com The following is intended to

Mehr

Neues von Oracle Gut zu wissen...

Neues von Oracle Gut zu wissen... Neues von Oracle Gut zu wissen... Lorenz Keller Leiter Systemberatung - Server Technology Customer Center - Nord lorenz.keller@oracle.com The following is intended to outline our

Mehr

Warum Gesetze nicht programmiert werden sollten. Peer Meinhardt CRM Lösungsvertrieb öffentliche Auftraggeber. <Insert Picture Here>

Warum Gesetze nicht programmiert werden sollten. Peer Meinhardt CRM Lösungsvertrieb öffentliche Auftraggeber. <Insert Picture Here> Warum Gesetze nicht programmiert werden sollten Peer Meinhardt CRM Lösungsvertrieb öffentliche Auftraggeber 1 Safe Harbor Statement The following is intended to outline our general

Mehr

<Insert Picture Here> 8. Business Intelligence & Data Warehouse Konferenz

<Insert Picture Here> 8. Business Intelligence & Data Warehouse Konferenz 1 The Safe Harbor The following 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

Mehr

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

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into The following 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,

Mehr

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Sauber lizenziert: Wie sichere ich die Lizenz- Compliance mit Hilfe des EM? Martin Obst Senior Systemberater Oracle Deutschland THE FOLLOWING IS INTENDED TO OUTLINE OUR GENERAL PRODUCT DIRECTION. IT

Mehr

Modellierung der Business Architecture mit BPM 12c

Modellierung der Business Architecture mit BPM 12c Modellierung der Business Architecture mit BPM 12c Michael Stapf DOAG 2014 Oracle Deutschland B.V. & Co. KG 18. November 2014 Safe Harbor Statement The following is intended to outline our general product

Mehr

SAFE HARBOR STATEMENT

SAFE HARBOR STATEMENT SAFE HARBOR STATEMENT The following 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

Mehr

+++ Bitte nutzen Sie die integrierte Audio-Funktion von WebEx (Menü Audio -> Integrated Voice Conference -> Start auswählen), um uns zu hören!!!.

+++ Bitte nutzen Sie die integrierte Audio-Funktion von WebEx (Menü Audio -> Integrated Voice Conference -> Start auswählen), um uns zu hören!!!. +++ Bitte nutzen Sie die integrierte Audio-Funktion von WebEx (Menü Audio -> Integrated Voice Conference -> Start auswählen), um uns zu hören!!!. +++ Grundkonzepte von Oracle ALTA UI & Umsetzungsbeispiele

Mehr

1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. ileana.somesan@oracle.com

1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. ileana.somesan@oracle.com 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Oracle Datenbanken in der Oracle Public Cloud nutzen Ileana Someşan Systemberaterin ORACLE Deutschland The following is intended to

Mehr

<Insert Picture Here> Projekte erfolgreich führen mit den richtigen Entscheidungen

<Insert Picture Here> Projekte erfolgreich führen mit den richtigen Entscheidungen Projekte erfolgreich führen mit den richtigen Entscheidungen Jürgen Stobinski Oracle Primavera Sales Consultant Agenda Vorstellung Entscheidungsgrundlage Entscheidungshilfsmittel

Mehr

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 "THE FOLLOWING 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

Mehr

IBM Business Analytics - Wo geht die Reise hin? und Was gibt es Neues bei IBM Cognos 11? IBM Deutschland GmbH Jacqueline Neef und Ricardo Ullbrich

IBM Business Analytics - Wo geht die Reise hin? und Was gibt es Neues bei IBM Cognos 11? IBM Deutschland GmbH Jacqueline Neef und Ricardo Ullbrich IBM Business Analytics - Wo geht die Reise hin? und Was gibt es Neues bei IBM Cognos 11? IBM Deutschland GmbH Jacqueline Neef und Ricardo Ullbrich Important Disclaimer IBM s statements regarding its plans,

Mehr

+++ Bitte nutzen Sie die integrierte Audio-Funktion von WebEx (Menü Audio -> Integrated Voice Conference -> Start auswählen), um uns zu hören!!!.

+++ Bitte nutzen Sie die integrierte Audio-Funktion von WebEx (Menü Audio -> Integrated Voice Conference -> Start auswählen), um uns zu hören!!!. +++ Bitte nutzen Sie die integrierte Audio-Funktion von WebEx (Menü Audio -> Integrated Voice Conference -> Start auswählen), um uns zu hören!!!. +++ Oracle Mobile Cloud Service (MCS) MCS SDK & MAF MCS

Mehr

Nichttechnische Aspekte Hochverfügbarer Systeme

Nichttechnische Aspekte Hochverfügbarer Systeme Nichttechnische Aspekte Hochverfügbarer Systeme Kai Dupke Senior Product Manager SUSE Linux Enterprise kdupke@novell.com GUUG Frühjahrsfachgespräch 2011 Weimar Hochverfügbarkeit Basis für Geschäftsprozesse

Mehr

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Wie lebe ich Solaris 11 Updates im Rechenzentrum Thomas Wagner Proactive Technical Analyst 22. October 2012 The following is intended to outline our general product direction. It is intended for information

Mehr

<Insert Picture Here> SaaS mit Oracle CRM On Demand Heute und in Zukunft

<Insert Picture Here> SaaS mit Oracle CRM On Demand Heute und in Zukunft SaaS mit Oracle CRM On Demand Heute und in Zukunft DOAG Applications, Berlin 04. Mai 2011 Safe Harbor Statement The following is intended to outline our general product direction.

Mehr

Solaris Softwareupdates: do's and don'ts

Solaris Softwareupdates: do's and don'ts Thomas.X.Wagner@oracle.com Senior Proactive Technical Analyst Agenda Was bisher geschah - Ein Rückblick Wohin geht die Update-Reise News zu Patchsets, Solaris Upgrades und Baselines

Mehr

Oracle SQL Developer Data Modeling

Oracle SQL Developer Data Modeling Oracle SQL Developer Data Modeling DOAG Regio Rhein-Neckar Oracle Deutschland GmbH The following is intended to outline our general product direction. It is intended for information

Mehr

Zuhause On-Premises und in der Cloud mit Identity Management

Zuhause On-Premises und in der Cloud mit Identity Management Zuhause On-Premises und in der Cloud mit Identity Management Larry Ellison: OOW2016 Security is job number one for Oracle. OOW2017 Security needs automation Michael Fischer ORACLE Deutschland B.V. & Co.

Mehr

SAM - QFS Diskarchivierung - eine Diskussion

SAM - QFS Diskarchivierung - eine Diskussion SAM - QFS Diskarchivierung - eine Diskussion Rainer Hartwich Storage Consultant 5.SAM Nutzerkonferenz 27.05.2011 1 The following is intended to outline our general product direction. It is intended for

Mehr

ITK-Trends 2010: Hardware and Software. Engineered to work together. Rolf Kersten EMEA Hardware Product Marketing, Oracle

ITK-Trends 2010: Hardware and Software. Engineered to work together. Rolf Kersten EMEA Hardware Product Marketing, Oracle ITK-Trends 2010: Hardware and Software. Engineered to work together. Rolf Kersten EMEA Hardware Product Marketing, Oracle SAFE HARBOR STATEMENT The following is intended to outline our general product

Mehr

Ermittlung und Berechnung von Schadendreiecken mit HANA Live und R-Integration

Ermittlung und Berechnung von Schadendreiecken mit HANA Live und R-Integration Ermittlung und Berechnung von Schadendreiecken mit HANA Live und R-Integration Matthias Beyer-Grandisch, Presales Senior Specialist, SAP Mai, 2015 Public DEMO Die Demo zeigt unter Verwendung von HANA Live

Mehr

Oracle Public Cloud Die Enterprise Cloud für geschäftskritische Anwendungen Carsten Ratzlaff

Oracle Public Cloud Die Enterprise Cloud für geschäftskritische Anwendungen Carsten Ratzlaff Oracle Public Cloud Die Enterprise Cloud für geschäftskritische Anwendungen Carsten Ratzlaff Fusion Applications Sales Leader Germany 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Mehr

APIs gemanaged und kontrolliert

APIs gemanaged und kontrolliert APIs gemanaged und kontrolliert Sören Halter Principal Sales Consultant 2015-11-19 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information

Mehr

opensuse Leap 42.1 mit opensuse einen Sprung nach vorne Sarah Julia Kriesch

opensuse Leap 42.1 mit opensuse einen Sprung nach vorne Sarah Julia Kriesch opensuse Leap 42.1 mit opensuse einen Sprung nach vorne Sarah Julia Kriesch AdaLovelace@opensuse.org Agenda 2 Über mich opensuse mit Sub-Projekten Software Development Lifecycle Neues Entwicklungsmodell

Mehr

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Customer Presentation

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Customer Presentation 1 Copyright 2011, Oracle and/or its affiliates. All rights Troubleshooting für BI Publisher Reports Jürgen Menge Oracle Deutschland B.V. & Co. KG 2 Copyright 2011, Oracle and/or its affiliates. All rights

Mehr

Oracle Application Express 4.2.1

Oracle Application Express 4.2.1 Oracle Application Express 4.2.1 Mobile Web Applications und mehr Andreas Zack Server Technologies Competence Center Database Süd The following is intended to outline our general product direction. It

Mehr

SODA. Die Datenbank als Document Store. Rainer Willems. Master Principal Sales Consultant Oracle Deutschland B.V. & Co. KG

SODA. Die Datenbank als Document Store. Rainer Willems. Master Principal Sales Consultant Oracle Deutschland B.V. & Co. KG SODA Die Datenbank als Document Store Rainer Willems Master Principal Sales Consultant Oracle Deutschland B.V. & Co. KG vs No Anforderungskonflikte Agile Entwicklung Häufige Schema-Änderungen Relationales

Mehr

Disclaimer SAP SE or an SAP affiliate company. All rights reserved. Public

Disclaimer SAP SE or an SAP affiliate company. All rights reserved. Public Disclaimer Die Informationen in dieser Präsentation sind vertraulich und urheberrechtlich geschützt und dürfen nicht ohne Genehmigung von SAP offengelegt werden. Diese Präsentation unterliegt weder Ihrem

Mehr

Isabel Arnold CICS Technical Sales Germany Isabel.arnold@de.ibm.com. z/os Explorer. 2014 IBM Corporation

Isabel Arnold CICS Technical Sales Germany Isabel.arnold@de.ibm.com. z/os Explorer. 2014 IBM Corporation Isabel Arnold CICS Technical Sales Germany Isabel.arnold@de.ibm.com z/os Explorer Agenda Introduction and Background Why do you want z/os Explorer? What does z/os Explorer do? z/os Resource Management

Mehr

Username and password privileges. Rechteverwaltung. Controlling User Access. Arten von Rechten Vergabe und Entzug von Rechten DBS1 2004

Username and password privileges. Rechteverwaltung. Controlling User Access. Arten von Rechten Vergabe und Entzug von Rechten DBS1 2004 Arten von Rechten Vergabe und Entzug von Rechten Seite 1 Controlling User Access Database administrator Username and password privileges Users Seite 2 Privileges Database security System security Data

Mehr

Identity & Access Governance

Identity & Access Governance Identity & Access Governance Andreas Fuhrmann, Inf. Ing. ETH Geschäftsleitung SKyPRO AG andreas.fuhrmann@skypro.ch Fakten SKyPRO AG SKyPRO Gründung April 1987 CHF 300 000 AK 40 Mitarbeiter Sitz in Cham

Mehr

Oracle Database Cloud Service

Oracle Database Cloud Service 1 Oracle Database Cloud Service Gerd Schoen Senior Leitender Systemberater 2 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from

Mehr

Oracle ADF Mobile. Jürgen Menge Oracle Deutschland B.V. & Co. KG. Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Oracle ADF Mobile. Jürgen Menge Oracle Deutschland B.V. & Co. KG. Copyright 2012, Oracle and/or its affiliates. All rights reserved. Oracle ADF Mobile Jürgen Menge Oracle Deutschland B.V. & Co. KG 1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

Mehr

BPEL und seine Kinder

BPEL und seine Kinder 1 BPEL und seine Kinder Marcel Amende Leitender Systemberater - Business Unit Middleware Oracle Deutschland B.V. & Co. KG The following is intended to outline our general product

Mehr

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Aufbau einer Oracle Private Cloud Marcus Schröder Leitender Systemberater Oracle Deutschland 2 The following is intended to outline our general product direction. It is intended for information purposes

Mehr

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 "THE FOLLOWING 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

Mehr

Wie Programm Neighborhood Agent mit Secure Gateway konfigurieren. von Stefan Müri

Wie Programm Neighborhood Agent mit Secure Gateway konfigurieren. von Stefan Müri Wie Programm Neighborhood Agent mit von Stefan Müri Notice The information in this publication is subject to change without notice. THIS PUBLICATION IS PROVIDED AS IS WITHOUT WARRANTIES OF ANY KIND, EXPRESS

Mehr

IBM Demokratischere Haushalte, bessere Steuerung, fundierte Entscheidungen? Was leisten das neue kommunale Finanzwesen und Business Intelligence?

IBM Demokratischere Haushalte, bessere Steuerung, fundierte Entscheidungen? Was leisten das neue kommunale Finanzwesen und Business Intelligence? Das IBM Leistungsversprechen zum Führungsinformationssystems IBM Demokratischere Haushalte, bessere Steuerung, fundierte Entscheidungen? Was leisten das neue kommunale Finanzwesen und Business Intelligence?

Mehr

Disclaimer. Copyright 2014, Oracle and/or its affiliates. All rights reserved.

Disclaimer. Copyright 2014, Oracle and/or its affiliates. All rights reserved. Disclaimer "THE FOLLOWING 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

Mehr

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 The following 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

Mehr

Mail: Web: juergen-schuster-it.de

Mail: Web: juergen-schuster-it.de Mail: j_schuster@me.com Twitter: @JuergenSchuster Web: juergen-schuster-it.de APEX Podcast: apex.press/talkshow Dynamic Actions Examples: dynamic-actions.com APEX-Meetups: apexmeetups.com APEX D-A-CH Facebook

Mehr

Db2 Engine Enhancements in Continuous Delivery

Db2 Engine Enhancements in Continuous Delivery Db2 Engine Enhancements in Continuous Delivery Oliver Draese, STSM Db2 for z/os Development IBM Silicon Valley Lab (odraese@us.ibm.com) Disclaimer Disclaimer IBM s statements regarding its plans, directions

Mehr

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

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into The following 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,

Mehr

SAP Integration leichtgemacht

SAP Integration leichtgemacht SAP Integration leichtgemacht Michael Stapf Nürnberg, 17. November 2010 Server Technologies BU MWTech ORACLE Deutschland B.V. & Co. KG The following is intended to outline our general product direction.

Mehr

SAP Simple Finance Die Finanz- und Risikomanagementlösung für die Digital Economy

SAP Simple Finance Die Finanz- und Risikomanagementlösung für die Digital Economy SAP Simple Finance Die Finanz- und Risikomanagementlösung für die Digital Economy Elmar Hassler, Business Transformation Service, SAP Österreich GmbH Public SAP IT Summit 2015, 21. & 22. April, Salzburg

Mehr

Wissenswertes für den Oracle DBA in der Cloud

Wissenswertes für den Oracle DBA in der Cloud Wissenswertes für den Oracle DBA in der Cloud DOAG Datenbank Konferenz, Mai 2017 Manuel Hoßfeld Leitender Systemberater Business Unit Core & Cloud Technologies Oracle Deutschland B.V. & Co KG Copyright

Mehr

Integration mobiler Anwendungen in die Infrastruktur des Unternehmens

Integration mobiler Anwendungen in die Infrastruktur des Unternehmens Integration mobiler Anwendungen in die Infrastruktur des Unternehmens Detlef Müller Leitender Systemberater Business Unit Middleware ORACLE Deutschland B.V. & Co. KG The following is intended to outline

Mehr

Patching und Provisioning von Linux-basierten Infrastrukturen

Patching und Provisioning von Linux-basierten Infrastrukturen Patching und Provisioning von Linux-basierten Infrastrukturen Manuel Hoßfeld Server Technologies Customer Center Mitte DB Oracle Deutschland B.V. & Co. KG Elke Freymann Data Center

Mehr

Bedeutung von Compliance u. Riskmanagement für Unternehmen

Bedeutung von Compliance u. Riskmanagement für Unternehmen Bedeutung von Compliance u. Riskmanagement für Unternehmen Michael Junk IT-Security & Compliance Manager MJunk@novell.com Zertifiziert bei T.I.S.P / ITIL / CISA / ISO Compliance 2 Es geht also wieder mal

Mehr

Oracle Scorecard & Strategy Management (OSSM) Björn Ständer, Director Business Development BI Oracle Deutschland B.V. & Co. KG

Oracle Scorecard & Strategy Management (OSSM) Björn Ständer, Director Business Development BI Oracle Deutschland B.V. & Co. KG Oracle Scorecard & Strategy Management (OSSM) Björn Ständer, Director Business Development BI Oracle Deutschland B.V. & Co. KG The following is intended to outline our general product direction. It is

Mehr

<Insert Picture Here> Erste Schritte mit Oracle Forms 11gR1 und Oracle Reports 11g R1 Moderne Klassiker

<Insert Picture Here> Erste Schritte mit Oracle Forms 11gR1 und Oracle Reports 11g R1 Moderne Klassiker Erste Schritte mit Oracle Forms 11gR1 und Oracle Reports 11g R1 Moderne Klassiker Markus Kelnhofer Oracle Deutschland GmbH - Support - The following is intended to outline our general

Mehr

Industrie 4.0 SAP 3D Visual Enterprise Quality Management App

Industrie 4.0 SAP 3D Visual Enterprise Quality Management App Industrie 4.0 SAP 3D Visual Enterprise Quality Management App, Industriestrasse 55, 6312 Steinhausen, Schweiz Benjamin Kaulich, Chief Commercial Officer, Dominik Gempeler, Solution Architect, 3D visuals

Mehr

Mobile hybride Applikationen Investment-App der BW-Bank

Mobile hybride Applikationen Investment-App der BW-Bank Mobile hybride Applikationen Investment-App der BW-Bank avono Aktiengesellschaft Breite Straße 2 70173 Stuttgart www.avono.de Fon (0711) 28 07 57 0 Fax (0711) 28 07 57-28 Ihr Referent Manfred Heiland Senior

Mehr

Serverless Architecture with Azure-Functions

Serverless Architecture with Azure-Functions Serverless Architecture with Azure-Functions Mark Allibone @mallibone Noser Engineering AG 2017, Alle Rechte vorbehalten. Mark Allibone, Head of Mobile @mallibone Noser Engineering AG Ambassador https://mallibone.com

Mehr

+++ Bitte nutzen Sie die integrierte Audio-Funktion von WebEx (Menü Audio -> Integrated Voice Conference -> Start auswählen), um uns zu hören!!!

+++ Bitte nutzen Sie die integrierte Audio-Funktion von WebEx (Menü Audio -> Integrated Voice Conference -> Start auswählen), um uns zu hören!!! +++ Bitte nutzen Sie die integrierte Audio-Funktion von WebEx (Menü Audio -> Integrated Voice Conference -> Start auswählen), um uns zu hören!!! +++ Identity Management für Cloud, Mobile und Michael Fischer

Mehr

2011 Oracle Corporation Customer Presentation Version 5.2.2/20110526

2011 Oracle Corporation Customer Presentation Version 5.2.2/20110526 1 Neues zur Lizensierung der Oracle Sun Storage Archive Manager Software und Oracle Sun QFS Software Dirk Nitschke Sales Consultant The following is intended to outline our general

Mehr

A Business Platform for The 21 st Century. Glimpses into some Research Activities Dr. Albrecht Ricken November 24, 2015

A Business Platform for The 21 st Century. Glimpses into some Research Activities Dr. Albrecht Ricken November 24, 2015 A Business Platform for The 21 st Century Glimpses into some Research Activities Dr. Albrecht Ricken November 24, 2015 Industry 4.0 is not about a networked company It is about a networked economy 2 Lotsize

Mehr

Keine Kompromisse bei der Performance in der Cloud! Christian Lorentz, Product Marketing Manager

Keine Kompromisse bei der Performance in der Cloud! Christian Lorentz, Product Marketing Manager 1 Keine Kompromisse bei der Performance in der Cloud! Christian Lorentz, Product Marketing Manager Angenommen Sie könnten. 2 Beschleunigen Anwendungen bis zu 50x schneller, besseres time-to-market Konsolidieren

Mehr

SaaS Von der Revolution zur Option

SaaS Von der Revolution zur Option SaaS Von der Revolution zur Option Praxisbeispiel: Erstellen einer SaaS Anwendung auf der force.com Plattform Matthew Friend, Technical Sales Engineer salesforce.com Agenda Einführung in Force.com Demo

Mehr

Wer bin ich? Und wenn ja wo überall und wieviele

Wer bin ich? Und wenn ja wo überall und wieviele Wer bin ich? Und wenn ja wo überall und wieviele ORACLE Deutschland B.V. & Co. KG Security Principal Michael.Fischer@oracle.com Safe Harbor Statement The following is intended to outline our general product

Mehr

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Customer Presentation

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Customer Presentation 1 Copyright 2011, Oracle and/or its affiliates. All rights Zugriff auf Daten und Gerätefunktionen von mobilen Endgeräten mit ADF Mobile Jürgen Menge Oracle Deutschland B.V. & Co. KG 2 Copyright 2011, Oracle

Mehr

Karlsruhe Institute of Technology Die Kooperation von Forschungszentrum Karlsruhe GmbH und Universität Karlsruhe (TH)

Karlsruhe Institute of Technology Die Kooperation von Forschungszentrum Karlsruhe GmbH und Universität Karlsruhe (TH) Combining Cloud and Grid with a User Interface Jie Tao Karlsruhe Institute of Technology jie.tao@kit.edu Die Kooperation von Outline Motivation The g-eclipse Project Extending gg-eclipse for a Cloud Framework

Mehr

Oracle Cloud Überblick

Oracle Cloud Überblick Oracle Cloud Überblick Annegret Warnecke Sales Consultant DOAG Regio / Hannover März 2016 Copyright 2014 Oracle and/or its affiliates. All rights reserved. 1 Safe Harbor Statement The following is intended

Mehr

APEX Office Print - Einfach Druck machen! Daniel Hochleitner Freelance APEX Developer, FOEX GmbH

APEX Office Print - Einfach Druck machen! Daniel Hochleitner Freelance APEX Developer, FOEX GmbH APEX Office Print - Einfach Druck machen! Daniel Hochleitner Freelance APEX Developer, FOEX GmbH APEX Connect 2018 Call for Papers bis 08.11.2017!! Agenda About APEX Office Print Lizenz / Architektur /

Mehr

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

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into The following 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,

Mehr

Oracle Application Express 5.1

Oracle Application Express 5.1 Oracle Application Express 5.1 Universal Theme Marc Sewtz Senior Software Development Manager Oracle America, Inc. New York, NY Copyright 2016, Oracle and/or its affiliates. All rights reserved. Confidential

Mehr

The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle.

The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle. The following 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,

Mehr

Dr. Jens Hündling Manager Sales Consulting Oracle, Potsdam. DOAG SIG BPM Frankfurt, 27. September 2011

Dr. Jens Hündling Manager Sales Consulting Oracle, Potsdam. DOAG SIG BPM Frankfurt, 27. September 2011 Oracle Process Process Management: Strategie und Produktüberblick Dr. Jens Hündling Manager Sales Consulting Oracle, Potsdam DOAG SIG BPM Frankfurt, 27. September 2011 The

Mehr

Bessere UI dank APEX am Beispiel von Oracle EBS und OBIEE

Bessere UI dank APEX am Beispiel von Oracle EBS und OBIEE Bessere UI dank APEX am Beispiel von Oracle EBS und OBIEE Kai Glittenberg Senior DBA Consultant Treffen Sie uns später am Stand Scope Alliance im 1. OG Sven Böttcher Senior Consultant 16. November 2016

Mehr

Neues von Oracle. Gut zu wissen... Annett Thurm-Meyer. 17. August Senior Sales Consultant Business Analytics

Neues von Oracle. Gut zu wissen... Annett Thurm-Meyer. 17. August Senior Sales Consultant Business Analytics Neues von Oracle Gut zu wissen... Annett Thurm-Meyer Senior Sales Consultant Business Analytics 7. August 207 Copyright 207, Oracle and/or its affiliates. All rights reserved. 2 Safe Harbor Statement The

Mehr

Operationale Daten direkt einbinden

Operationale Daten direkt einbinden Operationale Daten direkt einbinden Warum denn nicht? Tobias Leicher CICS Specialist and zchampion for Modernization tobias.leicher@de.ibm.com Ein Märchen von Datenzugriffen Warum liebst du mich nicht

Mehr

ORACLE CLOUD VERLEIHT ADF ANWENDUNGEN FLÜGEL. Andreas Koop CEO & Consultant Oracle Technologies

ORACLE CLOUD VERLEIHT ADF ANWENDUNGEN FLÜGEL. Andreas Koop CEO & Consultant Oracle Technologies ORACLE CLOUD VERLEIHT ADF ANWENDUNGEN FLÜGEL CEO & Consultant Oracle Technologies DOAG 2013 Development, Bonn, 19.06.2013 ÜBER MICH CEO & Consultant Oracle Technologies Beratung, Training Oracle Technologie

Mehr

Wie man Anapis verwaltet

Wie man Anapis verwaltet SAP API Management Ihr Helfer auf dem Weg ins digitale Business Arne Speck, Plattform Architekt Global Center of Excellence for Database & Technology, SAP (Schweiz) AG 2016 SAP SE or an SAP affiliate company.

Mehr

SAP Digital Boardroom

SAP Digital Boardroom SAP Digital Boardroom Digitales Sitzungszimmer in Echtzeit Alexander Klein, Presales Specialist Günter Plahl, Business Development 25. August 2016 Legal disclaimer The information in this presentation

Mehr

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Customer Presentation

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Customer Presentation 1 Copyright 2011, Oracle and/or its affiliates. All rights Forms 2.0 Forms 4.0 Forms 9i Forms 2.3 Forms 4.5 Forms 6i Forms 10g Forms 3.0 Forms 5.0 Forms 11g Forms & Reports Totgesagte leben länger... Christian

Mehr

Exercise (Part II) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1

Exercise (Part II) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1 Exercise (Part II) Notes: The exercise is based on Microsoft Dynamics CRM Online. For all screenshots: Copyright Microsoft Corporation. The sign ## is you personal number to be used in all exercises. All

Mehr

Silverlight 5 die Neuerungen. Thomas Claudius Huber Senior Consultant Trivadis AG

Silverlight 5 die Neuerungen. Thomas Claudius Huber Senior Consultant Trivadis AG Silverlight 5 die Neuerungen Thomas Claudius Huber Senior Consultant Trivadis AG Thomas Claudius Huber.NET Senior Consultant @Trivadis Basel Spezialisiert auf Silverlight und WPF Autor der umfassenden

Mehr