SlideShare ist ein Scribd-Unternehmen logo
1 von 197
Copyright © 2018, Oracle and/or its affiliates. All rights reserved.
Connor McDonald
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
3
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
4
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Stuff
youtube bit.ly/youtube-connor
blog bit.ly/blog-connor
twitter bit.ly/twitter-connor
400+ posts mainly on database & development
250 technical videos, new uploads every week
rants and raves on tech and the world :-)
Copyright © 2018, Oracle and/or its affiliates. All rights reserved.
etc...
facebook bit.ly/facebook-connor
linkedin bit.ly/linkedin-connor
instagram bit.ly/instagram-connor
slideshare bit.ly/slideshare-connor
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
https://asktom.oracle.com
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
8https://asktom.oracle.com/officehours
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
150 hours of free access (so far)
9
Copyright © 2016, Oracle and/or its affiliates. All rights reserved. |
18c - The Autonomous Database
Connor McDonald
Developer Advocate
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 11
18c - The Autonomous Database
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
"18c - the autonomous database"
12
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
"Whoa....hold on!"
13
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
12c, 13, 14, 15, 16, 17, 18c
14
?
10g, 11g,
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
18c = 12.2.0.2
15
MOS 2285040.1
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 16
1 2 18 19 20
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 17
No “FIRST” and “SECOND” releases anymore!
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 18
Fewer One-Off Patches!
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 19
3 Number Format
Year.Update.Revision
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 20
18.1.0
target - quarterly
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 21
18c
Oracle Database
18.1.0
Production
18.2.0
First Update
18.2.1
First Revision
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 22
Version number reflects patch level!
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 23
A Release Update or Revision is only a patch,
not a database upgrade!
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 24
Patch: Oracle 18.2.1 ⇢ Oracle 18.6.0
opatch
Upgrade: Oracle 18.2.1 ⇢ Oracle 19.1.0
dbupgrade and DBUA
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
"revision" versus "update"
25
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 26
18.1.0
18.2.0
First
Update
18.1.1
First
Revision
security,
regression,
no functionality changes
no optimizer changes
security,
regression,
functional changes
optimizer changes
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
"18c - the autonomous database"
27
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
autonomous is a cloud offering
28
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 29
Autonomous
Database
= + +
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
so what is the big deal ?
30
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
trip down memory lane #1
31
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
who remembers these numbers ?
32
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
121
249
505
33
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 34
ORA-1631: max # extents 505 reached in table SCOTT.EMP
121 = 2k block size
249 = 4k block size
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
who thinks about extents anymore?
35
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
7.3 = unlimited extents
36
semi-automatic
uet$, fet$
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
8.1 = locally managed tablespaces
37
fully automatic
bitmap extents
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
trip down memory lane #2
38
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 39
create table SALES (
...
...
...
)
freelists 4
freelist groups 1
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
ASSM
40
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
automatic segment space management
41
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
automation =
42
"we know the implementation, and
it is being performed by the software
based on our rules"
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
automation ... towards autonomy
43
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
trip down memory lane #3
44
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
who remembers these parameters ?
45
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 46
ROLLBACK_SEGMENTS = (r0,r1,r2,r3,r4,r5,r6)
TRANSACTIONS_PER_ROLLBACK_SEGMENT = 20
CLEANUP_ROLLBACK_ENTRIES = 10
SYSTEM non-SYSTEM
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
who thinks about undo anymore?
47
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
9.0 = automatic undo
48
undo_tablespace =
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 49
but it's more than automation
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 50
SQL> select count(*) from dba_rollback_segs;
COUNT(*)
----------
????
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 51
segment count growth / reduction ...
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 52
... decided by the database
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
autonomy =
53
"we do not know the implementation,
we do not set the rules,
decisions by the software"
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 54
Oracle has been doing this for a while :-)
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 55
Oracle Database 10g and below
• Automatic Storage Management (ASM)
• Automatic Memory Management
• Automatic DB Diagnostic Monitor (ADDM)
• Automatic Workload Repository (AWR)
• Automatic Undo tablespaces
• Automatic Segment Space Management
• Automatic Statistics Gathering
• Automatic Standby Management (Broker)
• Automatic Query Rewrite
Oracle Database 11g, 12c
• Automatic SQL Tuning
• Automatic Workload Replay
• Automatic Capture of SQL Monitor
• Automatic Data Optimization
• Automatic Storage Indexes
• Automatic Columnar Cache
• Automatic Diagnostic Framework
• Automatic Refresh of Database Cloning
• Autonomous Health Framework
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 57
well ... sort of
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 58
databases ... are hard
transactional,
instantaneous response
standard reports,
fast response
end of day/week/month batch,
longer but capped window
ad hoc query,
arbitrary criteria/duration
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 59
all at the same time
transactional,
instantaneous response
standard reports,
fast response
end of day/week/month batch,
longer but capped window
ad hoc query,
arbitrary criteria/duration
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 60
so we started with "easy" :-)
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 61
data warehousing
usage commonality
flexible response times
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 62
Oracle Autonomous Database
Enterprise
OLTP
Data
Warehousing
Q1 2018 CY 2018
Data
Warehousing
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 63
autonomous objectives
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 64
1) easy
storage
quotas
indexing
partitioning
parallelism
compression
availability
etc
etc
load data
run queries
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 65
2) fast or faster
Exadata infrastructure
Enterprise edition
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 66
3) elastic
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 67
3) truly elastic
scale CPU & storage up, no outage
scale CPU down to save $
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 68
4) fully managed
backup / recovery
patching
upgrades
HA (99.95)
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Oracle Exadata Cloud Service
Oracle Database Cloud Service
Express Cloud Service
Data Warehouse Services
(EDWs, DW, departmental marts and sandboxes)
Autonomous Data Warehouse Cloud
Service Console
Built-in Access Tools
SQL Worksheet Oracle ML
Service Management
DW Database
SQL Developer
Developer Tools
Data Integration
Services
Oracle Data Integration
Cloud Service
3rd Party DI on
Oracle Cloud Compute
3rd Party DI
on-premises
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 70
walkthrough
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 71
"5 easy steps"
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 72
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
creating your database
73
name
region
CPUs
storage
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
you're done!
74
admin user password
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
"demo"
75
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 76
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 84
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
connecting to your database
85
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
emphasis on security
86
SSL only
wallet
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
single download
87
service console
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
"demo"
88
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
SQL Developer
95
native support
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Location of the zip file
Wallet password
Database service name
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
other tools
97
standard connectivty
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 98
C:temp>unzip -l credential.zip
Archive: credential.zip
Length Date Time Name
--------- ---------- ----- ----
0 04/06/2018 08:37
7045 04/06/2018 08:22 cwallet.sso
0 04/06/2018 08:37 cwallet.sso.lck
7000 04/06/2018 08:22 ewallet.p12
0 04/06/2018 08:37 ewallet.p12.lck
3182 04/06/2018 08:22 keystore.jks
132 11/06/2018 11:04 sqlnet.ora
334 04/06/2018 08:22 tnsnames.ora
3797 04/06/2018 08:22 truststore.jks
--------- -------
21490 9 files
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 99
sqlnet.ora
WALLET_LOCATION = (SOURCE = (METHOD = file)
(METHOD_DATA = (DIRECTORY="...")))
SSL_SERVER_DN_MATCH=yes
tnsnames.ora
DW = (description=
(address=(protocol=tcps)(port=1522)(host=...))
(connect_data=(service_name=...))
(security=(ssl_server_cert_dn="CN=..."))
)
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
database services
100
predefined
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
No of concurrent queries Max idle time CPU shares
HIGH 3 5 mins 4
MEDIUM 20 5 mins 2
LOW 32 1 hour 1
MY_DBNAME_
MY_DBNAME_
MY_DBNAME_
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 102
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
users for your database
103
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 104
SQL> create user MY_DATA identified by MY_PASSWORD;
SQL> grant DWROLE to MY_DATA;
You're done!
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
other users as per normal
105
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 106
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
loading your database
107
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
ADW
Object
Storage
SQL*Net
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
DBMS_CLOUD
109
focus on "1) easy"
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
external tables are .... "fun"
110
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 111
CREATE TABLE emp_ext (
EMPNO NUMBER(4),
ENAME VARCHAR2(10),
JOB VARCHAR2(9),
MGR NUMBER(4),
HIREDATE DATE,
SAL NUMBER(7,2),
COMM NUMBER(7,2),
DEPTNO NUMBER(2)
)
ORGANIZATION EXTERNAL
(
TYPE ORACLE_LOADER
DEFAULT DIRECTORY NFS_DIR
ACCESS PARAMETERS
...
( RECORDS DELIMITED BY NEWLINE
DNFS_ENABLE
DNFS_READBUFFERS 10
FIELDS TERMINATED BY ','
MISSING FIELD VALUES ARE NULL
(
empno,
ename,
job,
mgr,
hiredate CHAR(21) DATE_FORMAT MASK "DD-MON-YYYY HH24:MI:SS",
sal,
comm,
deptno
) ) LOCATION ('EMP.dat')
)
PARALLEL 1
REJECT LIMIT UNLIMITED;
SQL> select * from emp_ext;
ORA-12801: error signaled in parallel query server P002
ORA-29913: error in executing ODCIEXTTABLEOPEN callout
ORA-29400: data cartridge error
ORA-06512: at "SYS.ORACLE_LOADER", line 19
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
loading from object store
112
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
1) credentials
113
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 114
begin
dbms_cloud.create_credential(
credential_name => 'OBJ_STORE_CRED',
username => 'connor',
password => 'password'
);
end;
/
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
2) load/transform to table
115
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 116
begin
dbms_cloud.copy_data(
table_name=>'CHANNELS',
credential_name=>'OBJ_STORE_CRED',
file_uri_list=>
'https://objectstorage..../DEMO_DATA/chan_v3.dat',
format=>
json_object('ignoremissingcolumns' value 'true',
'removequotes' value 'true')
);
end;
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
3) do the usual :-)
117
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 118
SQL> select table_name,
2 status,
3 rows_loaded,
4 logfile_table,
5 badfile_table
6 from user_load_operations;
TABLE_NAME STATUS ROWS_LOADED LOGFILE_TABLE BADFILE_TABLE
------------ ------- ------------ ------------- ---------------
CHANNELS FAILED COPY$1_LOG COPY$1_BAD
CHANNELS COMPLETED 5 COPY$2_LOG COPY$2_BAD
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
data pump option
119
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 120
begin
dbms_cloud.create_credential(
credential_name => 'OBJ_STORE_CRED',
username => 'connor',
password => 'password'
);
end;
/
impdp sh/sh@salesdb_low
directory=data_pump_dir
credential=OBJ_STORE_CRED
dumpfile=https://objectstorage.../dump/sh.dmp
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 121
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
querying your database
122
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 123
SQL> select *
2 from MY_TABLE
3 ...
"Well...duh"
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
but you can do more
124
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
ADWC
Object
Storage
SQL*Net
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
query before you load
126
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
external table on object store
127
"Whoa there!"
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 128
begin
dbms_cloud.create_external_table(
table_name =>'CHANNELS_EXT',
credential_name =>'OBJ_STORE_CRED',
file_uri_list => 'https://...chan_v3.dat',
format =>
json_object('ignoremissingcolumns' value 'true',
'removequotes' value 'true'),
column_list => 'CHANNEL_ID NUMBER,
CHANNEL_DESC VARCHAR2(20),
CHANNEL_CLASS VARCHAR2(20),
CHANNEL_CLASS_ID NUMBER,
CHANNEL_TOTAL VARCHAR2(13),
CHANNEL_TOTAL_ID NUMBER'
);
end;
select count(*) from channels_ext;
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
recap
129
creation/connection
users
loaded
queried
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
We're done !!!
130
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
"Fast, unlimited data access is the
crack cocaine for data scientists"
- James Morle
131
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
"3) elasticity"
132
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
CPU increase ... anytime, no outage
133
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 140
"Yeah...I know what that means"
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
You can scale to zero
142
service console
REST API
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
143
load yesterday's data
cpu = 2
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
144
unleash the dogs :-)
cpu = 8
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
all other times = zero CPU cost
145
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
"4) fully managed"
146
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 147
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
OS access
148
nope
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
SYSDBA access
149
nope
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
patching
150
automated
online* (AppCont)
gold image
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
encryption
151
mandatory
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
init.ora
152
all automatic
NLS etc
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
tablespaces
153
nope
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
indexes
154
nope*
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
materialized views
155
nope
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
constraints
156
nope ... "yes"
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
compression
157
nope (HCC)
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
partitioning
158
nope*
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
sidebar: Maybe you're doing it wrong :-)
159
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
statistics
160
advanced direct mode
automatic or explicit
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
recall: 12c, direct load statistics
161
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 162
SQL> insert /*+ APPEND */ into MY_EMPTY_TABLE
2 select ...
10000 rows inserted.
SQL> select num_rows
2 from user_tables
3 where table_name = '...';
NUM_ROWS
----------
10000
SQL> insert /*+ APPEND */ into ...
10000 rows inserted.
SQL> select num_rows
2 from user_tables
3 where table_name = '...';
NUM_ROWS
----------
20000
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
histograms too!
163
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 164
SQL> select column_name,
2 low_value,
3 high_value,
4 sample_size,
5 histogram
6 from user_tab_col_statistics
7 where table_name = '...';
COLUMN_NAME LOW_VALUE HIGH_VALUE SAMPLE_SIZE HISTOGRAM
------------ ---------- --------------- ----------- -----------
NUM0 C102 C302 20000 HYBRID
NUM1 C102 C111 20000 FREQUENCY
TXT1 58585831 58585839393939 20000 HYBRID
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
caching
165
result_cache
everything!
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
hints
166
can be enabled
ignored by default
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
backup / recovery
167
daily incremental
weekly full
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
backup / recovery
168
point-in-time nomination
(process is automatic)
60 days
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
graph, text, spatial
169
coming later
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
monitoring
170
real time SQL monitoring
service console
(and REST)
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
from "easy" to "not so easy"
175
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 176
Oracle Autonomous Database
Enterprise
OLTP
Data
Warehousing
Q1 2018 CY 2018
Data
Warehousing
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 177
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
just a normal database?
178
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
based on 19c
179
critical features
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
which brings us to ...
180
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 181
• Will my job go away?
• Will my job change?
• Will I lose control?
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 182
% of presentations that
have a pie graph
% of presentations that
need a pie graph
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
72%
http://www.computerworld.com/article/2486278/it-management/how-to-balance-maintenance-and-it-innovation.html
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
184
Value Scale
Cool stuff
Maintenance
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
think back to automatic undo ...
185
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
... did you lose your job ?
186
or just get more databases :-)
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
it is about business success
187
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 188
Data Modeling
Architecture,
Design
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 189
End-to-End Service
Level Management
Full stack availability
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 190
Data Security
Data classification,
Data life-cycle management
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 191
Application Tuning
SQL tuning,
Connection management
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
192
Value Scale
Cool stuff
Maintenance
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 193
wrap up
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
the appeal of "set and forget"
194
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
the appeal of bypassing this!
195
Request for Provisioning of Resources
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
2TB for 3500 compute hours
196
https://cloud.oracle.com/try-autonomous-database
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Enjoy the day!
youtube bit.ly/youtube-connor
blog bit.ly/blog-connor
twitter bit.ly/twitter-connor

Weitere ähnliche Inhalte

Was ist angesagt?

Introducing New AI Ops Innovations in Oracle 19c Autonomous Health Framework ...
Introducing New AI Ops Innovations in Oracle 19c Autonomous Health Framework ...Introducing New AI Ops Innovations in Oracle 19c Autonomous Health Framework ...
Introducing New AI Ops Innovations in Oracle 19c Autonomous Health Framework ...Sandesh Rao
 
AIOUG-GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Preser...
AIOUG-GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Preser...AIOUG-GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Preser...
AIOUG-GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Preser...Sandesh Rao
 
AMIS Oracle OpenWorld & CodeOne Review - Pillar 1 - Cloud Infrastructure (5 n...
AMIS Oracle OpenWorld & CodeOne Review - Pillar 1 - Cloud Infrastructure (5 n...AMIS Oracle OpenWorld & CodeOne Review - Pillar 1 - Cloud Infrastructure (5 n...
AMIS Oracle OpenWorld & CodeOne Review - Pillar 1 - Cloud Infrastructure (5 n...Lucas Jellema
 
AUSOUG - Applied Machine Learning for Database Autonomous Health
AUSOUG - Applied Machine Learning for Database Autonomous HealthAUSOUG - Applied Machine Learning for Database Autonomous Health
AUSOUG - Applied Machine Learning for Database Autonomous HealthSandesh Rao
 
Latin America Tour 2019 - 18c and 19c featues
Latin America Tour 2019   - 18c and 19c featuesLatin America Tour 2019   - 18c and 19c featues
Latin America Tour 2019 - 18c and 19c featuesConnor McDonald
 
AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...
AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...
AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...Sandesh Rao
 
Sangam 18 - The New Optimizer in Oracle 12c
Sangam 18 - The New Optimizer in Oracle 12cSangam 18 - The New Optimizer in Oracle 12c
Sangam 18 - The New Optimizer in Oracle 12cConnor McDonald
 
[Oracle Innovation Summit Tokyo 2018] オラクルの考えるAI、そのアプローチ
[Oracle Innovation Summit Tokyo 2018] オラクルの考えるAI、そのアプローチ[Oracle Innovation Summit Tokyo 2018] オラクルの考えるAI、そのアプローチ
[Oracle Innovation Summit Tokyo 2018] オラクルの考えるAI、そのアプローチオラクルエンジニア通信
 
NZOUG - GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Pres...
NZOUG - GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Pres...NZOUG - GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Pres...
NZOUG - GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Pres...Sandesh Rao
 
AIOUG - Groundbreakers - Jul 2019 - 19 Troubleshooting Tips and Tricks for Da...
AIOUG - Groundbreakers - Jul 2019 - 19 Troubleshooting Tips and Tricks for Da...AIOUG - Groundbreakers - Jul 2019 - 19 Troubleshooting Tips and Tricks for Da...
AIOUG - Groundbreakers - Jul 2019 - 19 Troubleshooting Tips and Tricks for Da...Sandesh Rao
 
Troubleshooting Ecommerce Performance
 Troubleshooting Ecommerce Performance Troubleshooting Ecommerce Performance
Troubleshooting Ecommerce PerformanceDiego Cardozo
 
Introducing new AIOps innovations in Oracle 19c - San Jose AICUG
Introducing new AIOps innovations in Oracle 19c - San Jose AICUGIntroducing new AIOps innovations in Oracle 19c - San Jose AICUG
Introducing new AIOps innovations in Oracle 19c - San Jose AICUGSandesh Rao
 
AMIS Oracle OpenWorld & CodeOne Review - Introduction & Overview (5 november ...
AMIS Oracle OpenWorld & CodeOne Review - Introduction & Overview (5 november ...AMIS Oracle OpenWorld & CodeOne Review - Introduction & Overview (5 november ...
AMIS Oracle OpenWorld & CodeOne Review - Introduction & Overview (5 november ...Lucas Jellema
 
NZOUG-GroundBreakers-2018 - Troubleshooting and Diagnosing 18c RAC
NZOUG-GroundBreakers-2018 - Troubleshooting and Diagnosing 18c RACNZOUG-GroundBreakers-2018 - Troubleshooting and Diagnosing 18c RAC
NZOUG-GroundBreakers-2018 - Troubleshooting and Diagnosing 18c RACSandesh Rao
 
RAC Troubleshooting and Diagnosability Sangam2016
RAC Troubleshooting and Diagnosability Sangam2016RAC Troubleshooting and Diagnosability Sangam2016
RAC Troubleshooting and Diagnosability Sangam2016Sandesh Rao
 
What's new in oracle trace file analyzer 18.2.0
What's new in oracle trace file analyzer 18.2.0What's new in oracle trace file analyzer 18.2.0
What's new in oracle trace file analyzer 18.2.0Sandesh Rao
 
ITOUG 2019 - 18c, 19c features
ITOUG 2019 - 18c, 19c featuresITOUG 2019 - 18c, 19c features
ITOUG 2019 - 18c, 19c featuresConnor McDonald
 

Was ist angesagt? (20)

Introducing New AI Ops Innovations in Oracle 19c Autonomous Health Framework ...
Introducing New AI Ops Innovations in Oracle 19c Autonomous Health Framework ...Introducing New AI Ops Innovations in Oracle 19c Autonomous Health Framework ...
Introducing New AI Ops Innovations in Oracle 19c Autonomous Health Framework ...
 
AIOUG-GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Preser...
AIOUG-GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Preser...AIOUG-GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Preser...
AIOUG-GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Preser...
 
AMIS Oracle OpenWorld & CodeOne Review - Pillar 1 - Cloud Infrastructure (5 n...
AMIS Oracle OpenWorld & CodeOne Review - Pillar 1 - Cloud Infrastructure (5 n...AMIS Oracle OpenWorld & CodeOne Review - Pillar 1 - Cloud Infrastructure (5 n...
AMIS Oracle OpenWorld & CodeOne Review - Pillar 1 - Cloud Infrastructure (5 n...
 
AUSOUG - Applied Machine Learning for Database Autonomous Health
AUSOUG - Applied Machine Learning for Database Autonomous HealthAUSOUG - Applied Machine Learning for Database Autonomous Health
AUSOUG - Applied Machine Learning for Database Autonomous Health
 
Latin America Tour 2019 - 18c and 19c featues
Latin America Tour 2019   - 18c and 19c featuesLatin America Tour 2019   - 18c and 19c featues
Latin America Tour 2019 - 18c and 19c featues
 
AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...
AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...
AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...
 
Sangam 18 - The New Optimizer in Oracle 12c
Sangam 18 - The New Optimizer in Oracle 12cSangam 18 - The New Optimizer in Oracle 12c
Sangam 18 - The New Optimizer in Oracle 12c
 
AMIS Oracle OpenWorld en Code One Review 2018 - Pillar 1: Data
AMIS Oracle OpenWorld en Code One Review 2018 - Pillar 1: DataAMIS Oracle OpenWorld en Code One Review 2018 - Pillar 1: Data
AMIS Oracle OpenWorld en Code One Review 2018 - Pillar 1: Data
 
[Oracle Innovation Summit Tokyo 2018] オラクルの考えるAI、そのアプローチ
[Oracle Innovation Summit Tokyo 2018] オラクルの考えるAI、そのアプローチ[Oracle Innovation Summit Tokyo 2018] オラクルの考えるAI、そのアプローチ
[Oracle Innovation Summit Tokyo 2018] オラクルの考えるAI、そのアプローチ
 
AMIS Oracle OpenWorld en Code One Review 2018 - Pillar 2: SaaS
AMIS Oracle OpenWorld en Code One Review 2018 - Pillar 2: SaaSAMIS Oracle OpenWorld en Code One Review 2018 - Pillar 2: SaaS
AMIS Oracle OpenWorld en Code One Review 2018 - Pillar 2: SaaS
 
NZOUG - GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Pres...
NZOUG - GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Pres...NZOUG - GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Pres...
NZOUG - GroundBreakers-2018 -Using Oracle Autonomous Health Framework to Pres...
 
AIOUG - Groundbreakers - Jul 2019 - 19 Troubleshooting Tips and Tricks for Da...
AIOUG - Groundbreakers - Jul 2019 - 19 Troubleshooting Tips and Tricks for Da...AIOUG - Groundbreakers - Jul 2019 - 19 Troubleshooting Tips and Tricks for Da...
AIOUG - Groundbreakers - Jul 2019 - 19 Troubleshooting Tips and Tricks for Da...
 
Troubleshooting Ecommerce Performance
 Troubleshooting Ecommerce Performance Troubleshooting Ecommerce Performance
Troubleshooting Ecommerce Performance
 
Introducing new AIOps innovations in Oracle 19c - San Jose AICUG
Introducing new AIOps innovations in Oracle 19c - San Jose AICUGIntroducing new AIOps innovations in Oracle 19c - San Jose AICUG
Introducing new AIOps innovations in Oracle 19c - San Jose AICUG
 
AMIS Oracle OpenWorld & CodeOne Review - Introduction & Overview (5 november ...
AMIS Oracle OpenWorld & CodeOne Review - Introduction & Overview (5 november ...AMIS Oracle OpenWorld & CodeOne Review - Introduction & Overview (5 november ...
AMIS Oracle OpenWorld & CodeOne Review - Introduction & Overview (5 november ...
 
AMIS Oracle OpenWorld en Code One Review 2018 - Pillar 1: Cloud Infrastructure
AMIS Oracle OpenWorld en Code One Review 2018 - Pillar 1: Cloud Infrastructure AMIS Oracle OpenWorld en Code One Review 2018 - Pillar 1: Cloud Infrastructure
AMIS Oracle OpenWorld en Code One Review 2018 - Pillar 1: Cloud Infrastructure
 
NZOUG-GroundBreakers-2018 - Troubleshooting and Diagnosing 18c RAC
NZOUG-GroundBreakers-2018 - Troubleshooting and Diagnosing 18c RACNZOUG-GroundBreakers-2018 - Troubleshooting and Diagnosing 18c RAC
NZOUG-GroundBreakers-2018 - Troubleshooting and Diagnosing 18c RAC
 
RAC Troubleshooting and Diagnosability Sangam2016
RAC Troubleshooting and Diagnosability Sangam2016RAC Troubleshooting and Diagnosability Sangam2016
RAC Troubleshooting and Diagnosability Sangam2016
 
What's new in oracle trace file analyzer 18.2.0
What's new in oracle trace file analyzer 18.2.0What's new in oracle trace file analyzer 18.2.0
What's new in oracle trace file analyzer 18.2.0
 
ITOUG 2019 - 18c, 19c features
ITOUG 2019 - 18c, 19c featuresITOUG 2019 - 18c, 19c features
ITOUG 2019 - 18c, 19c features
 

Ähnlich wie Perth APAC Groundbreakers tour - The Autonomous Database

Hyderabad Mar 2019 - Autonomous Database
Hyderabad Mar 2019 - Autonomous DatabaseHyderabad Mar 2019 - Autonomous Database
Hyderabad Mar 2019 - Autonomous DatabaseConnor McDonald
 
ILOUG 2019 - Autonomous, what does it mean for DBAs
ILOUG 2019 - Autonomous, what does it mean for DBAsILOUG 2019 - Autonomous, what does it mean for DBAs
ILOUG 2019 - Autonomous, what does it mean for DBAsConnor McDonald
 
Perth APAC Groundbreakers tour - 18c features
Perth APAC Groundbreakers tour - 18c featuresPerth APAC Groundbreakers tour - 18c features
Perth APAC Groundbreakers tour - 18c featuresConnor McDonald
 
OpenWorld 2018 - 20 years of hints and tips
OpenWorld 2018 - 20 years of hints and tipsOpenWorld 2018 - 20 years of hints and tips
OpenWorld 2018 - 20 years of hints and tipsConnor McDonald
 
OpenWorld 2018 - SQL Tuning in 20 mins
OpenWorld 2018 - SQL Tuning in 20 minsOpenWorld 2018 - SQL Tuning in 20 mins
OpenWorld 2018 - SQL Tuning in 20 minsConnor McDonald
 
[Oracle Innovation Summit Tokyo 2018] インダストリアルIoTの今、そしてこれからの進化
[Oracle Innovation Summit Tokyo 2018] インダストリアルIoTの今、そしてこれからの進化[Oracle Innovation Summit Tokyo 2018] インダストリアルIoTの今、そしてこれからの進化
[Oracle Innovation Summit Tokyo 2018] インダストリアルIoTの今、そしてこれからの進化オラクルエンジニア通信
 
Latin America Tour 2019 - slow data and sql processing
Latin America Tour 2019  - slow data and sql processingLatin America Tour 2019  - slow data and sql processing
Latin America Tour 2019 - slow data and sql processingConnor McDonald
 
The Oracle Autonomous Database
The Oracle Autonomous DatabaseThe Oracle Autonomous Database
The Oracle Autonomous DatabaseConnor McDonald
 
Using Machine Learning to Debug complex Oracle RAC Issues
Using Machine Learning  to Debug complex Oracle RAC IssuesUsing Machine Learning  to Debug complex Oracle RAC Issues
Using Machine Learning to Debug complex Oracle RAC IssuesAnil Nair
 
Diagnose Your Microservices
Diagnose Your MicroservicesDiagnose Your Microservices
Diagnose Your MicroservicesMarcus Hirt
 
Overview of Oracle Database 18c Express Edition (XE)
Overview of Oracle Database 18c Express Edition (XE)Overview of Oracle Database 18c Express Edition (XE)
Overview of Oracle Database 18c Express Edition (XE)Todd Bottger
 
Wellington APAC Groundbreakers tour - Upgrading to the 12c Optimizer
Wellington APAC Groundbreakers tour - Upgrading to the 12c OptimizerWellington APAC Groundbreakers tour - Upgrading to the 12c Optimizer
Wellington APAC Groundbreakers tour - Upgrading to the 12c OptimizerConnor McDonald
 
CSPA Keynote: BLOCKCHAIN for Enterprise
CSPA Keynote: BLOCKCHAIN for EnterpriseCSPA Keynote: BLOCKCHAIN for Enterprise
CSPA Keynote: BLOCKCHAIN for EnterpriseDavid Haimes
 
APEX Connect 2019 - successful application development
APEX Connect 2019 - successful application developmentAPEX Connect 2019 - successful application development
APEX Connect 2019 - successful application developmentConnor McDonald
 
Public hyperledger meetup sf may 2018
Public hyperledger meetup sf may 2018Public hyperledger meetup sf may 2018
Public hyperledger meetup sf may 2018Oracle Developers
 
APEX Connect 2019 - SQL Tuning 101
APEX Connect 2019 - SQL Tuning 101APEX Connect 2019 - SQL Tuning 101
APEX Connect 2019 - SQL Tuning 101Connor McDonald
 
Replication Whats New in Mysql 8
Replication Whats New in Mysql 8Replication Whats New in Mysql 8
Replication Whats New in Mysql 8Luís Soares
 

Ähnlich wie Perth APAC Groundbreakers tour - The Autonomous Database (20)

Hyderabad Mar 2019 - Autonomous Database
Hyderabad Mar 2019 - Autonomous DatabaseHyderabad Mar 2019 - Autonomous Database
Hyderabad Mar 2019 - Autonomous Database
 
ILOUG 2019 - Autonomous, what does it mean for DBAs
ILOUG 2019 - Autonomous, what does it mean for DBAsILOUG 2019 - Autonomous, what does it mean for DBAs
ILOUG 2019 - Autonomous, what does it mean for DBAs
 
Perth APAC Groundbreakers tour - 18c features
Perth APAC Groundbreakers tour - 18c featuresPerth APAC Groundbreakers tour - 18c features
Perth APAC Groundbreakers tour - 18c features
 
OpenWorld 2018 - 20 years of hints and tips
OpenWorld 2018 - 20 years of hints and tipsOpenWorld 2018 - 20 years of hints and tips
OpenWorld 2018 - 20 years of hints and tips
 
OpenWorld 2018 - SQL Tuning in 20 mins
OpenWorld 2018 - SQL Tuning in 20 minsOpenWorld 2018 - SQL Tuning in 20 mins
OpenWorld 2018 - SQL Tuning in 20 mins
 
[Oracle Innovation Summit Tokyo 2018] インダストリアルIoTの今、そしてこれからの進化
[Oracle Innovation Summit Tokyo 2018] インダストリアルIoTの今、そしてこれからの進化[Oracle Innovation Summit Tokyo 2018] インダストリアルIoTの今、そしてこれからの進化
[Oracle Innovation Summit Tokyo 2018] インダストリアルIoTの今、そしてこれからの進化
 
Latin America Tour 2019 - slow data and sql processing
Latin America Tour 2019  - slow data and sql processingLatin America Tour 2019  - slow data and sql processing
Latin America Tour 2019 - slow data and sql processing
 
The Oracle Autonomous Database
The Oracle Autonomous DatabaseThe Oracle Autonomous Database
The Oracle Autonomous Database
 
Autonomous Data Warehouse
Autonomous Data WarehouseAutonomous Data Warehouse
Autonomous Data Warehouse
 
ADW Topic.pdf
ADW Topic.pdfADW Topic.pdf
ADW Topic.pdf
 
Using Machine Learning to Debug complex Oracle RAC Issues
Using Machine Learning  to Debug complex Oracle RAC IssuesUsing Machine Learning  to Debug complex Oracle RAC Issues
Using Machine Learning to Debug complex Oracle RAC Issues
 
Diagnose Your Microservices
Diagnose Your MicroservicesDiagnose Your Microservices
Diagnose Your Microservices
 
Overview of Oracle Database 18c Express Edition (XE)
Overview of Oracle Database 18c Express Edition (XE)Overview of Oracle Database 18c Express Edition (XE)
Overview of Oracle Database 18c Express Edition (XE)
 
Wellington APAC Groundbreakers tour - Upgrading to the 12c Optimizer
Wellington APAC Groundbreakers tour - Upgrading to the 12c OptimizerWellington APAC Groundbreakers tour - Upgrading to the 12c Optimizer
Wellington APAC Groundbreakers tour - Upgrading to the 12c Optimizer
 
CSPA Keynote: BLOCKCHAIN for Enterprise
CSPA Keynote: BLOCKCHAIN for EnterpriseCSPA Keynote: BLOCKCHAIN for Enterprise
CSPA Keynote: BLOCKCHAIN for Enterprise
 
APEX Connect 2019 - successful application development
APEX Connect 2019 - successful application developmentAPEX Connect 2019 - successful application development
APEX Connect 2019 - successful application development
 
Public hyperledger meetup sf may 2018
Public hyperledger meetup sf may 2018Public hyperledger meetup sf may 2018
Public hyperledger meetup sf may 2018
 
APEX Connect 2019 - SQL Tuning 101
APEX Connect 2019 - SQL Tuning 101APEX Connect 2019 - SQL Tuning 101
APEX Connect 2019 - SQL Tuning 101
 
Replication Whats New in Mysql 8
Replication Whats New in Mysql 8Replication Whats New in Mysql 8
Replication Whats New in Mysql 8
 
Management Cloud Oracle
Management Cloud OracleManagement Cloud Oracle
Management Cloud Oracle
 

Mehr von Connor McDonald

Sangam 19 - PLSQL still the coolest
Sangam 19 - PLSQL still the coolestSangam 19 - PLSQL still the coolest
Sangam 19 - PLSQL still the coolestConnor McDonald
 
Sangam 19 - Analytic SQL
Sangam 19 - Analytic SQLSangam 19 - Analytic SQL
Sangam 19 - Analytic SQLConnor McDonald
 
UKOUG - 25 years of hints and tips
UKOUG - 25 years of hints and tipsUKOUG - 25 years of hints and tips
UKOUG - 25 years of hints and tipsConnor McDonald
 
Sangam 19 - Successful Applications on Autonomous
Sangam 19 - Successful Applications on AutonomousSangam 19 - Successful Applications on Autonomous
Sangam 19 - Successful Applications on AutonomousConnor McDonald
 
Sangam 2019 - The Latest Features
Sangam 2019 - The Latest FeaturesSangam 2019 - The Latest Features
Sangam 2019 - The Latest FeaturesConnor McDonald
 
UKOUG 2019 - SQL features
UKOUG 2019 - SQL featuresUKOUG 2019 - SQL features
UKOUG 2019 - SQL featuresConnor McDonald
 
APEX tour 2019 - successful development with autonomous
APEX tour 2019 - successful development with autonomousAPEX tour 2019 - successful development with autonomous
APEX tour 2019 - successful development with autonomousConnor McDonald
 
APAC Groundbreakers 2019 - Perth/Melbourne
APAC Groundbreakers 2019 - Perth/Melbourne APAC Groundbreakers 2019 - Perth/Melbourne
APAC Groundbreakers 2019 - Perth/Melbourne Connor McDonald
 
OOW19 - Flashback, not just for DBAs
OOW19 - Flashback, not just for DBAsOOW19 - Flashback, not just for DBAs
OOW19 - Flashback, not just for DBAsConnor McDonald
 
OOW19 - Read consistency
OOW19 - Read consistencyOOW19 - Read consistency
OOW19 - Read consistencyConnor McDonald
 
OOW19 - Slower and less secure applications
OOW19 - Slower and less secure applicationsOOW19 - Slower and less secure applications
OOW19 - Slower and less secure applicationsConnor McDonald
 
OOW19 - Killing database sessions
OOW19 - Killing database sessionsOOW19 - Killing database sessions
OOW19 - Killing database sessionsConnor McDonald
 
OOW19 - Ten Amazing SQL features
OOW19 - Ten Amazing SQL featuresOOW19 - Ten Amazing SQL features
OOW19 - Ten Amazing SQL featuresConnor McDonald
 
Latin America tour 2019 - Flashback
Latin America tour 2019 -  FlashbackLatin America tour 2019 -  Flashback
Latin America tour 2019 - FlashbackConnor McDonald
 
Latin America Tour 2019 - 10 great sql features
Latin America Tour 2019  - 10 great sql featuresLatin America Tour 2019  - 10 great sql features
Latin America Tour 2019 - 10 great sql featuresConnor McDonald
 
Latin America Tour 2019 - pattern matching
Latin America Tour 2019 - pattern matchingLatin America Tour 2019 - pattern matching
Latin America Tour 2019 - pattern matchingConnor McDonald
 
OG Yatra - upgrading to the new 12c+ optimizer
OG Yatra - upgrading to the new 12c+ optimizerOG Yatra - upgrading to the new 12c+ optimizer
OG Yatra - upgrading to the new 12c+ optimizerConnor McDonald
 
OG Yatra - 25 years of hints and tips
OG Yatra - 25 years of hints and tipsOG Yatra - 25 years of hints and tips
OG Yatra - 25 years of hints and tipsConnor McDonald
 

Mehr von Connor McDonald (20)

Flashback ITOUG
Flashback ITOUGFlashback ITOUG
Flashback ITOUG
 
Sangam 19 - PLSQL still the coolest
Sangam 19 - PLSQL still the coolestSangam 19 - PLSQL still the coolest
Sangam 19 - PLSQL still the coolest
 
Sangam 19 - Analytic SQL
Sangam 19 - Analytic SQLSangam 19 - Analytic SQL
Sangam 19 - Analytic SQL
 
UKOUG - 25 years of hints and tips
UKOUG - 25 years of hints and tipsUKOUG - 25 years of hints and tips
UKOUG - 25 years of hints and tips
 
Sangam 19 - Successful Applications on Autonomous
Sangam 19 - Successful Applications on AutonomousSangam 19 - Successful Applications on Autonomous
Sangam 19 - Successful Applications on Autonomous
 
Sangam 2019 - The Latest Features
Sangam 2019 - The Latest FeaturesSangam 2019 - The Latest Features
Sangam 2019 - The Latest Features
 
UKOUG 2019 - SQL features
UKOUG 2019 - SQL featuresUKOUG 2019 - SQL features
UKOUG 2019 - SQL features
 
APEX tour 2019 - successful development with autonomous
APEX tour 2019 - successful development with autonomousAPEX tour 2019 - successful development with autonomous
APEX tour 2019 - successful development with autonomous
 
APAC Groundbreakers 2019 - Perth/Melbourne
APAC Groundbreakers 2019 - Perth/Melbourne APAC Groundbreakers 2019 - Perth/Melbourne
APAC Groundbreakers 2019 - Perth/Melbourne
 
OOW19 - Flashback, not just for DBAs
OOW19 - Flashback, not just for DBAsOOW19 - Flashback, not just for DBAs
OOW19 - Flashback, not just for DBAs
 
OOW19 - Read consistency
OOW19 - Read consistencyOOW19 - Read consistency
OOW19 - Read consistency
 
OOW19 - Slower and less secure applications
OOW19 - Slower and less secure applicationsOOW19 - Slower and less secure applications
OOW19 - Slower and less secure applications
 
OOW19 - Killing database sessions
OOW19 - Killing database sessionsOOW19 - Killing database sessions
OOW19 - Killing database sessions
 
OOW19 - Ten Amazing SQL features
OOW19 - Ten Amazing SQL featuresOOW19 - Ten Amazing SQL features
OOW19 - Ten Amazing SQL features
 
Latin America tour 2019 - Flashback
Latin America tour 2019 -  FlashbackLatin America tour 2019 -  Flashback
Latin America tour 2019 - Flashback
 
Latin America Tour 2019 - 10 great sql features
Latin America Tour 2019  - 10 great sql featuresLatin America Tour 2019  - 10 great sql features
Latin America Tour 2019 - 10 great sql features
 
Latin America Tour 2019 - pattern matching
Latin America Tour 2019 - pattern matchingLatin America Tour 2019 - pattern matching
Latin America Tour 2019 - pattern matching
 
ANSI vs Oracle language
ANSI vs Oracle languageANSI vs Oracle language
ANSI vs Oracle language
 
OG Yatra - upgrading to the new 12c+ optimizer
OG Yatra - upgrading to the new 12c+ optimizerOG Yatra - upgrading to the new 12c+ optimizer
OG Yatra - upgrading to the new 12c+ optimizer
 
OG Yatra - 25 years of hints and tips
OG Yatra - 25 years of hints and tipsOG Yatra - 25 years of hints and tips
OG Yatra - 25 years of hints and tips
 

Kürzlich hochgeladen

Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
[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
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
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
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
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
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
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
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
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
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 

Kürzlich hochgeladen (20)

Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
[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
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
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...
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
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
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
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
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
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...
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 

Perth APAC Groundbreakers tour - The Autonomous Database

  • 1.
  • 2. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. Connor McDonald
  • 3. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 3
  • 4. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 4
  • 5. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Stuff youtube bit.ly/youtube-connor blog bit.ly/blog-connor twitter bit.ly/twitter-connor 400+ posts mainly on database & development 250 technical videos, new uploads every week rants and raves on tech and the world :-)
  • 6. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. etc... facebook bit.ly/facebook-connor linkedin bit.ly/linkedin-connor instagram bit.ly/instagram-connor slideshare bit.ly/slideshare-connor
  • 7. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | https://asktom.oracle.com
  • 8. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 8https://asktom.oracle.com/officehours
  • 9. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 150 hours of free access (so far) 9
  • 10. Copyright © 2016, Oracle and/or its affiliates. All rights reserved. | 18c - The Autonomous Database Connor McDonald Developer Advocate
  • 11. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 11 18c - The Autonomous Database
  • 12. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | "18c - the autonomous database" 12
  • 13. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | "Whoa....hold on!" 13
  • 14. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 12c, 13, 14, 15, 16, 17, 18c 14 ? 10g, 11g,
  • 15. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 18c = 12.2.0.2 15 MOS 2285040.1
  • 16. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 16 1 2 18 19 20
  • 17. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 17 No “FIRST” and “SECOND” releases anymore!
  • 18. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 18 Fewer One-Off Patches!
  • 19. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 19 3 Number Format Year.Update.Revision
  • 20. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 20 18.1.0 target - quarterly
  • 21. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 21 18c Oracle Database 18.1.0 Production 18.2.0 First Update 18.2.1 First Revision
  • 22. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 22 Version number reflects patch level!
  • 23. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 23 A Release Update or Revision is only a patch, not a database upgrade!
  • 24. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 24 Patch: Oracle 18.2.1 ⇢ Oracle 18.6.0 opatch Upgrade: Oracle 18.2.1 ⇢ Oracle 19.1.0 dbupgrade and DBUA
  • 25. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | "revision" versus "update" 25
  • 26. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 26 18.1.0 18.2.0 First Update 18.1.1 First Revision security, regression, no functionality changes no optimizer changes security, regression, functional changes optimizer changes
  • 27. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | "18c - the autonomous database" 27
  • 28. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | autonomous is a cloud offering 28
  • 29. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 29 Autonomous Database = + +
  • 30. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | so what is the big deal ? 30
  • 31. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | trip down memory lane #1 31
  • 32. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | who remembers these numbers ? 32
  • 33. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 121 249 505 33
  • 34. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 34 ORA-1631: max # extents 505 reached in table SCOTT.EMP 121 = 2k block size 249 = 4k block size
  • 35. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | who thinks about extents anymore? 35
  • 36. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 7.3 = unlimited extents 36 semi-automatic uet$, fet$
  • 37. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 8.1 = locally managed tablespaces 37 fully automatic bitmap extents
  • 38. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | trip down memory lane #2 38
  • 39. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 39 create table SALES ( ... ... ... ) freelists 4 freelist groups 1
  • 40. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | ASSM 40
  • 41. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | automatic segment space management 41
  • 42. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | automation = 42 "we know the implementation, and it is being performed by the software based on our rules"
  • 43. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | automation ... towards autonomy 43
  • 44. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | trip down memory lane #3 44
  • 45. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | who remembers these parameters ? 45
  • 46. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 46 ROLLBACK_SEGMENTS = (r0,r1,r2,r3,r4,r5,r6) TRANSACTIONS_PER_ROLLBACK_SEGMENT = 20 CLEANUP_ROLLBACK_ENTRIES = 10 SYSTEM non-SYSTEM
  • 47. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | who thinks about undo anymore? 47
  • 48. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 9.0 = automatic undo 48 undo_tablespace =
  • 49. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 49 but it's more than automation
  • 50. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 50 SQL> select count(*) from dba_rollback_segs; COUNT(*) ---------- ????
  • 51. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 51 segment count growth / reduction ...
  • 52. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 52 ... decided by the database
  • 53. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | autonomy = 53 "we do not know the implementation, we do not set the rules, decisions by the software"
  • 54. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 54 Oracle has been doing this for a while :-)
  • 55. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 55 Oracle Database 10g and below • Automatic Storage Management (ASM) • Automatic Memory Management • Automatic DB Diagnostic Monitor (ADDM) • Automatic Workload Repository (AWR) • Automatic Undo tablespaces • Automatic Segment Space Management • Automatic Statistics Gathering • Automatic Standby Management (Broker) • Automatic Query Rewrite Oracle Database 11g, 12c • Automatic SQL Tuning • Automatic Workload Replay • Automatic Capture of SQL Monitor • Automatic Data Optimization • Automatic Storage Indexes • Automatic Columnar Cache • Automatic Diagnostic Framework • Automatic Refresh of Database Cloning • Autonomous Health Framework
  • 56. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 57. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 57 well ... sort of
  • 58. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 58 databases ... are hard transactional, instantaneous response standard reports, fast response end of day/week/month batch, longer but capped window ad hoc query, arbitrary criteria/duration
  • 59. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 59 all at the same time transactional, instantaneous response standard reports, fast response end of day/week/month batch, longer but capped window ad hoc query, arbitrary criteria/duration
  • 60. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 60 so we started with "easy" :-)
  • 61. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 61 data warehousing usage commonality flexible response times
  • 62. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 62 Oracle Autonomous Database Enterprise OLTP Data Warehousing Q1 2018 CY 2018 Data Warehousing
  • 63. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 63 autonomous objectives
  • 64. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 64 1) easy storage quotas indexing partitioning parallelism compression availability etc etc load data run queries
  • 65. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 65 2) fast or faster Exadata infrastructure Enterprise edition
  • 66. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 66 3) elastic
  • 67. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 67 3) truly elastic scale CPU & storage up, no outage scale CPU down to save $
  • 68. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 68 4) fully managed backup / recovery patching upgrades HA (99.95)
  • 69. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Oracle Exadata Cloud Service Oracle Database Cloud Service Express Cloud Service Data Warehouse Services (EDWs, DW, departmental marts and sandboxes) Autonomous Data Warehouse Cloud Service Console Built-in Access Tools SQL Worksheet Oracle ML Service Management DW Database SQL Developer Developer Tools Data Integration Services Oracle Data Integration Cloud Service 3rd Party DI on Oracle Cloud Compute 3rd Party DI on-premises
  • 70. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 70 walkthrough
  • 71. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 71 "5 easy steps"
  • 72. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 72
  • 73. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | creating your database 73 name region CPUs storage
  • 74. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | you're done! 74 admin user password
  • 75. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | "demo" 75
  • 76. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 76
  • 77. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 78. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 79. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 80. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 81. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 82. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 83. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 84. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 84
  • 85. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | connecting to your database 85
  • 86. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | emphasis on security 86 SSL only wallet
  • 87. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | single download 87 service console
  • 88. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | "demo" 88
  • 89. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 90. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 91. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 92. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 93. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 94. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 95. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | SQL Developer 95 native support
  • 96. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Location of the zip file Wallet password Database service name
  • 97. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | other tools 97 standard connectivty
  • 98. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 98 C:temp>unzip -l credential.zip Archive: credential.zip Length Date Time Name --------- ---------- ----- ---- 0 04/06/2018 08:37 7045 04/06/2018 08:22 cwallet.sso 0 04/06/2018 08:37 cwallet.sso.lck 7000 04/06/2018 08:22 ewallet.p12 0 04/06/2018 08:37 ewallet.p12.lck 3182 04/06/2018 08:22 keystore.jks 132 11/06/2018 11:04 sqlnet.ora 334 04/06/2018 08:22 tnsnames.ora 3797 04/06/2018 08:22 truststore.jks --------- ------- 21490 9 files
  • 99. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 99 sqlnet.ora WALLET_LOCATION = (SOURCE = (METHOD = file) (METHOD_DATA = (DIRECTORY="..."))) SSL_SERVER_DN_MATCH=yes tnsnames.ora DW = (description= (address=(protocol=tcps)(port=1522)(host=...)) (connect_data=(service_name=...)) (security=(ssl_server_cert_dn="CN=...")) )
  • 100. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | database services 100 predefined
  • 101. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | No of concurrent queries Max idle time CPU shares HIGH 3 5 mins 4 MEDIUM 20 5 mins 2 LOW 32 1 hour 1 MY_DBNAME_ MY_DBNAME_ MY_DBNAME_
  • 102. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 102
  • 103. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | users for your database 103
  • 104. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 104 SQL> create user MY_DATA identified by MY_PASSWORD; SQL> grant DWROLE to MY_DATA; You're done!
  • 105. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | other users as per normal 105
  • 106. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 106
  • 107. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | loading your database 107
  • 108. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | ADW Object Storage SQL*Net
  • 109. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | DBMS_CLOUD 109 focus on "1) easy"
  • 110. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | external tables are .... "fun" 110
  • 111. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 111 CREATE TABLE emp_ext ( EMPNO NUMBER(4), ENAME VARCHAR2(10), JOB VARCHAR2(9), MGR NUMBER(4), HIREDATE DATE, SAL NUMBER(7,2), COMM NUMBER(7,2), DEPTNO NUMBER(2) ) ORGANIZATION EXTERNAL ( TYPE ORACLE_LOADER DEFAULT DIRECTORY NFS_DIR ACCESS PARAMETERS ... ( RECORDS DELIMITED BY NEWLINE DNFS_ENABLE DNFS_READBUFFERS 10 FIELDS TERMINATED BY ',' MISSING FIELD VALUES ARE NULL ( empno, ename, job, mgr, hiredate CHAR(21) DATE_FORMAT MASK "DD-MON-YYYY HH24:MI:SS", sal, comm, deptno ) ) LOCATION ('EMP.dat') ) PARALLEL 1 REJECT LIMIT UNLIMITED; SQL> select * from emp_ext; ORA-12801: error signaled in parallel query server P002 ORA-29913: error in executing ODCIEXTTABLEOPEN callout ORA-29400: data cartridge error ORA-06512: at "SYS.ORACLE_LOADER", line 19
  • 112. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | loading from object store 112
  • 113. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 1) credentials 113
  • 114. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 114 begin dbms_cloud.create_credential( credential_name => 'OBJ_STORE_CRED', username => 'connor', password => 'password' ); end; /
  • 115. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 2) load/transform to table 115
  • 116. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 116 begin dbms_cloud.copy_data( table_name=>'CHANNELS', credential_name=>'OBJ_STORE_CRED', file_uri_list=> 'https://objectstorage..../DEMO_DATA/chan_v3.dat', format=> json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true') ); end;
  • 117. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 3) do the usual :-) 117
  • 118. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 118 SQL> select table_name, 2 status, 3 rows_loaded, 4 logfile_table, 5 badfile_table 6 from user_load_operations; TABLE_NAME STATUS ROWS_LOADED LOGFILE_TABLE BADFILE_TABLE ------------ ------- ------------ ------------- --------------- CHANNELS FAILED COPY$1_LOG COPY$1_BAD CHANNELS COMPLETED 5 COPY$2_LOG COPY$2_BAD
  • 119. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | data pump option 119
  • 120. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 120 begin dbms_cloud.create_credential( credential_name => 'OBJ_STORE_CRED', username => 'connor', password => 'password' ); end; / impdp sh/sh@salesdb_low directory=data_pump_dir credential=OBJ_STORE_CRED dumpfile=https://objectstorage.../dump/sh.dmp
  • 121. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 121
  • 122. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | querying your database 122
  • 123. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 123 SQL> select * 2 from MY_TABLE 3 ... "Well...duh"
  • 124. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | but you can do more 124
  • 125. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | ADWC Object Storage SQL*Net
  • 126. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | query before you load 126
  • 127. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | external table on object store 127 "Whoa there!"
  • 128. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 128 begin dbms_cloud.create_external_table( table_name =>'CHANNELS_EXT', credential_name =>'OBJ_STORE_CRED', file_uri_list => 'https://...chan_v3.dat', format => json_object('ignoremissingcolumns' value 'true', 'removequotes' value 'true'), column_list => 'CHANNEL_ID NUMBER, CHANNEL_DESC VARCHAR2(20), CHANNEL_CLASS VARCHAR2(20), CHANNEL_CLASS_ID NUMBER, CHANNEL_TOTAL VARCHAR2(13), CHANNEL_TOTAL_ID NUMBER' ); end; select count(*) from channels_ext;
  • 129. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | recap 129 creation/connection users loaded queried
  • 130. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | We're done !!! 130
  • 131. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | "Fast, unlimited data access is the crack cocaine for data scientists" - James Morle 131
  • 132. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | "3) elasticity" 132
  • 133. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | CPU increase ... anytime, no outage 133
  • 134. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 135. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 136. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 137. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 138. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 139. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 140. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 140 "Yeah...I know what that means"
  • 141. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 142. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | You can scale to zero 142 service console REST API
  • 143. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 143 load yesterday's data cpu = 2
  • 144. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 144 unleash the dogs :-) cpu = 8
  • 145. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | all other times = zero CPU cost 145
  • 146. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | "4) fully managed" 146
  • 147. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 147
  • 148. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | OS access 148 nope
  • 149. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | SYSDBA access 149 nope
  • 150. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | patching 150 automated online* (AppCont) gold image
  • 151. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | encryption 151 mandatory
  • 152. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | init.ora 152 all automatic NLS etc
  • 153. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | tablespaces 153 nope
  • 154. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | indexes 154 nope*
  • 155. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | materialized views 155 nope
  • 156. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | constraints 156 nope ... "yes"
  • 157. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | compression 157 nope (HCC)
  • 158. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | partitioning 158 nope*
  • 159. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | sidebar: Maybe you're doing it wrong :-) 159
  • 160. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | statistics 160 advanced direct mode automatic or explicit
  • 161. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | recall: 12c, direct load statistics 161
  • 162. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 162 SQL> insert /*+ APPEND */ into MY_EMPTY_TABLE 2 select ... 10000 rows inserted. SQL> select num_rows 2 from user_tables 3 where table_name = '...'; NUM_ROWS ---------- 10000 SQL> insert /*+ APPEND */ into ... 10000 rows inserted. SQL> select num_rows 2 from user_tables 3 where table_name = '...'; NUM_ROWS ---------- 20000
  • 163. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | histograms too! 163
  • 164. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 164 SQL> select column_name, 2 low_value, 3 high_value, 4 sample_size, 5 histogram 6 from user_tab_col_statistics 7 where table_name = '...'; COLUMN_NAME LOW_VALUE HIGH_VALUE SAMPLE_SIZE HISTOGRAM ------------ ---------- --------------- ----------- ----------- NUM0 C102 C302 20000 HYBRID NUM1 C102 C111 20000 FREQUENCY TXT1 58585831 58585839393939 20000 HYBRID
  • 165. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | caching 165 result_cache everything!
  • 166. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | hints 166 can be enabled ignored by default
  • 167. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | backup / recovery 167 daily incremental weekly full
  • 168. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | backup / recovery 168 point-in-time nomination (process is automatic) 60 days
  • 169. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | graph, text, spatial 169 coming later
  • 170. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | monitoring 170 real time SQL monitoring service console (and REST)
  • 171. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 172. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 173. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 174. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
  • 175. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | from "easy" to "not so easy" 175
  • 176. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 176 Oracle Autonomous Database Enterprise OLTP Data Warehousing Q1 2018 CY 2018 Data Warehousing
  • 177. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 177
  • 178. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | just a normal database? 178
  • 179. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | based on 19c 179 critical features
  • 180. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | which brings us to ... 180
  • 181. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 181 • Will my job go away? • Will my job change? • Will I lose control?
  • 182. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 182 % of presentations that have a pie graph % of presentations that need a pie graph
  • 183. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 72% http://www.computerworld.com/article/2486278/it-management/how-to-balance-maintenance-and-it-innovation.html
  • 184. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 184 Value Scale Cool stuff Maintenance
  • 185. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | think back to automatic undo ... 185
  • 186. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | ... did you lose your job ? 186 or just get more databases :-)
  • 187. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | it is about business success 187
  • 188. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 188 Data Modeling Architecture, Design
  • 189. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 189 End-to-End Service Level Management Full stack availability
  • 190. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 190 Data Security Data classification, Data life-cycle management
  • 191. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 191 Application Tuning SQL tuning, Connection management
  • 192. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 192 Value Scale Cool stuff Maintenance
  • 193. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 193 wrap up
  • 194. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | the appeal of "set and forget" 194
  • 195. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | the appeal of bypassing this! 195 Request for Provisioning of Resources
  • 196. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 2TB for 3500 compute hours 196 https://cloud.oracle.com/try-autonomous-database
  • 197. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Enjoy the day! youtube bit.ly/youtube-connor blog bit.ly/blog-connor twitter bit.ly/twitter-connor

Hinweis der Redaktion

  1. This is a Branded Title Slide with Event Look and Feel slide ideal for including a brief title, subtitle and presenter information. Do not customize this slide with your own picture. To reuse this branded background in another presentation on PC Locate and open the presentation where you will be placing this artwork. Click New Slide from the Home tab's Slides group and select Reuse Slides. Click Browse in the Reuse Slides panel and select Browse Files. Double-click the PowerPoint presentation that contains the background you wish to copy. Check Keep Source Formatting and click the slide that contains the background you want. Click the left-hand slide preview to which you wish to apply the new master layout. Apply New Layout (Important): Right-click any selected slide, point to Layout, and click the slide containing the desired layout from the layout gallery. Delete any unwanted slides or duplicates. To reuse this branded background in another presentation on Mac Locate and open the presentation where you will be placing this artwork. Click New Slide from the Home tab's Slides group and select Insert Slides from Other Presentation… Navigate to the PowerPoint presentation file that contains the background you wish to copy. Double-click or press Insert. This prompts the Slide Finder dialogue box. Make sure Keep design of original slides is unchecked and click the slide(s) that contains the background you want. Hold Shift key to select multiple slides. Click the left-hand slide preview to which you wish to apply the new master layout. Apply New Layout (Important): Click Layout from the Home tab's Slides group, and click the slide containing the desired layout from the layout gallery. Delete any unwanted slides or duplicates.
  2. So how are we automating generic database operations? What are the key features that underpin the autonomous data warehouse? This process of automation, and move into autonomous data warehousing, isn’t actually a new thing. In fact Oracle has put a huge amount of effort into automating all aspects of the database management for decades including: If we look as far back as Oracle Database 9i and 10g [CLICK] you see that we introduced fully automated management of features such as storage, Memory management, query management and [CLICK] We built on and extended those features in 11g and 12c with the delivery of automated SQL Tuning, automated management of data placement, Cluster health monitoring etc. So it really has been a journey to this point in time when we can offer the Oracle Autonomous Data Warehouse Cloud
  3. So to achieve our of goals - run fast - but keep an eye on how to run things faster - then either tell me or do it for me when needed we need something better… And its not something "NEW" in 18c, or 12c, …. Its something you already have !!!
  4. So to achieve our of goals - run fast - but keep an eye on how to run things faster - then either tell me or do it for me when needed we need something better… And its not something "NEW" in 18c, or 12c, …. Its something you already have !!!
  5. Copyright: <a href='https://www.123rf.com/profile_gstockstudio'>gstockstudio / 123RF Stock Photo</a>
  6. Today we are seeing businesses allocating over 72% of the IT budget to “keeping the lights on” or maintenance task, leaving too little time for innovation. So there’s a strong need to optimize legacy environments to cut costs and shift resources from maintenance to innovation. And there’s urgency to act as digital disruptors are eating away market share, and competitors typically ramping up their efforts to become more data-driven. Additionally, we see that existing on-premises infrastructure often do not allow our customers to move fast enough to support the business in the way they would want to (for example to very rapidly spin up new Dev/test environments). Lines of Business may then resort to shadow IT to drive their own initiatives…which can create various issues. And of course the demands from Line-of-Business leads in terms of performance SLAs, uptime, security & regulatory compliance are far from declining.
  7. Your job is not going away but it will evolve, so you must change with it You will spend less time on generic maintenance, more time innovating More time with the business Executing more projects, reducing backlog, getting more value from data Cloud’s fast provisioning and pay-as-you-go enables rapid experimentation More time with developers Optimizing data access, improving end-user experience
  8. Your job is not going away but it will evolve, so you must change with it You will spend less time on generic maintenance, more time innovating More time with the business Executing more projects, reducing backlog, getting more value from data Cloud’s fast provisioning and pay-as-you-go enables rapid experimentation More time with developers Optimizing data access, improving end-user experience
  9. Your job is not going away but it will evolve, so you must change with it You will spend less time on generic maintenance, more time innovating More time with the business Executing more projects, reducing backlog, getting more value from data Cloud’s fast provisioning and pay-as-you-go enables rapid experimentation More time with developers Optimizing data access, improving end-user experience
  10. Your job is not going away but it will evolve, so you must change with it You will spend less time on generic maintenance, more time innovating More time with the business Executing more projects, reducing backlog, getting more value from data Cloud’s fast provisioning and pay-as-you-go enables rapid experimentation More time with developers Optimizing data access, improving end-user experience