SlideShare una empresa de Scribd logo
1 de 35
Descargar para leer sin conexión
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
What’s News In Oracle Database 18c
Patrik Plachy
Senior Sales Consultant
patrik.plachy@oracle.com
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
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 to deliver any material, code, or functionality, and should not be relied upon
in making purchasing decisions. The development, release, timing and price of any
features or functionality described for Oracle’s products may change and remains at the
sole discretion of Oracle corporation. Fees apply for new database product offerings.
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Program Agenda
The year in review
Oracle Database Release Model
Oracle Database 18c
A few other things…
1
2
3
4
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Program Agenda with Highlight
The year in review
Oracle Database Release Model
Oracle Database 18c
A few other things…
1
2
3
4
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Oracle Server Technologies : A year in a review
November December January February March April May June July August September October
2017
Exadata Express
Exadata Cloud
Service
Oracle Database 12c Release 2
Exadata
Oracle Database 12c Release 2
Linux, Solaris
Oracle Big Data SQL 3.1
Oracle NoSQL Database 4.3
Support for Docker
Application Express 5.1
ORDS 3.1
Exadata X6-2
Exadata X6-8
ODA X6-2
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Massive Cost Savings
and Cloud Agility with
Multitenant
Plus more features for better Performance, Availability, Security, Analytics, and Application Development
Massive Web Applications
with Sharding
Massive Performance
with Database In-
Memory
Oracle Database 12c Release 2
Marquee Features
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Oracle Database 12c “Under the Radar” FeaturesOnlineTableMove
JSON
Real Time Materialized Views
IndexCompression
Auto Generated Sequences
Long Identifiers
Online Tablespace Encryption
Property Graph
SQL Plan Management Enhancements
TopNQueries
Invisible Columns
Longer Varchars
Security Assessment Tool
LiveSQL
IndexUsageStats
Application Continuity
Auto List Partitioning
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Program Agenda with Highlight
The year in review
Oracle Database Release Model
Oracle Database 18c
A few other things…
1
2
3
4
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
New
Releases
Yearly
Release
Updates
Quarterly
Release
Update Revisions
Agile Delivery
New Release and Update Model for Database
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Lifetime Support Commitments and Plans2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
EXTENDED
EXTENDED*
12.2
18c
20c
11.2 EXTENDED
EXTENDED12.1
12.2.0.1
Oracle 19OrOracle 1919c
Paid Extended SupportPremier Waived Extended Support Fee
*Oracle Database 19c is expected to the long term support release.
Always check MOS Note 742060.1 for the latest schedule.
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Program Agenda with Highlight
The year in review
Oracle Database Release Model
Oracle Database 18c
A few other things…
1
2
3
4
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Performance
• In-Memory Column Store
• Software in Silicon
• Engineered Systems
Today Oracle Database 18c
• Low Latency Memory Transactions
• 2x throughput for streaming ingest
• 4x throughput for low latency key lookups
• Non Volatile Memory Support
• Multi Tiered Database Cache
• In-Memory Column Store Improvements
• Performance improvements
• Automatic Population
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
• Ultra-Fast key-based lookup:
– Uses new lock-free In-memory hash index
– Just declare table MEMOPTIMIZE FOR
READ
• New low latency client protocol with
direct access to data engine
• Performance benefits:
– Up to 4x throughput increase for Primary
Key based lookups
– 50% lower response times
Memory Optimized Access for OLTP Workloads
Example: Read Joe’s Balance
50
In-Memory
Hash Index
In-Memory
Row Store
CUST ID NAME BAL
5 Jack 12
1 Ying 76
31 Joe 32
12 Maria 31
Client
Optimized
ReadsLookup
by hash of
Joe’s ID (31)
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
• New streaming ingest:
– Declare table MEMOPTIMIZE FOR WRITE
– Clients performs low-latency write into
in-memory buffer
– Buffered writes drained in background
– Very high throughput inserts since server
issues deferred writes in large batches
• Performance:
– 2x faster throughput than conventional
• 21M inserts per second on 2-socket server
Memory Optimized Access for IoT Workloads
Example: Write Temperature Reading
IoT Client
Optimized
Write
Temp
Readings
Periodic
Buffer Drain
Buffer
Append Background
Drainers
In-Memory
Ingest Buffer
Time Temp
05:50 52o
05:55 54o
06:00 54o
06:05 55o
Insert:
<6:05AM, 55o >
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Multitenant
• Container managed database virtualization
• Manage Many as one
• Patching, Backup, Security, Online Cloning, Online
Relocation
• Software as Service
• Shared metadata, Data location transparency
Today Oracle Database 18c
• Per-PDB Switchover
• Transportable Backups
• Snapshot Carousel
• Faster Upgrades
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Per-PDB Switchover
Server1
CDB1
CDB2
Server2
create pluggable database Grey
from Grey@CDB2_Link
refresh mode auto every 2 minutes;
create pluggable database Red
from Red@CDB1_Link
refresh mode auto every 2 minutes;
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Per-PDB Switchover
Server1
CDB1
CDB2
Server2
1. alter pluggable database refresh
mode auto every 2 minutes from
Grey@dblink switchover;
2. alter pluggable database Grey
open read write;
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Availability
• Comprehensive HA and disaster recovery
functionality
• Real Application Clusters, Active Data Guard, Recovery
Appliance
• Oracle Golden Gate for heterogeneous
replication
• Scale out and fault isolation with Oracle Database
Sharding
Today Oracle Database 18c
• Zero Impact Grid Infrastructure Patching
• Sharded RAC
• Logically partition data across instances in RAC
• Sharded access for shard-aware applications and
transparency for non-sharded applications
• Sharding improvements
• User Defined Sharding
• Improved Cross Shard Query support
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Sharded RAC
• Affinitizes shards to RAC instances
– Requests that specify sharding key will be routed to
the RAC instance that logically holds the shard
– Affinity gives better cache utilization and reduced
block pings across instances
• Requests that don’t specify sharding key still
work transparently
• Gives Sharded Database performance with
minimal application changes
– Just add sharding key to the most performance
intensive operations
Higher performance for shard-aware RAC applications
Oracle RAC Database
Instance 1
Partition P1
Instance 2
Partition P2
Instance 3
Partition P3
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Security
• Security In-Depth
• Access Controls, Encryption, Redaction, Masking, Auditing,
SQL Firewalls
• Key Vault
• Audit Vault Database Firewall
• Security Assessment Tool
Today
Active Directory
• Integration with Active Directory
• Authorization to database through Active Directory
user/group mappings to database schema users and
roles
• Per PDB Key storage
• Password-less schema creation
• No default passwords
Oracle Database 18c
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Centrally Managed Users Directly in Active Directory
Database User
Authentication Data
Authorization Data
Oracle
Directory Services
Map Users / Roles
Enterprise Domains
Password
Kerberos, PKI
Oracle
Database
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Data Warehousing and Big Data
• The most advanced analytics engine available
today
• Partitioning, Compression, SQL, Analytical Views, Analytical
SQL, Data Mining
• Easily analyze data held in Hadoop with Big Data
SQL
• Big Data Appliance
Today Oracle Database 18c
• In-Memory for external tables
• Automatic propagation of nologged data to
standby
• More Machine Learning algorithms
• Polymorphic Table Functions
• Alter Table Merge Partition Online
• Approximate Query Improvements
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Polymorphic Tables: Self-Describing, Fully Dynamic SQL
• Part of ANSI 2016
• Encapsulate sophisticated algorithms
– Hides implementation of algorithms
– Leverage powerful, dynamic capabilities of SQL
– Pass in any table-columns for processing
– Returns SQL rowset (table, JSON, XML doc etc)
• E.g. return credit score and associated risk levelCREDIT RISK
ALGORITHM
SQL
QUERY
POLYMORPHIC TABLE FUNCTION
INPUTS:
TABLE JSONXML ANALYTIC VIEW
SELECT
state_id, . . ., AVG(credit_score), risk
FROM CREDIT_RISK(
tab => scott.customers,
cols => columns(dob, zip,loan_default),
outs => columns(credit_score, risk_level))
WHERE risk_level = ‘High’
GROUP BY state_id;
SCOTT.CREDIT_RISK
H
H
H
H
STATE_ID RISKA_SCOREPOP LOANS A_LOAN
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
• Application Express 5.1
• SQL Developer & SQLCl
• Comprehensive Language support
• PL/SQL, SQL , Python, Node.js, PHP, Java, C, .NET, REST
• JSON
• SODA API, SODA REST API
• SQL Support
• Improved JSON Support
• Property Graph Improvements
• Support for PGQL
• Rolling patches for OJVM
• Private Temporary Tables
Development
Today Oracle Database 18c
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Private temporary tables
transient tables useful for reporting applications
Global temporary tables
• Persistent, shared (global) table definition
• Temporary, private (session-based) data content
– Data physically exists for a transaction or session
– Session-private statistics
ACC_TMP
ACC_TMPACC_TMP
Private temporary tables (18c)
• Temporary, private (session-based) table definition
– Private table name and shape
• Temporary, private (session-based) data content
– Session or transaction duration
ACC_PTMPACC_PTMP
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Program Agenda with Highlight
The year in review
Oracle Database Release Model
Oracle Database 18c
A few other things…
1
2
3
4
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Database Instance Management REST API
• A REST API to provide instance management and monitoring
• Same consistent API for Cloud and On Premises
• Simple API for all database lifecycle operations
• Supports Oracle Databases integration with orchestration frameworks
• Expected CY2018
https:// myserver.mydomain.com /ords /databases/ exadata / pdbs
List the pdbs in the exadata database container
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Official Docker Support
• Oracle Database is fully supported on Docker for
– Oracle Linux 7
– Red Hat Enterprise Linux 7
• Oracle RAC is not supported on Docker
• MOS Note: Oracle Support for Database Running on Docker (Doc ID 2216342.1)
• Oracle 12.2.0.1 & 12.1.0.2 images are available on Oracle Container Registry
– https://container-registry.oracle.com
• Docker build files also available at
– : https://github.com/oracle/docker-images
Oracle RAC support is coming
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
New Installation Approaches
• Oracle Gold Image as a Service
– On demand image creation including application of RUs, RURs and one off patches
– Request images as a
• Zip file, TAR File, Docker Image, Virtual Box, VM (Ravello, BMC, Vbox)
– Web Interface or REST API
– Coming soon…
• Oracle Installation via RPM
– Oracle EE, SE2, and Grid Infrastructure
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
One More Thing…
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Oracle Database18c XE
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Oracle Database 18c XE
• Free use for development and production
• Expected CY 2018
• Nearly all functionality is included
• Limited to 12GB of user storage
• Limited to 2GB of SGA
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Oracle Database 18c New Features and Enhancements

Más contenido relacionado

La actualidad más candente

Data Streaming with Apache Kafka & MongoDB - EMEA
Data Streaming with Apache Kafka & MongoDB - EMEAData Streaming with Apache Kafka & MongoDB - EMEA
Data Streaming with Apache Kafka & MongoDB - EMEAAndrew Morgan
 
Ozone: scaling HDFS to trillions of objects
Ozone: scaling HDFS to trillions of objectsOzone: scaling HDFS to trillions of objects
Ozone: scaling HDFS to trillions of objectsDataWorks Summit
 
Nordic infrastructure Conference 2017 - SQL Server on Linux Overview
Nordic infrastructure Conference 2017 - SQL Server on Linux OverviewNordic infrastructure Conference 2017 - SQL Server on Linux Overview
Nordic infrastructure Conference 2017 - SQL Server on Linux OverviewTravis Wright
 
RedisConf18 - Remote Monitoring & Controlling Scienific Instruments
RedisConf18 - Remote Monitoring & Controlling Scienific InstrumentsRedisConf18 - Remote Monitoring & Controlling Scienific Instruments
RedisConf18 - Remote Monitoring & Controlling Scienific InstrumentsRedis Labs
 
From Insights to Value - Building a Modern Logical Data Lake to Drive User Ad...
From Insights to Value - Building a Modern Logical Data Lake to Drive User Ad...From Insights to Value - Building a Modern Logical Data Lake to Drive User Ad...
From Insights to Value - Building a Modern Logical Data Lake to Drive User Ad...DataWorks Summit
 
Building a modern end-to-end open source Big Data reference application
Building a modern end-to-end open source Big Data reference applicationBuilding a modern end-to-end open source Big Data reference application
Building a modern end-to-end open source Big Data reference applicationDataWorks Summit
 
Netflix's Big Leap from Oracle to Cassandra
Netflix's Big Leap from Oracle to CassandraNetflix's Big Leap from Oracle to Cassandra
Netflix's Big Leap from Oracle to CassandraRoopa Tangirala
 
Red hat ceph storage customer presentation
Red hat ceph storage customer presentationRed hat ceph storage customer presentation
Red hat ceph storage customer presentationRodrigo Missiaggia
 
Querying Druid in SQL with Superset
Querying Druid in SQL with SupersetQuerying Druid in SQL with Superset
Querying Druid in SQL with SupersetDataWorks Summit
 
Saving the elephant—now, not later
Saving the elephant—now, not laterSaving the elephant—now, not later
Saving the elephant—now, not laterDataWorks Summit
 
Accelerating Business Intelligence Solutions with Microsoft Azure pass
Accelerating Business Intelligence Solutions with Microsoft Azure   passAccelerating Business Intelligence Solutions with Microsoft Azure   pass
Accelerating Business Intelligence Solutions with Microsoft Azure passJason Strate
 
SQL Server on Linux - march 2017
SQL Server on Linux - march 2017SQL Server on Linux - march 2017
SQL Server on Linux - march 2017Sorin Peste
 
Built-In Security for the Cloud
Built-In Security for the CloudBuilt-In Security for the Cloud
Built-In Security for the CloudDataWorks Summit
 
RedisConf18 - Redis Enterprise on Cloud Native Platforms
RedisConf18 - Redis Enterprise on Cloud  Native  Platforms RedisConf18 - Redis Enterprise on Cloud  Native  Platforms
RedisConf18 - Redis Enterprise on Cloud Native Platforms Redis Labs
 
MANTL Data Platform, Microservices and BigData Services
MANTL Data Platform, Microservices and BigData ServicesMANTL Data Platform, Microservices and BigData Services
MANTL Data Platform, Microservices and BigData ServicesCisco DevNet
 
Implementing Security on a Large Multi-Tenant Cluster the Right Way
Implementing Security on a Large Multi-Tenant Cluster the Right WayImplementing Security on a Large Multi-Tenant Cluster the Right Way
Implementing Security on a Large Multi-Tenant Cluster the Right WayDataWorks Summit
 
Exploring microservices in a Microsoft landscape
Exploring microservices in a Microsoft landscapeExploring microservices in a Microsoft landscape
Exploring microservices in a Microsoft landscapeAlex Thissen
 
Startup Case Study: Leveraging the Broad Hadoop Ecosystem to Develop World-Fi...
Startup Case Study: Leveraging the Broad Hadoop Ecosystem to Develop World-Fi...Startup Case Study: Leveraging the Broad Hadoop Ecosystem to Develop World-Fi...
Startup Case Study: Leveraging the Broad Hadoop Ecosystem to Develop World-Fi...DataWorks Summit
 
Running Analytics at the Speed of Your Business
Running Analytics at the Speed of Your BusinessRunning Analytics at the Speed of Your Business
Running Analytics at the Speed of Your BusinessRedis Labs
 

La actualidad más candente (20)

Data Streaming with Apache Kafka & MongoDB - EMEA
Data Streaming with Apache Kafka & MongoDB - EMEAData Streaming with Apache Kafka & MongoDB - EMEA
Data Streaming with Apache Kafka & MongoDB - EMEA
 
Ozone: scaling HDFS to trillions of objects
Ozone: scaling HDFS to trillions of objectsOzone: scaling HDFS to trillions of objects
Ozone: scaling HDFS to trillions of objects
 
Nordic infrastructure Conference 2017 - SQL Server on Linux Overview
Nordic infrastructure Conference 2017 - SQL Server on Linux OverviewNordic infrastructure Conference 2017 - SQL Server on Linux Overview
Nordic infrastructure Conference 2017 - SQL Server on Linux Overview
 
RedisConf18 - Remote Monitoring & Controlling Scienific Instruments
RedisConf18 - Remote Monitoring & Controlling Scienific InstrumentsRedisConf18 - Remote Monitoring & Controlling Scienific Instruments
RedisConf18 - Remote Monitoring & Controlling Scienific Instruments
 
From Insights to Value - Building a Modern Logical Data Lake to Drive User Ad...
From Insights to Value - Building a Modern Logical Data Lake to Drive User Ad...From Insights to Value - Building a Modern Logical Data Lake to Drive User Ad...
From Insights to Value - Building a Modern Logical Data Lake to Drive User Ad...
 
Building a modern end-to-end open source Big Data reference application
Building a modern end-to-end open source Big Data reference applicationBuilding a modern end-to-end open source Big Data reference application
Building a modern end-to-end open source Big Data reference application
 
Netflix's Big Leap from Oracle to Cassandra
Netflix's Big Leap from Oracle to CassandraNetflix's Big Leap from Oracle to Cassandra
Netflix's Big Leap from Oracle to Cassandra
 
Red hat ceph storage customer presentation
Red hat ceph storage customer presentationRed hat ceph storage customer presentation
Red hat ceph storage customer presentation
 
Querying Druid in SQL with Superset
Querying Druid in SQL with SupersetQuerying Druid in SQL with Superset
Querying Druid in SQL with Superset
 
Saving the elephant—now, not later
Saving the elephant—now, not laterSaving the elephant—now, not later
Saving the elephant—now, not later
 
Accelerating Business Intelligence Solutions with Microsoft Azure pass
Accelerating Business Intelligence Solutions with Microsoft Azure   passAccelerating Business Intelligence Solutions with Microsoft Azure   pass
Accelerating Business Intelligence Solutions with Microsoft Azure pass
 
SQL Server on Linux - march 2017
SQL Server on Linux - march 2017SQL Server on Linux - march 2017
SQL Server on Linux - march 2017
 
Built-In Security for the Cloud
Built-In Security for the CloudBuilt-In Security for the Cloud
Built-In Security for the Cloud
 
RedisConf18 - Redis Enterprise on Cloud Native Platforms
RedisConf18 - Redis Enterprise on Cloud  Native  Platforms RedisConf18 - Redis Enterprise on Cloud  Native  Platforms
RedisConf18 - Redis Enterprise on Cloud Native Platforms
 
MANTL Data Platform, Microservices and BigData Services
MANTL Data Platform, Microservices and BigData ServicesMANTL Data Platform, Microservices and BigData Services
MANTL Data Platform, Microservices and BigData Services
 
Scaling HDFS at Xiaomi
Scaling HDFS at XiaomiScaling HDFS at Xiaomi
Scaling HDFS at Xiaomi
 
Implementing Security on a Large Multi-Tenant Cluster the Right Way
Implementing Security on a Large Multi-Tenant Cluster the Right WayImplementing Security on a Large Multi-Tenant Cluster the Right Way
Implementing Security on a Large Multi-Tenant Cluster the Right Way
 
Exploring microservices in a Microsoft landscape
Exploring microservices in a Microsoft landscapeExploring microservices in a Microsoft landscape
Exploring microservices in a Microsoft landscape
 
Startup Case Study: Leveraging the Broad Hadoop Ecosystem to Develop World-Fi...
Startup Case Study: Leveraging the Broad Hadoop Ecosystem to Develop World-Fi...Startup Case Study: Leveraging the Broad Hadoop Ecosystem to Develop World-Fi...
Startup Case Study: Leveraging the Broad Hadoop Ecosystem to Develop World-Fi...
 
Running Analytics at the Speed of Your Business
Running Analytics at the Speed of Your BusinessRunning Analytics at the Speed of Your Business
Running Analytics at the Speed of Your Business
 

Similar a Oracle Database 18c New Features and Enhancements

Meetup Oracle Database: 3 Analizar, Aconsejar, Automatizar… las nuevas funcio...
Meetup Oracle Database: 3 Analizar, Aconsejar, Automatizar… las nuevas funcio...Meetup Oracle Database: 3 Analizar, Aconsejar, Automatizar… las nuevas funcio...
Meetup Oracle Database: 3 Analizar, Aconsejar, Automatizar… las nuevas funcio...avanttic Consultoría Tecnológica
 
Oracle Database in-Memory Overivew
Oracle Database in-Memory OverivewOracle Database in-Memory Overivew
Oracle Database in-Memory OverivewMaria Colgan
 
New availability features in oracle rac 12c release 2 anair ss
New availability features in oracle rac 12c release 2 anair   ssNew availability features in oracle rac 12c release 2 anair   ss
New availability features in oracle rac 12c release 2 anair ssAnil Nair
 
Streaming Solutions for Real time problems
Streaming Solutions for Real time problemsStreaming Solutions for Real time problems
Streaming Solutions for Real time problemsAbhishek Gupta
 
Oracle NoSQL Database -- Big Data Bellevue Meetup - 02-18-15
Oracle NoSQL Database -- Big Data Bellevue Meetup - 02-18-15Oracle NoSQL Database -- Big Data Bellevue Meetup - 02-18-15
Oracle NoSQL Database -- Big Data Bellevue Meetup - 02-18-15Dave Segleau
 
Oracle Database Appliance (ODA) X6-2 Portfolio Overview
Oracle Database Appliance (ODA) X6-2 Portfolio OverviewOracle Database Appliance (ODA) X6-2 Portfolio Overview
Oracle Database Appliance (ODA) X6-2 Portfolio OverviewDaryll Whyte
 
Why MySQL High Availability Matters
Why MySQL High Availability MattersWhy MySQL High Availability Matters
Why MySQL High Availability MattersMatt Lord
 
TDC2016SP - Trilha NoSQL
TDC2016SP - Trilha NoSQLTDC2016SP - Trilha NoSQL
TDC2016SP - Trilha NoSQLtdc-globalcode
 
MySQL :What's New #GIDS16
MySQL :What's New #GIDS16MySQL :What's New #GIDS16
MySQL :What's New #GIDS16Sanjay Manwani
 
Coherence RoadMap 2018
Coherence RoadMap 2018Coherence RoadMap 2018
Coherence RoadMap 2018harvraja
 
Oracle Database Appliance, ODA, X7-2 portfolio.
Oracle Database Appliance, ODA, X7-2 portfolio.Oracle Database Appliance, ODA, X7-2 portfolio.
Oracle Database Appliance, ODA, X7-2 portfolio.Daryll Whyte
 
MySQL in oracle_environments(Part 2): MySQL Enterprise Monitor & Oracle Enter...
MySQL in oracle_environments(Part 2): MySQL Enterprise Monitor & Oracle Enter...MySQL in oracle_environments(Part 2): MySQL Enterprise Monitor & Oracle Enter...
MySQL in oracle_environments(Part 2): MySQL Enterprise Monitor & Oracle Enter...OracleMySQL
 
Optimize with Open Source
Optimize with Open SourceOptimize with Open Source
Optimize with Open SourceEDB
 
Connector/J Beyond JDBC: the X DevAPI for Java and MySQL as a Document Store
Connector/J Beyond JDBC: the X DevAPI for Java and MySQL as a Document StoreConnector/J Beyond JDBC: the X DevAPI for Java and MySQL as a Document Store
Connector/J Beyond JDBC: the X DevAPI for Java and MySQL as a Document StoreFilipe Silva
 
Přehled portfolia ODA a praktických případů v regionu EMEA
Přehled portfolia ODA a praktických případů v regionu EMEAPřehled portfolia ODA a praktických případů v regionu EMEA
Přehled portfolia ODA a praktických případů v regionu EMEAMarketingArrowECS_CZ
 
Meetup Oracle Database MAD: 2.1 Data Management Trends: SQL, NoSQL y Big Data
Meetup Oracle Database MAD: 2.1 Data Management Trends: SQL, NoSQL y Big Data Meetup Oracle Database MAD: 2.1 Data Management Trends: SQL, NoSQL y Big Data
Meetup Oracle Database MAD: 2.1 Data Management Trends: SQL, NoSQL y Big Data avanttic Consultoría Tecnológica
 
Oracle Database 19c - poslední z rodiny 12.2 a co přináší nového
Oracle Database 19c - poslední z rodiny 12.2 a co přináší novéhoOracle Database 19c - poslední z rodiny 12.2 a co přináší nového
Oracle Database 19c - poslední z rodiny 12.2 a co přináší novéhoMarketingArrowECS_CZ
 
MySQL 8.0 in a nutshell
MySQL 8.0 in a nutshellMySQL 8.0 in a nutshell
MySQL 8.0 in a nutshellOracleMySQL
 
State ofdolphin short
State ofdolphin shortState ofdolphin short
State ofdolphin shortMandy Ang
 
Oracle big data appliance and solutions
Oracle big data appliance and solutionsOracle big data appliance and solutions
Oracle big data appliance and solutionssolarisyougood
 

Similar a Oracle Database 18c New Features and Enhancements (20)

Meetup Oracle Database: 3 Analizar, Aconsejar, Automatizar… las nuevas funcio...
Meetup Oracle Database: 3 Analizar, Aconsejar, Automatizar… las nuevas funcio...Meetup Oracle Database: 3 Analizar, Aconsejar, Automatizar… las nuevas funcio...
Meetup Oracle Database: 3 Analizar, Aconsejar, Automatizar… las nuevas funcio...
 
Oracle Database in-Memory Overivew
Oracle Database in-Memory OverivewOracle Database in-Memory Overivew
Oracle Database in-Memory Overivew
 
New availability features in oracle rac 12c release 2 anair ss
New availability features in oracle rac 12c release 2 anair   ssNew availability features in oracle rac 12c release 2 anair   ss
New availability features in oracle rac 12c release 2 anair ss
 
Streaming Solutions for Real time problems
Streaming Solutions for Real time problemsStreaming Solutions for Real time problems
Streaming Solutions for Real time problems
 
Oracle NoSQL Database -- Big Data Bellevue Meetup - 02-18-15
Oracle NoSQL Database -- Big Data Bellevue Meetup - 02-18-15Oracle NoSQL Database -- Big Data Bellevue Meetup - 02-18-15
Oracle NoSQL Database -- Big Data Bellevue Meetup - 02-18-15
 
Oracle Database Appliance (ODA) X6-2 Portfolio Overview
Oracle Database Appliance (ODA) X6-2 Portfolio OverviewOracle Database Appliance (ODA) X6-2 Portfolio Overview
Oracle Database Appliance (ODA) X6-2 Portfolio Overview
 
Why MySQL High Availability Matters
Why MySQL High Availability MattersWhy MySQL High Availability Matters
Why MySQL High Availability Matters
 
TDC2016SP - Trilha NoSQL
TDC2016SP - Trilha NoSQLTDC2016SP - Trilha NoSQL
TDC2016SP - Trilha NoSQL
 
MySQL :What's New #GIDS16
MySQL :What's New #GIDS16MySQL :What's New #GIDS16
MySQL :What's New #GIDS16
 
Coherence RoadMap 2018
Coherence RoadMap 2018Coherence RoadMap 2018
Coherence RoadMap 2018
 
Oracle Database Appliance, ODA, X7-2 portfolio.
Oracle Database Appliance, ODA, X7-2 portfolio.Oracle Database Appliance, ODA, X7-2 portfolio.
Oracle Database Appliance, ODA, X7-2 portfolio.
 
MySQL in oracle_environments(Part 2): MySQL Enterprise Monitor & Oracle Enter...
MySQL in oracle_environments(Part 2): MySQL Enterprise Monitor & Oracle Enter...MySQL in oracle_environments(Part 2): MySQL Enterprise Monitor & Oracle Enter...
MySQL in oracle_environments(Part 2): MySQL Enterprise Monitor & Oracle Enter...
 
Optimize with Open Source
Optimize with Open SourceOptimize with Open Source
Optimize with Open Source
 
Connector/J Beyond JDBC: the X DevAPI for Java and MySQL as a Document Store
Connector/J Beyond JDBC: the X DevAPI for Java and MySQL as a Document StoreConnector/J Beyond JDBC: the X DevAPI for Java and MySQL as a Document Store
Connector/J Beyond JDBC: the X DevAPI for Java and MySQL as a Document Store
 
Přehled portfolia ODA a praktických případů v regionu EMEA
Přehled portfolia ODA a praktických případů v regionu EMEAPřehled portfolia ODA a praktických případů v regionu EMEA
Přehled portfolia ODA a praktických případů v regionu EMEA
 
Meetup Oracle Database MAD: 2.1 Data Management Trends: SQL, NoSQL y Big Data
Meetup Oracle Database MAD: 2.1 Data Management Trends: SQL, NoSQL y Big Data Meetup Oracle Database MAD: 2.1 Data Management Trends: SQL, NoSQL y Big Data
Meetup Oracle Database MAD: 2.1 Data Management Trends: SQL, NoSQL y Big Data
 
Oracle Database 19c - poslední z rodiny 12.2 a co přináší nového
Oracle Database 19c - poslední z rodiny 12.2 a co přináší novéhoOracle Database 19c - poslední z rodiny 12.2 a co přináší nového
Oracle Database 19c - poslední z rodiny 12.2 a co přináší nového
 
MySQL 8.0 in a nutshell
MySQL 8.0 in a nutshellMySQL 8.0 in a nutshell
MySQL 8.0 in a nutshell
 
State ofdolphin short
State ofdolphin shortState ofdolphin short
State ofdolphin short
 
Oracle big data appliance and solutions
Oracle big data appliance and solutionsOracle big data appliance and solutions
Oracle big data appliance and solutions
 

Más de MarketingArrowECS_CZ

INFINIDAT InfiniGuard - 20220330.pdf
INFINIDAT InfiniGuard - 20220330.pdfINFINIDAT InfiniGuard - 20220330.pdf
INFINIDAT InfiniGuard - 20220330.pdfMarketingArrowECS_CZ
 
Využijte svou Oracle databázi na maximum!
Využijte svou Oracle databázi na maximum!Využijte svou Oracle databázi na maximum!
Využijte svou Oracle databázi na maximum!MarketingArrowECS_CZ
 
Jak konsolidovat Vaše databáze s využitím Cloud služeb?
Jak konsolidovat Vaše databáze s využitím Cloud služeb?Jak konsolidovat Vaše databáze s využitím Cloud služeb?
Jak konsolidovat Vaše databáze s využitím Cloud služeb?MarketingArrowECS_CZ
 
Oracle databáze – Konsolidovaná Data Management Platforma
Oracle databáze – Konsolidovaná Data Management PlatformaOracle databáze – Konsolidovaná Data Management Platforma
Oracle databáze – Konsolidovaná Data Management PlatformaMarketingArrowECS_CZ
 
Nové vlastnosti Oracle Database Appliance
Nové vlastnosti Oracle Database ApplianceNové vlastnosti Oracle Database Appliance
Nové vlastnosti Oracle Database ApplianceMarketingArrowECS_CZ
 
Novinky ve světě Oracle DB a koncept konvergované databáze
Novinky ve světě Oracle DB a koncept konvergované databázeNovinky ve světě Oracle DB a koncept konvergované databáze
Novinky ve světě Oracle DB a koncept konvergované databázeMarketingArrowECS_CZ
 
Základy licencování Oracle software
Základy licencování Oracle softwareZáklady licencování Oracle software
Základy licencování Oracle softwareMarketingArrowECS_CZ
 
Garance 100% dostupnosti dat! Kdo z vás to má?
Garance 100% dostupnosti dat! Kdo z vás to má?Garance 100% dostupnosti dat! Kdo z vás to má?
Garance 100% dostupnosti dat! Kdo z vás to má?MarketingArrowECS_CZ
 
Využijte svou Oracle databázi naplno
Využijte svou Oracle databázi naplnoVyužijte svou Oracle databázi naplno
Využijte svou Oracle databázi naplnoMarketingArrowECS_CZ
 
Oracle Data Protection - 2. část
Oracle Data Protection - 2. částOracle Data Protection - 2. část
Oracle Data Protection - 2. částMarketingArrowECS_CZ
 
Oracle Data Protection - 1. část
Oracle Data Protection - 1. částOracle Data Protection - 1. část
Oracle Data Protection - 1. částMarketingArrowECS_CZ
 
Benefity Oracle Cloudu (4/4): Storage
Benefity Oracle Cloudu (4/4): StorageBenefity Oracle Cloudu (4/4): Storage
Benefity Oracle Cloudu (4/4): StorageMarketingArrowECS_CZ
 
Benefity Oracle Cloudu (3/4): Compute
Benefity Oracle Cloudu (3/4): ComputeBenefity Oracle Cloudu (3/4): Compute
Benefity Oracle Cloudu (3/4): ComputeMarketingArrowECS_CZ
 
Exadata z pohledu zákazníka a novinky generace X8M - 2. část
Exadata z pohledu zákazníka a novinky generace X8M - 2. částExadata z pohledu zákazníka a novinky generace X8M - 2. část
Exadata z pohledu zákazníka a novinky generace X8M - 2. částMarketingArrowECS_CZ
 
Exadata z pohledu zákazníka a novinky generace X8M - 1. část
Exadata z pohledu zákazníka a novinky generace X8M - 1. částExadata z pohledu zákazníka a novinky generace X8M - 1. část
Exadata z pohledu zákazníka a novinky generace X8M - 1. částMarketingArrowECS_CZ
 
Úvod do Oracle Cloud infrastruktury
Úvod do Oracle Cloud infrastrukturyÚvod do Oracle Cloud infrastruktury
Úvod do Oracle Cloud infrastrukturyMarketingArrowECS_CZ
 

Más de MarketingArrowECS_CZ (20)

INFINIDAT InfiniGuard - 20220330.pdf
INFINIDAT InfiniGuard - 20220330.pdfINFINIDAT InfiniGuard - 20220330.pdf
INFINIDAT InfiniGuard - 20220330.pdf
 
Využijte svou Oracle databázi na maximum!
Využijte svou Oracle databázi na maximum!Využijte svou Oracle databázi na maximum!
Využijte svou Oracle databázi na maximum!
 
Jak konsolidovat Vaše databáze s využitím Cloud služeb?
Jak konsolidovat Vaše databáze s využitím Cloud služeb?Jak konsolidovat Vaše databáze s využitím Cloud služeb?
Jak konsolidovat Vaše databáze s využitím Cloud služeb?
 
Chráníte správně svoje data?
Chráníte správně svoje data?Chráníte správně svoje data?
Chráníte správně svoje data?
 
Oracle databáze – Konsolidovaná Data Management Platforma
Oracle databáze – Konsolidovaná Data Management PlatformaOracle databáze – Konsolidovaná Data Management Platforma
Oracle databáze – Konsolidovaná Data Management Platforma
 
Nové vlastnosti Oracle Database Appliance
Nové vlastnosti Oracle Database ApplianceNové vlastnosti Oracle Database Appliance
Nové vlastnosti Oracle Database Appliance
 
Infinidat InfiniGuard
Infinidat InfiniGuardInfinidat InfiniGuard
Infinidat InfiniGuard
 
Infinidat InfiniBox
Infinidat InfiniBoxInfinidat InfiniBox
Infinidat InfiniBox
 
Novinky ve světě Oracle DB a koncept konvergované databáze
Novinky ve světě Oracle DB a koncept konvergované databázeNovinky ve světě Oracle DB a koncept konvergované databáze
Novinky ve světě Oracle DB a koncept konvergované databáze
 
Základy licencování Oracle software
Základy licencování Oracle softwareZáklady licencování Oracle software
Základy licencování Oracle software
 
Garance 100% dostupnosti dat! Kdo z vás to má?
Garance 100% dostupnosti dat! Kdo z vás to má?Garance 100% dostupnosti dat! Kdo z vás to má?
Garance 100% dostupnosti dat! Kdo z vás to má?
 
Využijte svou Oracle databázi naplno
Využijte svou Oracle databázi naplnoVyužijte svou Oracle databázi naplno
Využijte svou Oracle databázi naplno
 
Oracle Data Protection - 2. část
Oracle Data Protection - 2. částOracle Data Protection - 2. část
Oracle Data Protection - 2. část
 
Oracle Data Protection - 1. část
Oracle Data Protection - 1. částOracle Data Protection - 1. část
Oracle Data Protection - 1. část
 
Benefity Oracle Cloudu (4/4): Storage
Benefity Oracle Cloudu (4/4): StorageBenefity Oracle Cloudu (4/4): Storage
Benefity Oracle Cloudu (4/4): Storage
 
Benefity Oracle Cloudu (3/4): Compute
Benefity Oracle Cloudu (3/4): ComputeBenefity Oracle Cloudu (3/4): Compute
Benefity Oracle Cloudu (3/4): Compute
 
InfiniBox z pohledu zákazníka
InfiniBox z pohledu zákazníkaInfiniBox z pohledu zákazníka
InfiniBox z pohledu zákazníka
 
Exadata z pohledu zákazníka a novinky generace X8M - 2. část
Exadata z pohledu zákazníka a novinky generace X8M - 2. částExadata z pohledu zákazníka a novinky generace X8M - 2. část
Exadata z pohledu zákazníka a novinky generace X8M - 2. část
 
Exadata z pohledu zákazníka a novinky generace X8M - 1. část
Exadata z pohledu zákazníka a novinky generace X8M - 1. částExadata z pohledu zákazníka a novinky generace X8M - 1. část
Exadata z pohledu zákazníka a novinky generace X8M - 1. část
 
Úvod do Oracle Cloud infrastruktury
Úvod do Oracle Cloud infrastrukturyÚvod do Oracle Cloud infrastruktury
Úvod do Oracle Cloud infrastruktury
 

Último

Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 

Último (20)

Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 

Oracle Database 18c New Features and Enhancements

  • 1.
  • 2. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | What’s News In Oracle Database 18c Patrik Plachy Senior Sales Consultant patrik.plachy@oracle.com
  • 3. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | 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 to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, timing and price of any features or functionality described for Oracle’s products may change and remains at the sole discretion of Oracle corporation. Fees apply for new database product offerings.
  • 4. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Program Agenda The year in review Oracle Database Release Model Oracle Database 18c A few other things… 1 2 3 4
  • 5. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Program Agenda with Highlight The year in review Oracle Database Release Model Oracle Database 18c A few other things… 1 2 3 4
  • 6. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Oracle Server Technologies : A year in a review November December January February March April May June July August September October 2017 Exadata Express Exadata Cloud Service Oracle Database 12c Release 2 Exadata Oracle Database 12c Release 2 Linux, Solaris Oracle Big Data SQL 3.1 Oracle NoSQL Database 4.3 Support for Docker Application Express 5.1 ORDS 3.1 Exadata X6-2 Exadata X6-8 ODA X6-2
  • 7. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Massive Cost Savings and Cloud Agility with Multitenant Plus more features for better Performance, Availability, Security, Analytics, and Application Development Massive Web Applications with Sharding Massive Performance with Database In- Memory Oracle Database 12c Release 2 Marquee Features
  • 8. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Oracle Database 12c “Under the Radar” FeaturesOnlineTableMove JSON Real Time Materialized Views IndexCompression Auto Generated Sequences Long Identifiers Online Tablespace Encryption Property Graph SQL Plan Management Enhancements TopNQueries Invisible Columns Longer Varchars Security Assessment Tool LiveSQL IndexUsageStats Application Continuity Auto List Partitioning
  • 9. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Program Agenda with Highlight The year in review Oracle Database Release Model Oracle Database 18c A few other things… 1 2 3 4
  • 10. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | New Releases Yearly Release Updates Quarterly Release Update Revisions Agile Delivery New Release and Update Model for Database
  • 11. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Lifetime Support Commitments and Plans2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 EXTENDED EXTENDED* 12.2 18c 20c 11.2 EXTENDED EXTENDED12.1 12.2.0.1 Oracle 19OrOracle 1919c Paid Extended SupportPremier Waived Extended Support Fee *Oracle Database 19c is expected to the long term support release. Always check MOS Note 742060.1 for the latest schedule.
  • 12. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Program Agenda with Highlight The year in review Oracle Database Release Model Oracle Database 18c A few other things… 1 2 3 4
  • 13. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Performance • In-Memory Column Store • Software in Silicon • Engineered Systems Today Oracle Database 18c • Low Latency Memory Transactions • 2x throughput for streaming ingest • 4x throughput for low latency key lookups • Non Volatile Memory Support • Multi Tiered Database Cache • In-Memory Column Store Improvements • Performance improvements • Automatic Population
  • 14. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | • Ultra-Fast key-based lookup: – Uses new lock-free In-memory hash index – Just declare table MEMOPTIMIZE FOR READ • New low latency client protocol with direct access to data engine • Performance benefits: – Up to 4x throughput increase for Primary Key based lookups – 50% lower response times Memory Optimized Access for OLTP Workloads Example: Read Joe’s Balance 50 In-Memory Hash Index In-Memory Row Store CUST ID NAME BAL 5 Jack 12 1 Ying 76 31 Joe 32 12 Maria 31 Client Optimized ReadsLookup by hash of Joe’s ID (31)
  • 15. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | • New streaming ingest: – Declare table MEMOPTIMIZE FOR WRITE – Clients performs low-latency write into in-memory buffer – Buffered writes drained in background – Very high throughput inserts since server issues deferred writes in large batches • Performance: – 2x faster throughput than conventional • 21M inserts per second on 2-socket server Memory Optimized Access for IoT Workloads Example: Write Temperature Reading IoT Client Optimized Write Temp Readings Periodic Buffer Drain Buffer Append Background Drainers In-Memory Ingest Buffer Time Temp 05:50 52o 05:55 54o 06:00 54o 06:05 55o Insert: <6:05AM, 55o >
  • 16. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Multitenant • Container managed database virtualization • Manage Many as one • Patching, Backup, Security, Online Cloning, Online Relocation • Software as Service • Shared metadata, Data location transparency Today Oracle Database 18c • Per-PDB Switchover • Transportable Backups • Snapshot Carousel • Faster Upgrades
  • 17. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Per-PDB Switchover Server1 CDB1 CDB2 Server2 create pluggable database Grey from Grey@CDB2_Link refresh mode auto every 2 minutes; create pluggable database Red from Red@CDB1_Link refresh mode auto every 2 minutes;
  • 18. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Per-PDB Switchover Server1 CDB1 CDB2 Server2 1. alter pluggable database refresh mode auto every 2 minutes from Grey@dblink switchover; 2. alter pluggable database Grey open read write;
  • 19. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Availability • Comprehensive HA and disaster recovery functionality • Real Application Clusters, Active Data Guard, Recovery Appliance • Oracle Golden Gate for heterogeneous replication • Scale out and fault isolation with Oracle Database Sharding Today Oracle Database 18c • Zero Impact Grid Infrastructure Patching • Sharded RAC • Logically partition data across instances in RAC • Sharded access for shard-aware applications and transparency for non-sharded applications • Sharding improvements • User Defined Sharding • Improved Cross Shard Query support
  • 20. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Sharded RAC • Affinitizes shards to RAC instances – Requests that specify sharding key will be routed to the RAC instance that logically holds the shard – Affinity gives better cache utilization and reduced block pings across instances • Requests that don’t specify sharding key still work transparently • Gives Sharded Database performance with minimal application changes – Just add sharding key to the most performance intensive operations Higher performance for shard-aware RAC applications Oracle RAC Database Instance 1 Partition P1 Instance 2 Partition P2 Instance 3 Partition P3
  • 21. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Security • Security In-Depth • Access Controls, Encryption, Redaction, Masking, Auditing, SQL Firewalls • Key Vault • Audit Vault Database Firewall • Security Assessment Tool Today Active Directory • Integration with Active Directory • Authorization to database through Active Directory user/group mappings to database schema users and roles • Per PDB Key storage • Password-less schema creation • No default passwords Oracle Database 18c
  • 22. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Centrally Managed Users Directly in Active Directory Database User Authentication Data Authorization Data Oracle Directory Services Map Users / Roles Enterprise Domains Password Kerberos, PKI Oracle Database
  • 23. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Data Warehousing and Big Data • The most advanced analytics engine available today • Partitioning, Compression, SQL, Analytical Views, Analytical SQL, Data Mining • Easily analyze data held in Hadoop with Big Data SQL • Big Data Appliance Today Oracle Database 18c • In-Memory for external tables • Automatic propagation of nologged data to standby • More Machine Learning algorithms • Polymorphic Table Functions • Alter Table Merge Partition Online • Approximate Query Improvements
  • 24. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Polymorphic Tables: Self-Describing, Fully Dynamic SQL • Part of ANSI 2016 • Encapsulate sophisticated algorithms – Hides implementation of algorithms – Leverage powerful, dynamic capabilities of SQL – Pass in any table-columns for processing – Returns SQL rowset (table, JSON, XML doc etc) • E.g. return credit score and associated risk levelCREDIT RISK ALGORITHM SQL QUERY POLYMORPHIC TABLE FUNCTION INPUTS: TABLE JSONXML ANALYTIC VIEW SELECT state_id, . . ., AVG(credit_score), risk FROM CREDIT_RISK( tab => scott.customers, cols => columns(dob, zip,loan_default), outs => columns(credit_score, risk_level)) WHERE risk_level = ‘High’ GROUP BY state_id; SCOTT.CREDIT_RISK H H H H STATE_ID RISKA_SCOREPOP LOANS A_LOAN
  • 25. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | • Application Express 5.1 • SQL Developer & SQLCl • Comprehensive Language support • PL/SQL, SQL , Python, Node.js, PHP, Java, C, .NET, REST • JSON • SODA API, SODA REST API • SQL Support • Improved JSON Support • Property Graph Improvements • Support for PGQL • Rolling patches for OJVM • Private Temporary Tables Development Today Oracle Database 18c
  • 26. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Private temporary tables transient tables useful for reporting applications Global temporary tables • Persistent, shared (global) table definition • Temporary, private (session-based) data content – Data physically exists for a transaction or session – Session-private statistics ACC_TMP ACC_TMPACC_TMP Private temporary tables (18c) • Temporary, private (session-based) table definition – Private table name and shape • Temporary, private (session-based) data content – Session or transaction duration ACC_PTMPACC_PTMP
  • 27. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Program Agenda with Highlight The year in review Oracle Database Release Model Oracle Database 18c A few other things… 1 2 3 4
  • 28. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Database Instance Management REST API • A REST API to provide instance management and monitoring • Same consistent API for Cloud and On Premises • Simple API for all database lifecycle operations • Supports Oracle Databases integration with orchestration frameworks • Expected CY2018 https:// myserver.mydomain.com /ords /databases/ exadata / pdbs List the pdbs in the exadata database container
  • 29. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Official Docker Support • Oracle Database is fully supported on Docker for – Oracle Linux 7 – Red Hat Enterprise Linux 7 • Oracle RAC is not supported on Docker • MOS Note: Oracle Support for Database Running on Docker (Doc ID 2216342.1) • Oracle 12.2.0.1 & 12.1.0.2 images are available on Oracle Container Registry – https://container-registry.oracle.com • Docker build files also available at – : https://github.com/oracle/docker-images Oracle RAC support is coming
  • 30. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | New Installation Approaches • Oracle Gold Image as a Service – On demand image creation including application of RUs, RURs and one off patches – Request images as a • Zip file, TAR File, Docker Image, Virtual Box, VM (Ravello, BMC, Vbox) – Web Interface or REST API – Coming soon… • Oracle Installation via RPM – Oracle EE, SE2, and Grid Infrastructure
  • 31. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | One More Thing…
  • 32. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Oracle Database18c XE
  • 33. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Oracle Database 18c XE • Free use for development and production • Expected CY 2018 • Nearly all functionality is included • Limited to 12GB of user storage • Limited to 2GB of SGA
  • 34. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |