<Insert Picture Here> Controlling resources in an Exadata environment

Size: px
Start display at page:

Download "<Insert Picture Here> Controlling resources in an Exadata environment"

Transcription

1

2 <Insert Picture Here> Controlling resources in an Exadata environment

3 Agenda Smart IO IO Resource Manager Compression Hands-on time Exadata Security Flash Cache Storage Indexes Parallel Execution

4 Agenda Smart IO IO Resource Manager Compression

5 SMART IO

6 How we (used to) read and write data Data read and write has many forms SQL statements Full and Incremental Backups Restore of backups Loading of data Creation of tablespaces/datafiles Exadata is designed to do this fast Latest and greatest in hardware Optimized software to work together with the hardware

7 Are fast nodes and storage enough? NO! The speed is determined by the weakest link Processing speed of the database nodes Processing speed of the storage environment The storage network and components that tie them together 4Gb fiber is not fast enough 4 single thread sessions can easily use throughput of a 4Gb card

8 Can we go any faster besides hardware Yes! Limit the amount of processing done on the database nodes Scanning full tables on the storage, not on the DB nodes Only retrieve columns and rows that you actually need Encrypt and Decrypt on the storage side, not on the DB Transfer tasks (writing zero s to datafiles) to the storage Free CPU power from the DB nodes Pay less license fees because you need less DB nodes Waste less power and heat because you have less systems Pay less because you need less iron in your environment Fully use the CPU s on the storage side

9 Smart IO applications Smart scan Query 1TB and only receive process the actual results, not 1TB Retrieve parts from flash and parts from disk Smart file creation and block formatting Let the storage write the 5TB of zero s for the new datafiles instead of the database nodes. Parallel and faster! Both new tablespaces but also RMAN restore benefit Smart incremental backup Let the storage decide which blocks to back-up. Parallel, fast so no more full database scans from the RMAN process Smart Scans on Encrypted Columns and Tablespaces Smart Scans for Data Mining Scoring

10 Smart Scan, first get the basics This is generic Oracle business Database sessions read one or more blocks in the SGA After reading/processing, the block stays in the SGA Sessions can re-use the block in the SGA Storage allocated based on Most Recent Used Algorithm Database sessions read blocks in the PGA Amount of data too large to fit in the SGA Called Direct reads, stored in the sessions PGA Blocks evaluated as they come in Blocks deleted after usage (new query means reading again) On Exadata, Smart Scan kicks in for the Direct Reads which are the most resource intensive queries

11 Datastream in an Oracle Database

12 Smart Scan functional summary Smart scan is implemented by function shipping Statement is processed by the instance Block ID s are determined per Exadata cell Predicates (where clause) and Block ID s are shipped to the cell Cell processes the blocks and returns the filtered rows Cell has libraries to understand Oracle block format Predicate evaluation (functions in the where clause) Column selection Join filtering through bloom filters Works on compressed and uncompressed blocks Tablespace and column encryption is supported

13 Smart Scan What happens? Database decides Direct Read is needed Too much data to fit in the SGA Determines list of blocks that need to be accessed Either indexes or tables Database detects all required data is on Exadata Creates list of blocks per Exadata storage cell Ships list of blocks, the required columns and applicable where predicates to the Exadata storage cell

14 Smart Scan What happens (cont..) Exadata storage cells retrieve requested blocks Parallel on cells and parallel in multiple threads per cell Based on column requirements and where predicates, retrieve data from the blocks Gather retrieved data and create Oracle-like blocks Ship blocks with data to the database node(s) Database receives virtual blocks from all cells Gathers in PGA and determine result for session Send result to session and delete virtual blocks Query 1TB and only receive 10GB in the DB nodes!

15 Smart scan when is it used? Optimizer does not decide to use smart scan It is a run-time decision First, a scan decides if direct reads can be used Decision based on Table size Number of dirty buffers Amount of data already cached Other heuristics (see manual) The behavior is the same as non-exadata behavior

16 Smart scan when is it used? Cont. Setting of CELL_OFFLOAD_PROCESSING parameter TRUE / FALSE All the files of a tablespace need to reside on Exadata storage Smart scans are used for scans In sub-queries and in-lines as well Used for the following row sources: Table scan Index (fast full) scan Bitmap index scan

17 Smart Scan Predicting offload A stable plan is important Explain plan should not change in a running environment No additional parsing for the same statement Explain plans helps you see Exadata offload Operations that could be offloaded Predicates that could be offloaded Joins that could be offloaded though Bloom filtering A certain Explain Plan does not guarantee offloading! For more information on Oracle s Bloom filtering, see

18 Explain plan example Id Operation Name SELECT STATEMENT *1 HASH JOIN *2 HASH JOIN *3 TABLE ACCESS STORAGE FULL SALES *4 TABLE ACCESS STORAGE FULL SALES *5 TABLE ACCESS STORAGE FULL SALES Predicate Information (identified by operation id): access("t"."cust_id"="t2"."cust_id" AND "T1"."PROD_ID"="T2"."PROD_ID" AND "T1"."CUST_ID"="T2"."CUST_ID") 2 - access("t"."prod_id"="t1"."prod_id") 3 - storage("t1"."prod_id"<200 AND "T1"."AMOUNT_SOLD"*"T1"."QUANTITY_SOLD">10000 AND "T1"."PROD_ID"<>45) filter("t1"."prod_id"<200 AND "T1"."AMOUNT_SOLD"*"T1"."QUANTITY_SOLD">10000 AND "T1"."PROD_ID"<>45) 4 - storage("t"."prod_id"<200 AND "T"."PROD_ID"<>45) filter("t"."prod_id"<200 AND "T"."PROD_ID"<>45) 5 - storage("t2"."prod_id"<200 AND "T2"."PROD_ID"<>45) filter("t2"."prod_id"<200 AND "T2"."PROD_ID"<>45)

19 Manipulating Explain Plan output CELL_OFFLOAD_PLAN_DISPLAY parameter AUTO (default) Explain plan will show predicate offload only if tablespace resides on Exadata storage ALWAYS Explain plan will show predicate offload whether the tablespace resides on Exadata storage or not NEVER Explain Plan will never indicate predicate offload even if tablespaces resides on Exadata storage

20 Detecting Scan offloads Trace of the session executing the statement Querying (G)V$ views (G)V$SYSSTAT (G)V$SQL (G)V$SESSTAT etc

21 Example: V$SYSSTAT cell physical IO interconnect bytes Bytes transferred between the storage nodes and the database nodes physical IO disk bytes Bytes physically read on the Exadata storage nodes. This includes both IO performed for both block IO and for smart scans. cell physical IO bytes eligible for predicate offload Blocks that were processed by the smart scan process using the column list and the where predicates

22 V$SYSTAT values and efficiency select name from table where col >= 100 Phys. IO Phys. IO eligible for offload Phys. IO interconnect 10Gb 10Gb 2Gb Efficiency: = 2Gb 10Gb = 20%

23 V$SYSTAT values and efficiency select a.name, b.* from table a, table b where a.id = b.id and a.col >= 100 Phys. IO Phys. IO eligible for offload Phys. IO interconnect 10Gb 5Gb 5Gb Efficiency: = Efficiency: = 1Gb 5Gb 5Gb 10Gb = 20% = 50%

24 V$SQL makes it easier We can use the following columns physical_read_bytes How much data was read by the cell io_interconnect_bytes How much data was transported through the interconnect io_cell_offload_eligible_bytes How much of the physical read data was processed in the cell io_cell_offload_returned_bytes How much of the processed data was actually returned to the DB This is per statement

25 Smart scan inside the cell Smart scan is handled by the Cellsrv process on the cell Cellsrv is Multi-threaded Serves block IO and smart IO Runs a piece of RDBMS code to support smart IO Can provide storage to one or more databases Does not communicate with other cells

26 Predicate disk data flow PredicateCachePut Queues new IO requests IO jobs issues IOs PredicateDiskRead PredicateFilter Filter raw data PredicateCacheGet Send result back Jobs can execute concurrently Concurrent IOs can be issued for a single RDBMS client Concurrent filter jobs can be applying predicates Exadata adds another level of parallelism in query processing

27 Other Smart improvements Smart file creation Offloads process of formatting new blocks to the cell storage. Block ids (instead of formatted blocks) are shipped to the cells Smart file creation is used whenever a file is created Tablespace creation File resize (increase in size) RMAN restore Statistics involved (V$SYSSTAT) cell physical IO bytes saved during optimized file creation cell physical IO bytes saved during optimized RMAN file restore

28 Other Smart improvements Smart incremental backup Offloads identifying blocks to backup to Exadata cell (SCN) Used automatically Unless Fast Incremental Backup feature is used V$BACKUP_DATAFILE for smart incremental backup BLOCKS_SKIPPED_IN_CELL number of blocks that were read and filtered by the cells to optimize the RMAN incremental backup. BLOCKS Size of the backup data file in blocks.

29 New wait events Smart Scan cell smart table scan - Database is waiting for table scans to complete on a cell. cell smart index scan - Database is waiting for index or indexorganized table (IOT) fast full scans. Smart file creation cell smart file creation - Event appears when the database is waiting for the completion of a file creation on a cell. cell smart restore from backup - Event appears when the database is waiting for the completion of a file initialization for restore from backup on a cell. Smart incremental Backup cell smart incremental backup - Event appears when the database is waiting for the completion of an incremental backup on a cell.

30 Exadata Smart Features - Summary Long running actions benefit the most Smart Scans for optimizing full table/index/bitmap scans Smart file creation for datafile creation and restoring backups Smart Incremental Backups for incremental backup creations Explain plan displays possible offloads Does not guarantee offload Indicator STORAGE shows offload options Various new wait events Do not get scared if you see them

31 Q U E S T I O N S A N S W E R S On Exadata Smart Features

32 Agenda Smart IO IO Resource Manager Compression

33 IO RESOURCE MANAGEMENT

34 Why Would Customers Be Interested in I/O Resource Manager? Exadata Storage can be shared by multiple types of workloads and multiple databases Sharing lowers administration costs Sharing leads to more efficient usage of storage But, workloads may not happily coexist ETL jobs interfere with DSS query performance One production data warehouse can interfere with another Extraordinary query performance also means that one query can utilize all of Exadata s I/O bandwidth! Non-priority queries can substantially impact the performance of critical queries Customers will need a way to control these workloads

35 Consequence of I/O Bandwidth Limits Production Database 200 MB/s 15 GB/s desired bandwidth: GB/s desired bandwidth: = 30.2 GB/s available I/O Bandwidth: 21 GB/s Development Database desired bandwidth: 15 GB/s Storage Network Storage

36 IO Manager solves the problem Production Database 200 MB/s actual bandwidth: GB/s actual bandwidth: = GB/s available I/O Bandwidth: 21 GB/s GB/s Development Database actual bandwidth: 15 8 GB/s Storage Network Storage

37 When Does I/O Resource Manager Help the Most? Conflicting Workloads Multiple consumer groups Multiple databases Concurrent database administration Backup, ETL, File creation etc Of course only if I/O is a bottleneck Significant proportion of the wait events are for I/O Including the CELL WAIT events

38 I/O Scheduling, the Traditional Way With traditional storage, I/O schedulers are black boxes You cannot influence their behavior! I/O requests are processed in FIFO order Some reordering may be done to improve disk efficiency RDBMS I/O Requests Traditional Storage Server Disk Queue H L H L L L RDBMS High-Priority Workload Low-Priority Workload

39 I/O Scheduling, the Exadata Way Exadata limits the number of outstanding I/O requests Issues enough I/Os to keep disk performing efficient Limit prevents low-priority intensive workload from flooding the disk Subsequent I/O requests are internally queued Exadata dequeues I/O requests, based on database and the user s resource plans Inter-database plans specify bandwidth between multiple databases Intra-database plans specify bandwidth between workloads within a database

40 I/O Scheduling, the Exadata Way Sales Data Warehouse High Priority Consumer Group Queue Exadata Cell Sales Database Finance Database H H L L L Low Priority Resource Group Queue Finance Data Warehouse High Priority Consumer Group Queue H L L L L I/O Resource Manager Sales-Priority L H H H Finance-Priority Low Priority Consumer Group Queue

41 Plans are known by the CellSRV Inter-database (or between databases) Specified through CellCLI and pushed to CELLSRV Intra-database (or inside a database) Pushed by RDBMS to CELLSRV Server. Intra-database plans are regular Resource Manager Plans I/O s are tagged Every ASM/RDBMS I/O is tagged by the sender identity (Database ID/Consumer Group ID) CELLSRV uses Resource Manager component (similar to RDBMS) to schedule I/O s

42 Setting up IO Resource Management Inter-Database resource plans Setup on the Exadata cell Enabled / disabled on Exadata cell level Intra-Database resource plans IORM on Exadata cell must be enabled Inter-database plans not required Setup Resource Manager on the database Map sessions to consumer groups Create database resource plan Add permissions for users Enable Database Resource plan

43 How can we limit what? Per database or resource group On disk Level Minimum % of IO Only kicks in when fighting over disk IO s Speed may vary but has a guaranteed minimum Limited % of IO Always limiting IO to certain % Even if system is not being used On Flash Level No need to limit flash I/O fast enough Limit access to Flash storage space

44 How to Configure Inter-Database IORM Specify DB name, level and allocation % Per level, 100% is available Various options are available OTHER is wildcard for non-specified databases CellCLI> alter iormplan dbplan = ((name = production, level=1, allocation=100), (name = test, level=2, allocation=80), (name = other, level=2, allocation=20)) IORMPLAN successfully altered CellCLI> alter iormplan active IORMPLAN successfully altered

45 Limiting resources on Disk Starting patchset Between users inside a database User default Resource Management Directive max_utilization_limit" applies for both CPU and IO Between databases User the limit parameter in the IORMPlan Example: ALTER IORMPLAN dbplan=((name=prod, limit=75), (name=test, limit=20), (name=other, limit=5))

46 Control access to flash cache Starting patchset Prevent databases to access flash cache Low priority databases, Test databases etc New attribute introduced for IORM: FlashCache Cellcli> ALTER IORMPLAN dbplan=((name=prod, flashcache=on), (name=dev, flashcache=on), (name=test, flashcache=off), (name=other, flashcache=off))

47 Measuring the Benefit from IORM Method 1: Monitor performance of target workload Demonstrates the effectiveness of IORM to the workload owner Measure target workload s query times or transaction rates Method 2: Monitor I/O statistics of target workload Characterizes I/O traffic per workload for each cell Demonstrates the effect of IORM on each workload Measure using Exadata IORM metrics

48 Example Production database Users doing normal production Development / Test database Schema s used for Testing Schema s used for Development Both databases run on same cluster

49 Before IO resource Management PROD TEST DEV Without IORM

50 Creating an IORM Schema DB name Resource group Inter % Exadata cell Intra % Resource group PROD - Level=1, alloc=60 - DEVTST DEV Level=2, alloc= TEST 25 Setup on Exadata cell PROD=60, DEVTST=40, OTHER=0 Setup inside Database Resource Mgr Resource group DEV = 75% Resource group TEST = 25%

51 With and without IORM PROD TEST DEV Without IORM With IORM

52 IO Resource Manager - Summary IORM manages load effectively Within a database Between databases Only if IO is the bottleneck, check AWR for this To verify IORM, monitor your critical workload With and without other workloads With and without IORM Use IORM metrics to monitor I/O rates and wait times Or use your own Metrics / end user

53 Q U E S T I O N S A N S W E R S On IO Resource Manager

54 Agenda Smart IO IO Resource Manager Compression

55 COMPRESSION

56 Data Growth Challenges IT must support exponentially growing amounts of data Explosion in online access and content Government data retention regulations Performance often declines as data grows IT budgets are flat or decreasing Need to grow data Without hurting performance Without growing cost Powerful and efficient compression is key

57 Oracle Database Compression Overview Compress All Your Data Compression Feature Application Fit Availability Table compression Compress for Query Compress for Archive OLTP Table Compression SecureFiles Compression SecureFiles Deduplication NEW Data Warehouses All Applications Actively Updated Data All Applications Unstructured (File) Data All Applications Unstructured (File) Data Oracle 8 Built on Hybrid Columnar Compression Technology Database 11g Advanced Compression Database 11g Advanced Compression Database 11g Advanced Compression Backup Compression Network Compression RMAN Compression Data Pump Compression Data Guard Redo Transport Compression Database 11g Advanced Compression Database 11g Advanced Compression

58 Hybrid Columnar Compression Compression Unit Hybrid Columnar Compressed Tables New approach to compressed table storage Useful for data that is bulk loaded and queried Update activity is light 10x to 15x Reduction How it Works Tables are organized into Compression Units CUs are larger than database blocks Usually around 32K Within Compression Unit, data is organized by column instead of by row Column organization brings similar values close together, enhancing compression

59 Hybrid Columnar Compression Technology Overview Compression Unit Logical structure spanning multiple database blocks Data organized by column during data load Each column compressed separately All column data for a set of rows stored in compression unit Typically 32k (4 blocks x 8k block size) Logical Compression Unit BLOCK HEADER BLOCK HEADER BLOCK HEADER BLOCK HEADER CU HEADER C1 C2 C3 C4 C7 C6 C5 C8 C8

60 Compress for Query Built on Hybrid Columnar Compression 10x average storage savings 100 TB Database compresses to 10 TB Reclaim 90 TB of disk space Space for 9 more 100 TB databases 10x average scan improvement 1,000 IOPS reduced to 100 IOPS 100 TB 10 TB

61 Compress for Archive Built on Hybrid Columnar Compression Compression algorithm optimized for max storage savings Benefits any application with data retention requirements Best approach for ILM and data archival Minimum storage footprint No need to move data to tape or less expensive disks Data is always online and always accessible Run queries against historical data (without recovering from tape) Update historical data Supports schema evolution (add/drop columns)

62 Compress for Archive Optimal workload characteristics for Archive Compression Any application (OLTP, Data Warehouse) Cold or Historical Data Data loaded with bulk load operations Minimal access and update requirements Instead of record lock a Compression Unit lock 15x average storage savings 100 TB Database compresses to 6.6 TB Keep historical data online forever Up to 70x savings seen on production customer data

63 Compression in Exadata ILM and Data Archiving Strategies OLTP Applications Table Partitioning Heavily accessed data (read and write) Partitions using OLTP Table Compression Cold or historical data Partitions using Compress for Archive Data Warehouses Table Partitioning Heavily accessed data (read) Partitions using Compress for Query Cold or historical data Partitions using Compress for Archive

64 Hybrid Columnar Compression Outside of Exadata Only supported for data stored on Exadata Storage Cells Exadata Database Machines Exadata Sparc Super Cluster Oracle ZFS Appliance systems Oracle Pillar Data Systems Storing and accessing HCC data on other systems Storage is possible including DataGuard, Recovery etc Access only possible after de-compression of data Can be done on any 11gR2+ system

65 Hybrid Columnar Compression Business as Usual Fully supported with B-Tree, Bitmap Indexes, Text indexes Materialized Views Exadata Server and Cells including offload Partitioning, Parallel Query, PDML, PDDL Schema Evolution support, online, add/drop columns Data Guard Physical and Logical Standby (>11.2) Support Data only accessible if standby supports HCC too! Streams is not supported GoldenGate will be supported soon!

66 Hybrid Columnar Compressed Tables Details Data loaded using Direct Load uses EHCC Parallel DML INSERT /*+ APPEND */ Direct Path SQL*Loader Optimized algorithms avoid or greatly reduce overhead of decompression during query Individual row lookups consume more CPU than row format Need to reconstitute row from columnar format

67 Hybrid Columnar Compressed Tables Details continued.. Updated rows automatically migrate to lower compression level to support frequent transactions Table size will increase moderately All un-migrated rows in Compression Unit are locked during migration Row will get a new ROWID after update Data loaded using Conventional Insert (non-bulk) uses the lower compression level

68 Hybrid Columnar Compressed Tables Details continued.. Specialized columnar query processing engine Runs in Exadata Storage Server to run directly against compressed data Column optimized processing of query projection and filtering Result is returned uncompressed

69 Compression Advisor New Advisor in Oracle Database 11g Release 2 DBMS_COMPRESSION PL/SQL Package Estimates Hybrid Columnar Compress storage savings on non- Exadata hardware Requires Patch # Table: GL_BALANCES Compression Type: Compress for Query HIGH Estimated Compression Ratio: PL/SQL procedure succesfully completed. SQL>

70 Hybrid Columnar Compression Customer Success Stories Data Warehouse Customers (Warehouse Compression) Top Financial Services 1: 11x Top Financial Services 2: 24x Top Financial Services 3: 18x Top Telco 1: 8x Top Telco 2: 14x Top Telco 3: 6x Scientific Data Customer (Archive Compression) Top R&D customer (with PBs of data): 28x OLTP Archive Customer (Archive Compression) Oracle E-Business Suite, Oracle Corp.: 23x Custom Call Center Application, Top Telco: 15x

71 Summary IT must support exponentially growing amounts of data Without growing cost Without hurting performance Exadata and Hybrid Columnar Compression Extreme Storage Savings Compress for Query Compress for Archive Improve I/O Scan Rates

72 Q U E S T I O N S A N S W E R S

73 Now you do it!

74

Exadata Implementation Strategy

Exadata Implementation Strategy Exadata Implementation Strategy BY UMAIR MANSOOB 1 Who Am I Work as Senior Principle Engineer for an Oracle Partner Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist

More information

<Insert Picture Here> Controlling resources in an Exadata environment

<Insert Picture Here> Controlling resources in an Exadata environment Controlling resources in an Exadata environment Agenda Exadata Security Flash Cache and Log Storage Indexes Parallel Execution Agenda Exadata Security Flash Cache and Log Storage

More information

<Insert Picture Here> Introducing Exadata X3

<Insert Picture Here> Introducing Exadata X3 Introducing Exadata X3 Exadata X3 Hardware Overview Overall Exadata Architecture remains the same - Working great, no need for change - DB Machine names change from X2 to X3 (e.g.

More information

Exadata Implementation Strategy

Exadata Implementation Strategy BY UMAIR MANSOOB Who Am I Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist since 2011 Oracle Database Performance Tuning Certified Expert Oracle Business Intelligence

More information

10/29/2013. Program Agenda. The Database Trifecta: Simplified Management, Less Capacity, Better Performance

10/29/2013. Program Agenda. The Database Trifecta: Simplified Management, Less Capacity, Better Performance Program Agenda The Database Trifecta: Simplified Management, Less Capacity, Better Performance Data Growth and Complexity Hybrid Columnar Compression Case Study & Real-World Experiences

More information

An Oracle White Paper June Exadata Hybrid Columnar Compression (EHCC)

An Oracle White Paper June Exadata Hybrid Columnar Compression (EHCC) An Oracle White Paper June 2011 (EHCC) Introduction... 3 : Technology Overview... 4 Warehouse Compression... 6 Archive Compression... 7 Conclusion... 9 Introduction enables the highest levels of data compression

More information

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

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

More information

Hybrid Columnar Compression (HCC) on Oracle Database 18c O R A C L E W H IT E P A P E R FE B R U A R Y

Hybrid Columnar Compression (HCC) on Oracle Database 18c O R A C L E W H IT E P A P E R FE B R U A R Y Hybrid Columnar Compression (HCC) on Oracle Database 18c O R A C L E W H IT E P A P E R FE B R U A R Y 2 0 1 8 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Exadata X3 in action: Measuring Smart Scan efficiency with AWR. Franck Pachot Senior Consultant

Exadata X3 in action: Measuring Smart Scan efficiency with AWR. Franck Pachot Senior Consultant Exadata X3 in action: Measuring Smart Scan efficiency with AWR Franck Pachot Senior Consultant 16 March 2013 1 Exadata X3 in action: Measuring Smart Scan efficiency with AWR Exadata comes with new statistics

More information

Oracle Exadata Implementation Strategy HHow to Implement Exadata In-house

Oracle Exadata Implementation Strategy HHow to Implement Exadata In-house Oracle Exadata Implementation Strategy HHow to Implement Exadata In-house Introduction Oracle Exadata The Oracle Exadata is a database machine, which has now been present since 2008. A number of financial

More information

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE ORACLE 11gR2 DBA by Mr. Akal Singh ( Oracle Certified Master ) INTRODUCTION to ORACLE COURSE CONTENT Exploring the Oracle Database Architecture List the major architectural components of Oracle Database

More information

Oracle Advanced Compression: Reduce Storage, Reduce Costs, Increase Performance Bill Hodak Principal Product Manager

Oracle Advanced Compression: Reduce Storage, Reduce Costs, Increase Performance Bill Hodak Principal Product Manager Oracle Advanced : Reduce Storage, Reduce Costs, Increase Performance Bill Hodak Principal Product Manager The following is intended to outline our general product direction. It is intended for information

More information

Copyright 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12

Copyright 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 1 Information Retention and Oracle Database Kevin Jernigan Senior Director Oracle Database Performance Product Management The following is intended to outline our general product direction. It is intended

More information

Key to A Successful Exadata POC

Key to A Successful Exadata POC BY UMAIR MANSOOB Who Am I Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist since 2011 Oracle Database Performance Tuning Certified Expert Oracle Business Intelligence

More information

Oracle 1Z0-515 Exam Questions & Answers

Oracle 1Z0-515 Exam Questions & Answers Oracle 1Z0-515 Exam Questions & Answers Number: 1Z0-515 Passing Score: 800 Time Limit: 120 min File Version: 38.7 http://www.gratisexam.com/ Oracle 1Z0-515 Exam Questions & Answers Exam Name: Data Warehousing

More information

B. Using Data Guard Physical Standby to migrate from an 11.1 database to Exadata is beneficial because it allows you to adopt HCC during migration.

B. Using Data Guard Physical Standby to migrate from an 11.1 database to Exadata is beneficial because it allows you to adopt HCC during migration. Volume: 71 Questions Question No : 1 Which two statements are true about migrating your database to Exadata? A. Because Exadata uses InfiniBand, in order to migrate your database to Exadata, you must have

More information

Automating Information Lifecycle Management with

Automating Information Lifecycle Management with Automating Information Lifecycle Management with Oracle Database 2c The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-027 Title : Oracle Exadata Database Machine Administration, Software Release 11.x Vendor : Oracle

More information

Oracle Exam 1z0-027 Oracle Exadata Database Machine X3 Administration Version: 6.13 [ Total Questions: 72 ]

Oracle Exam 1z0-027 Oracle Exadata Database Machine X3 Administration Version: 6.13 [ Total Questions: 72 ] s@lm@n Oracle Exam 1z0-027 Oracle Exadata Database Machine X3 Administration Version: 6.13 [ Total Questions: 72 ] Question No : 1 Which two are Oracle recommendations for media based backups performed

More information

Was ist dran an einer spezialisierten Data Warehousing platform?

Was ist dran an einer spezialisierten Data Warehousing platform? Was ist dran an einer spezialisierten Data Warehousing platform? Hermann Bär Oracle USA Redwood Shores, CA Schlüsselworte Data warehousing, Exadata, specialized hardware proprietary hardware Introduction

More information

An Oracle White Paper July Oracle Advanced Compression with Oracle Database 12c

An Oracle White Paper July Oracle Advanced Compression with Oracle Database 12c An Oracle White Paper July 2014 Oracle Advanced Compression with Oracle Database 12c Oracle White Paper Advanced Compression with Oracle Database 12c Introduction... 3 Oracle Advanced Compression... 4

More information

Storage Optimization with Oracle Database 11g

Storage Optimization with Oracle Database 11g Storage Optimization with Oracle Database 11g Terabytes of Data Reduce Storage Costs by Factor of 10x Data Growth Continues to Outpace Budget Growth Rate of Database Growth 1000 800 600 400 200 1998 2000

More information

Oracle Advanced Compression with Oracle Database 12c Release 2 O R A C L E W H I T E P A P E R M A R C H

Oracle Advanced Compression with Oracle Database 12c Release 2 O R A C L E W H I T E P A P E R M A R C H Oracle Advanced Compression with Oracle Database 12c Release 2 O R A C L E W H I T E P A P E R M A R C H 2 0 1 7 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Oracle Advanced Compression with Oracle Database 12c Release 2 O R A C L E W H I T E P A P E R S E P T E MB E R

Oracle Advanced Compression with Oracle Database 12c Release 2 O R A C L E W H I T E P A P E R S E P T E MB E R Oracle Advanced Compression with Oracle Database 12c Release 2 O R A C L E W H I T E P A P E R S E P T E MB E R 2 0 1 7 Disclaimer The following is intended to outline our general product direction. It

More information

Oracle Database In-Memory

Oracle Database In-Memory Oracle Database In-Memory Mark Weber Principal Sales Consultant November 12, 2014 Row Format Databases vs. Column Format Databases Row SALES Transactions run faster on row format Example: Insert or query

More information

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

Copyright 2013, Oracle and/or its affiliates. All rights reserved. 2 Copyright 23, Oracle and/or its affiliates. All rights reserved. Oracle Database 2c Heat Map, Automatic Data Optimization & In-Database Archiving Platform Technology Solutions Oracle Database Server

More information

An Oracle White Paper August Advanced Compression Option (ACO) with Oracle Database 11g

An Oracle White Paper August Advanced Compression Option (ACO) with Oracle Database 11g An Oracle White Paper August 2012 Advanced Compression Option (ACO) with Oracle Database 11g Oracle White Paper Advanced Compression with Oracle Database 11g Introduction... 3 Oracle Advanced Compression...

More information

An Oracle White Paper February Optimizing Storage for Oracle PeopleSoft Applications

An Oracle White Paper February Optimizing Storage for Oracle PeopleSoft Applications An Oracle White Paper February 2011 Optimizing Storage for Oracle PeopleSoft Applications Executive Overview Enterprises are experiencing an explosion in the volume of data required to effectively run

More information

An Oracle White Paper October Advanced Compression with Oracle Database 11g

An Oracle White Paper October Advanced Compression with Oracle Database 11g An Oracle White Paper October 2011 Advanced Compression with Oracle Database 11g Oracle White Paper Advanced Compression with Oracle Database 11g Introduction... 3 Oracle Advanced Compression... 4 Compression

More information

VLDB. Partitioning Compression

VLDB. Partitioning Compression VLDB Partitioning Compression Oracle Partitioning in Oracle Database 11g Oracle Partitioning Ten Years of Development Core functionality Performance Manageability Oracle8 Range partitioning

More information

Oracle Exadata Recipes

Oracle Exadata Recipes Oracle Exadata Recipes A Problem-Solution Approach John Clarke Apress- Contents About the Author About the Technical Reviewer Acknowledgments Introduction xxxiii xxxv xxxvii xxxix Part 1: Exadata Architecture

More information

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database SQL Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-051 Exam Title: Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-071 Exam Title: Oracle Database SQL Oracle and Structured

More information

Does Exadata Need Performance Tuning? Jože Senegačnik, Oracle ACE Director, Member of OakTable DbProf d.o.o. Ljubljana, Slovenia

Does Exadata Need Performance Tuning? Jože Senegačnik, Oracle ACE Director, Member of OakTable DbProf d.o.o. Ljubljana, Slovenia Does Exadata Need Performance Tuning? Jože Senegačnik, Oracle ACE Director, Member of OakTable DbProf d.o.o. Ljubljana, Slovenia Keywords Exadata, Cost Based Optimization, Statistical Optimizer, Physical

More information

Oracle Advanced Compression. An Oracle White Paper June 2007

Oracle Advanced Compression. An Oracle White Paper June 2007 Oracle Advanced Compression An Oracle White Paper June 2007 Note: The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Oracle Database 10g: New Features for Administrators Release 2

Oracle Database 10g: New Features for Administrators Release 2 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 10g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course introduces students to the new features

More information

Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1

Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1 Oracle University Contact Us: Local: 0180 2000 526 Intl: +49 8914301200 Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1 Duration: 5 Days What you will learn The Oracle Database 12c

More information

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Description The SQL Fundamentals exam is intended to verify that certification candidates have a basic understanding of the SQL language. It covers the

More information

[Contents. Sharing. sqlplus. Storage 6. System Support Processes 15 Operating System Files 16. Synonyms. SQL*Developer

[Contents. Sharing. sqlplus. Storage 6. System Support Processes 15 Operating System Files 16. Synonyms. SQL*Developer ORACLG Oracle Press Oracle Database 12c Install, Configure & Maintain Like a Professional Ian Abramson Michael Abbey Michelle Malcher Michael Corey Mc Graw Hill Education New York Chicago San Francisco

More information

An Oracle White Paper June Oracle Advanced Compression with Oracle Database 12c

An Oracle White Paper June Oracle Advanced Compression with Oracle Database 12c An Oracle White Paper June 2013 Oracle Advanced Compression with Oracle Database 12c Oracle White Paper Advanced Compression with Oracle Database 12c Introduction... 3 Oracle Advanced Compression... 4

More information

Exadata for Oracle DBAs. Arup Nanda Longtime Oracle DBA (and now DMA)

Exadata for Oracle DBAs. Arup Nanda Longtime Oracle DBA (and now DMA) Arup Nanda Longtime Oracle DBA (and now DMA) Why this Session? If you are an Oracle DBA Familiar with RAC, 11gR2 and ASM about to be a Database Machine Administrator (DMA) How much do you have to learn?

More information

Oracle Exadata Performance

Oracle Exadata Performance Yes. You still need to tune. By Kathy Gibbs, Product Manager Presentation to NYOUG Winter General Meeting 12/2011 Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 www.confio.com Introduction

More information

Arup Nanda Longtime Oracle DBA (and now DMA)

Arup Nanda Longtime Oracle DBA (and now DMA) Arup Nanda Longtime Oracle DBA (and now DMA) Why this Session? If you are an Oracle DBA Familiar with RAC, 11gR2 and ASM about to be a Database Machine Administrator (DMA) How much do you have to learn?

More information

<Insert Picture Here> Exadata MAA Best Practices Series Session 1: E-Business Suite on Exadata

<Insert Picture Here> Exadata MAA Best Practices Series Session 1: E-Business Suite on Exadata Exadata MAA Best Practices Series Session 1: E-Business Suite on Exadata Richard Exley Ray Dutcher Richard Exley, Ray Dutcher Oracle Applications, Exadata and MAA Best Practices Exadata

More information

Automatic Data Optimization with Oracle Database 12c O R A C L E W H I T E P A P E R S E P T E M B E R

Automatic Data Optimization with Oracle Database 12c O R A C L E W H I T E P A P E R S E P T E M B E R Automatic Data Optimization with Oracle Database 12c O R A C L E W H I T E P A P E R S E P T E M B E R 2 0 1 7 Table of Contents Disclaimer 1 Introduction 2 Storage Tiering and Compression Tiering 3 Heat

More information

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

Copyright 2018, Oracle and/or its affiliates. All rights reserved. Oracle Database In- Memory Implementation Best Practices and Deep Dive [TRN4014] Andy Rivenes Database In-Memory Product Management Oracle Corporation Safe Harbor Statement The following is intended to

More information

Oracle Database 11g for Experienced 9i Database Administrators

Oracle Database 11g for Experienced 9i Database Administrators Oracle Database 11g for Experienced 9i Database Administrators 5 days Oracle Database 11g for Experienced 9i Database Administrators Course Overview The course will give experienced Oracle 9i database

More information

Oracle Exadata X7. Uwe Kirchhoff Oracle ACS - Delivery Senior Principal Service Delivery Engineer

Oracle Exadata X7. Uwe Kirchhoff Oracle ACS - Delivery Senior Principal Service Delivery Engineer Oracle Exadata X7 Uwe Kirchhoff Oracle ACS - Delivery Senior Principal Service Delivery Engineer 05.12.2017 Oracle Engineered Systems ZFS Backup Appliance Zero Data Loss Recovery Appliance Exadata Database

More information

An Oracle White Paper April A Technical Overview of the Sun Oracle Database Machine and Exadata Storage Server

An Oracle White Paper April A Technical Overview of the Sun Oracle Database Machine and Exadata Storage Server An Oracle White Paper April 2010 A Technical Overview of the Sun Oracle Database Machine and Exadata Storage Server Sun Oracle Database Machine and Exadata Storage Server... 2 Exadata Product Family...

More information

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions 1Z0-060 Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-060 Exam on Upgrade to Oracle Database 12c... 2 Oracle 1Z0-060 Certification Details:... 2

More information

Internals of Active Dataguard. Saibabu Devabhaktuni

Internals of Active Dataguard. Saibabu Devabhaktuni Internals of Active Dataguard Saibabu Devabhaktuni PayPal DB Engineering team Sehmuz Bayhan Our visionary director Saibabu Devabhaktuni Sr manager of DB engineering team http://sai-oracle.blogspot.com

More information

Segment Compression with. Oracle Database 11g. for DBAs and Developers

Segment Compression with. Oracle Database 11g. for DBAs and Developers Segment Compression with Oracle Advanced Compression in Database 11g Rel. 2: Oracle Database 11g Value/Performance for DBAs and Developers presentation for: the world's best user group... and... the world's

More information

Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours

Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours What you will learn This course advances your success as an Oracle professional in the area of database administration.

More information

An Oracle White Paper March A Technical Overview of the Oracle Exadata Database Machine and Exadata Storage Server

An Oracle White Paper March A Technical Overview of the Oracle Exadata Database Machine and Exadata Storage Server An Oracle White Paper March 2012 A Technical Overview of the Oracle Exadata Database Machine and Exadata Storage Server Introduction... 2 Exadata Product Family... 4 Exadata Database Machine... 4 Exadata

More information

<Insert Picture Here> South Fla Oracle Users Group Oracle/Sun Exadata Database Machine June 3, 2010

<Insert Picture Here> South Fla Oracle Users Group Oracle/Sun Exadata Database Machine June 3, 2010 South Fla Oracle Users Group Oracle/Sun Exadata Database Machine June 3, 2010 Safe Harbor Statement The following is intended to outline our general product direction. It is intended

More information

Oracle Advanced Compression Proof-of-Concept (POC) Insights and Best Practices

Oracle Advanced Compression Proof-of-Concept (POC) Insights and Best Practices O R A C L E A D V A N C E D C O M P R E S S I O N B E S T P R A C T I C E S Oracle Advanced Compression Proof-of-Concept (POC) Insights and Best Practices Oracle Advanced Compression FEATURES TYPICALLY

More information

Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1

Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 Duration 5 Days What you will learn Throughout the lessons of the Oracle Database 12c R2: New Features for Administrators Part 2 course

More information

Oracle Database In-Memory What s New and What s Coming

Oracle Database In-Memory What s New and What s Coming Oracle Database In-Memory What s New and What s Coming Andy Rivenes Product Manager for Database In-Memory Oracle Database Systems DOAG - May 10, 2016 #DBIM12c Safe Harbor Statement The following is intended

More information

Oracle Enterprise Data Architecture

Oracle Enterprise Data Architecture Oracle Enterprise Data Architecture Data Lifecycle O R A C L E W H I T E P A P E R J A N U A R Y 2 0 1 9 Table of Contents 0 Disclaimer 1 Introduction 2 Enterprise Data Architecture 3 Oracle Technologies

More information

Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 -

Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 - Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 - Duration: 5 Days What you will learn Throughout the lessons

More information

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

Copyright 2017, Oracle and/or its affiliates. All rights reserved. Using Oracle Columnar Technologies Across the Information Lifecycle Roger MacNicol Software Architect Data Storage Technology Safe Harbor Statement The following is intended to outline our general product

More information

Oracle Database 12c: JMS Sharded Queues

Oracle Database 12c: JMS Sharded Queues Oracle Database 12c: JMS Sharded Queues For high performance, scalable Advanced Queuing ORACLE WHITE PAPER MARCH 2015 Table of Contents Introduction 2 Architecture 3 PERFORMANCE OF AQ-JMS QUEUES 4 PERFORMANCE

More information

An Oracle White Paper November A Technical Overview of the Oracle Exadata Database Machine and Exadata Storage Server

An Oracle White Paper November A Technical Overview of the Oracle Exadata Database Machine and Exadata Storage Server An Oracle White Paper November 2012 A Technical Overview of the Oracle Exadata Database Machine and Exadata Storage Server Introduction... 2 Exadata Product Family... 4 The Exadata Engineered System...

More information

Moving Databases to Oracle Cloud: Performance Best Practices

Moving Databases to Oracle Cloud: Performance Best Practices Moving Databases to Oracle Cloud: Performance Best Practices Kurt Engeleiter Product Manager Oracle Safe Harbor Statement The following is intended to outline our general product direction. It is intended

More information

Information Lifecycle Management for Business Data. An Oracle White Paper September 2005

Information Lifecycle Management for Business Data. An Oracle White Paper September 2005 Information Lifecycle Management for Business Data An Oracle White Paper September 2005 Information Lifecycle Management for Business Data Introduction... 3 Regulatory Requirements... 3 What is ILM?...

More information

Oracle Database 11g Release 2 for SAP Advanced Compression. Christoph Kersten Oracle Database for SAP Global Technology Center (Walldorf, Germany)

Oracle Database 11g Release 2 for SAP Advanced Compression. Christoph Kersten Oracle Database for SAP Global Technology Center (Walldorf, Germany) Oracle Database 11g Release 2 for SAP Advanced Compression Christoph Kersten Oracle Database for SAP Global Technology Center (Walldorf, Germany) Implicit Compression Efficient Use

More information

Exadata Database Machine Administration Workshop

Exadata Database Machine Administration Workshop Exadata Database Machine Administration Workshop Training Calendar Date Training Time Location 11 March 2019 5 Days Bilginç IT Academy 15 April 2019 5 Days Bilginç IT Academy Training Details Training

More information

1Z Primavera P6 Enterprise Project Portfolio Management Essentials.

1Z Primavera P6 Enterprise Project Portfolio Management Essentials. Oracle 1Z0-536 Primavera P6 Enterprise Project Portfolio Management Essentials TYPE: DEMO http://www.examskey.com/1z0-536.html Examskey Oracle 1Z0-536 exam demo product is here for you to test the quality

More information

Table Compression in Oracle9i Release2. An Oracle White Paper May 2002

Table Compression in Oracle9i Release2. An Oracle White Paper May 2002 Table Compression in Oracle9i Release2 An Oracle White Paper May 2002 Table Compression in Oracle9i Release2 Executive Overview...3 Introduction...3 How It works...3 What can be compressed...4 Cost and

More information

Oracle Database 12c: New Features for Administrators Ed 2 NEW

Oracle Database 12c: New Features for Administrators Ed 2 NEW Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 12c: New Features for Administrators Ed 2 NEW Duration: 5 Days What you will learn In the Oracle Database 12c:

More information

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI)

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI) Oracle DBA (10g, 11g) Training Course Content Introduction (Database Architecture) Describe course objectives Explore the Oracle 10g database architecture Installing the Oracle Database Software Explain

More information

<Insert Picture Here> Exadata MAA Best Practices Series Session #4: Exadata and OLTP Applications

<Insert Picture Here> Exadata MAA Best Practices Series Session #4: Exadata and OLTP Applications Exadata MAA Best Practices Series Session #4: Exadata and OLTP Applications Hector Pujol Hector Pujol Consulting Member of Technical Staff, Oracle X and MAA Teams Exadata MAA Best

More information

Exadata Database Machine: 12c Administration Workshop Ed 2

Exadata Database Machine: 12c Administration Workshop Ed 2 Oracle University Contact Us: 800-260-690 Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days What you will learn This Exadata Database Machine: 12c Administration Workshop training

More information

Consolidate with Oracle Exadata

Consolidate with Oracle Exadata Consolidate with Oracle Exadata Manage Resources and Availability - CON7770 Sue K. Lee, Director of Development René Kundersma, Consulting Member of Tech. Staff Oracle Server Technologies Oct 1, 2014 Safe

More information

<Insert Picture Here> Exadata MAA Best Practices Series Session 6: Migrating to Exadata

<Insert Picture Here> Exadata MAA Best Practices Series Session 6: Migrating to Exadata Exadata MAA Best Practices Series Session 6: Migrating to Exadata Doug Utzig Doug Utzig Exadata and MAA Best Practices Exadata MAA Best Practices Series 1. E-Business Suite on Exadata

More information

Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days

Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days This Exadata Database Machine: 12c Administration Workshop introduces you to Oracle Exadata Database Machine. Explore the various

More information

Exadata Database Machine: 12c Administration Workshop Ed 2

Exadata Database Machine: 12c Administration Workshop Ed 2 Oracle University Contact Us: 00 9714 390 9050 Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days What you will learn This Exadata Database Machine: 12c Administration Workshop

More information

Exadata Database Machine Resource Management teile und herrsche!

Exadata Database Machine Resource Management teile und herrsche! Exadata Database Machine Resource Management teile und herrsche! DOAG Conference 2011 Konrad Häfeli Senior Technology Manager Trivadis AG BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR.

More information

Oracle EXAM - 1Z Oracle Exadata Database Machine Administration, Software Release 11.x Exam. Buy Full Product

Oracle EXAM - 1Z Oracle Exadata Database Machine Administration, Software Release 11.x Exam. Buy Full Product Oracle EXAM - 1Z0-027 Oracle Exadata Database Machine Administration, Software Release 11.x Exam Buy Full Product http://www.examskey.com/1z0-027.html Examskey Oracle 1Z0-027 exam demo product is here

More information

1Z Oracle Exadata X5 Administration Exam Summary Syllabus Questions

1Z Oracle Exadata X5 Administration Exam Summary Syllabus Questions 1Z0-070 Oracle Exadata X5 Administration Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-070 Exam on Oracle Exadata X5 Administration... 2 Oracle 1Z0-070 Certification Details:...

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any

More information

Oracle Database In-Memory

Oracle Database In-Memory Oracle Database In-Memory Under The Hood Andy Cleverly andy.cleverly@oracle.com Director Database Technology Oracle EMEA Technology Safe Harbor Statement The following is intended to outline our general

More information

Exadata Resource Management: Achieve Mind- blowing Performance, Consistently

Exadata Resource Management: Achieve Mind- blowing Performance, Consistently Managed Services Cloud Services Consul3ng Services Licensing Exadata Resource Management: Achieve Mind- blowing Performance, Consistently UTOUG Fall Symposium 2015 Kasey Parker Enterprise Architect Kasey.Parker@centroid.com

More information

Oracle Database 11g: New Features for Administrators Release 2

Oracle Database 11g: New Features for Administrators Release 2 Oracle University Contact Us: 0845 777 7711 Oracle Database 11g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course gives you the opportunity to learn about and

More information

Oracle Advanced Compression. An Oracle White Paper April 2008

Oracle Advanced Compression. An Oracle White Paper April 2008 Oracle Advanced Compression An Oracle White Paper April 2008 Oracle Advanced Compression Introduction... 2 Oracle Advanced Compression... 2 Compression for Relational Data... 3 Innovative Algorithm...

More information

Oracle Database In-Memory

Oracle Database In-Memory Oracle Database In-Memory A Focus On The Technology Andy Rivenes Database In-Memory Product Management Oracle Corporation Email: andy.rivenes@oracle.com Twitter: @TheInMemoryGuy Blog: blogs.oracle.com/in-memory

More information

Oracle Database 12C: Advanced Administration - 1Z0-063

Oracle Database 12C: Advanced Administration - 1Z0-063 Oracle Database 12C: Advanced Administration - 1Z0-063 Backup and Recovery Explain Oracle backup and recovery solutions o Describe types of database failures o Describe the tools available for backup and

More information

Exdata Database Machine: 12c Administration Workshop Ed 2

Exdata Database Machine: 12c Administration Workshop Ed 2 Exdata Database Machine: 12c Administration Workshop Ed 2 Duration 5 Days What you will learn This Exadata Database Machine: 12c Administration Workshop training introduces you to Oracle Exadata Database

More information

Exadata Database Machine: 12c Administration Workshop Ed 1

Exadata Database Machine: 12c Administration Workshop Ed 1 Oracle University Contact Us: 20 (0)2 35350254 Exadata Database Machine: 12c Administration Workshop Ed 1 Duration: 5 Days What you will learn This course introduces students to Oracle Exadata Database

More information

Oracle: From Client Server to the Grid and beyond

Oracle: From Client Server to the Grid and beyond Oracle: From Client Server to the Grid and beyond Graham Wood Architect, RDBMS Development Oracle Corporation Continuous Innovation Oracle 6 Oracle 5 Oracle 2 Oracle 7 Data Warehousing Optimizations Parallel

More information

ORACLE DBA TRAINING IN BANGALORE

ORACLE DBA TRAINING IN BANGALORE ORACLE DBA TRAINING IN BANGALORE TIB ACADEMY #5/3 BEML LAYOUT, VARATHUR MAIN ROAD KUNDALAHALLI GATE, BANGALORE 560066 PH: +91-9513332301/2302 WWW.TRAININGINBANGALORE.COM Oracle DBA Training Syllabus Introduction

More information

Oracle Advanced Compression Helps Global Fortune 500 Company Meet Storage Savings Initiative O R A C L E W H I T E P A P E R F E B R U A R Y

Oracle Advanced Compression Helps Global Fortune 500 Company Meet Storage Savings Initiative O R A C L E W H I T E P A P E R F E B R U A R Y Oracle Advanced Compression Helps Global Fortune 500 Company Meet Storage Savings Initiative O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 7 Table of Contents Introduction 2 Oracle Advanced Compression

More information

1Z Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions

1Z Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions 1Z0-034 Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-034 Exam on Upgrade Oracle9i/10g to Oracle Database 11g OCP... 2 Oracle 1Z0-034

More information

Exadata. Presented by: Kerry Osborne. February 23, 2012

Exadata. Presented by: Kerry Osborne. February 23, 2012 Exadata Presented by: Kerry Osborne February 23, 2012 whoami Worked with Oracle Since 1982 (V2) Working with Exadata since early 2010 Work for Enkitec (www.enkitec.com) (Enkitec owns a Half Rack V2/X2)

More information

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

Copyright 2014, Oracle and/or its affiliates. All rights reserved. 1 Oracle Database 12c Preview In-Memory Column Store (V12.1.0.2) Michael Künzner Principal Sales Consultant The following is intended to outline our general product direction. It is intended for information

More information

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda Agenda Oracle9i Warehouse Review Dulcian, Inc. Oracle9i Server OLAP Server Analytical SQL Mining ETL Infrastructure 9i Warehouse Builder Oracle 9i Server Overview E-Business Intelligence Platform 9i Server:

More information

Oracle #1 for Data Warehousing. Data Warehouses Growing Rapidly Tripling In Size Every Two Years

Oracle #1 for Data Warehousing. Data Warehouses Growing Rapidly Tripling In Size Every Two Years Extreme Performance HP Oracle Machine & Exadata Storage Server October 16, 2008 Robert Stackowiak Vice President, EPM & Data Warehousing Solutions, Oracle ESG Oracle #1 for Data Warehousing Microsoft 14.8%

More information

Should You Drop Indexes on Exadata?

Should You Drop Indexes on Exadata? Should You Drop Indexes on Session 316 Arup Nanda Longtime Oracle DBA (and now DMA) REMINDER Check in on the COLLABORATE mobile app Disclaimer If you downloaded this slide deck, please note: These slides

More information

Oracle 12C Administration Course Content:

Oracle 12C Administration Course Content: Oracle 12C Administration Course Content: Enterprise Manager and Other Tools Enterprise Manager (EM) Cloud Control home page Enterprise Manager Express home page versus Enterprise Manager Database Control

More information

Oracle Autonomous Database

Oracle Autonomous Database Oracle Autonomous Database Maria Colgan Master Product Manager Oracle Database Development August 2018 @SQLMaria #thinkautonomous Safe Harbor Statement The following is intended to outline our general

More information

Making Storage Smarter Jim Williams Martin K. Petersen

Making Storage Smarter Jim Williams Martin K. Petersen Making Storage Smarter Jim Williams Martin K. Petersen Agenda r Background r Examples r Current Work r Future 2 Definition r Storage is made smarter by exchanging information between the application and

More information