<Insert Picture Here>

Size: px
Start display at page:

Download "<Insert Picture Here>"

Transcription

1 1

2 <Insert Picture Here> Database Technologies for Archiving Kevin Jernigan, Senior Director Product Management Advanced Compression, EHCC, DBFS, SecureFiles, ILM, Database Smart Flash Cache, Total Recall, Resource Manager, Direct NFS Client, CQN, IOT, Database Performance

3 Database Technologies for Archiving: Agenda Unstructured and semi-structured data SecureFiles DBFS DBFS HSM Structured / relational data Compression Partitioning Information Lifecycle Management 3

4 Enterprise Data Audio, Video Image Data SQL Data XML Data Yearly Data Growth Data Growth Structured 15-20% Semi & Unstructured % * Gartner & IDC Estimates Documents Vector, Spatial s, IM In a typical enterprise, Structured Data is ~20% Semi & Unstructured Data represents the other 80% Data growth is happening across the board! 4

5 Managing Information Organizations need to efficiently and securely manage all data Structured Semi- Structured Unstructured XML PDF File systems: simplicity and performance for files Relational data in (Oracle) RDBMS Oracle Database supports ANSI-standard LOBs Performance is a concern for many users 5

6 Files Belong with Relational Data Many enterprise applications manipulate both files and relational data Rich user experience, compliance, business integration This split compromises security, robustness, and management Disjoint security and auditing models Changes cannot be made atomically Backup and recovery are fragmented Search across relational data and files is difficult Space management is complicated Separate interfaces and protocols Application architecture more complex Two data managers for one application is one too many! 6

7 Oracle SecureFiles Consolidated Secure Management of Data SecureFiles is designed to break the performance barrier keeping file data out of databases Introduced with Oracle Database 11g Release 1 (4.5 years ago) Similar to LOBs but much faster, and with more capabilities Transparent encryption (with Advanced Security Option) Compression, deduplication (with Advanced Compression Option) Extends the security, reliability, and scalability of database to files Superset of LOB interfaces allows easy migration from LOBs Enables consolidation of file data with associated relational data Single security model Single view of data Single management of data SecureFiles is 100% backwards compatible with ANSI SQL 92 LOB interfaces 7

8 High Performance SecureFiles Vs. BasicFiles Writes: New Space Writes: Reused Space Read Performance MB/s File Size (MB) MB/s SecureFiles File Size (MB) MB/s BasicFiles SQLPlus file test: Concurrent Reads/Writes, OCI, 4 streams Adding files using new disk space: Up to 2x faster Adding files reusing space: Up to 22x faster Reads up to 3x faster File Size (MB) 8

9 High Performance SecureFiles Vs. NFS MB/s File Read Performance File Size (KB) SecureFiles MB/s File Write Performance NFS File Size (KB) SQLPlus file test, single stream, single host Using SecureFiles is faster across the board 2x-3x faster for Queries, 6x for Inserts Tests run using both SecureFiles and NFS/ext3 in metadata journaling only (default for NFS) Filesystem-like performance 9

10 Business Files in Database Applications Database applications store business data files as LOB columns 11g SecureFiles LOBs makes files in the database as fast as files in file systems Also provides transactional consistency with database data Advanced file management capabilities Compression, Encryption, Deduplication Relational Columns ID# Name Address Contract Photo 23 Lucas.. Customers Table Files / LOBs But Database LOBs are difficult to access from file-based tools 10

11 Files in the Database Reinvented Files DB Oracle Database 11g reinvents files in the database SecureFiles provides fast and powerful file storage Removes performance barrier to storing files in the database DBFS provides simple file system interface to files stored in the database Enables existing file based tools to access database files Familiar access through pathnames, directories, links Files kept in a dedicated file store, or existing application tables Oracle Database 11gR2 Storing business data files inside the database is now simpler, faster, and more robust than storing them outside 11

12 Database-Enabling File-Based Tools DBFS allows access to files in the db using file system interfaces File operations translated into SQL operations Directories and path names are derived from key columns in tables Enables access by existing file-based tools DBFS Client Acrobat Reader Network DBFS Server in DB Path Names, Directories /.. /Customers /Contract /Lucas /Photo Customers Table SQL Access ID# Name Address Contract Photo 23 Lucas.. Select Contract from Customers where Name = Lucas 12

13 DBFS SecureFiles Store DBFS also implements stand alone file systems in the database Directory information stored in tables Files stored in SecureFiles LOBs Used for operational application files such as ETL files, reports, etc. that are not in application tables Provides unified data and file backup, DR, management DBFS Client ETL Tool Network DBFS Server in DB /.. /ETL /Monday.dat DBFS SecureFiles Store Inode# Owner File Path 3768 Lucas /ETL/Monday.dat 13

14 DBFS SecureFiles Store Capabilities Powerful Configuration Options Full data logging, or meta-data only logging Cache, or direct read from disk Partitioning Compression File level de-duplication Encryption Total Recall Retain all file versions historical query, or regulatory compliance Snapshots Can create file system snapshots at user-selected past point in time Uses Flashback Query to create snapshots Can be used to recover deleted files or old file versions 14

15 DBFS HSM Store A DBFS HSM store allows archiving files to tape Application migrates older files to HSM store (e.g. old invoices) A DBFS Link replaces the LOB, LOB reads on links are transparent A LOB can be easily migrated back to the database for updates HSM store has disk staging area for storing recently accessed files Seldom accessed files are migrated to tape, brought back on reference Order# Customer Year Invoice /HSM 1234 Lucas 2003 /Old_Invoices /Invoice_1234 Sales Table DBFS Link /HSM/Old_Invoices/Invoice_1234 HSM Disk Staging Area Size is Configurable /.. LRU Tape 15

16 DBFS Store API DBFS interface is DBFS Store API PL/SQL & SQL interface called directly by applications inside the database PL/SQL interface has all operations SQL view for read only access Same interface called remotely by clients on other hosts Strong support for storage of metadata associated with files Transactional file system operations E.g. Multiple files can be created atomically in a DB transaction DBFS Store API Create Operations Create files, directories, links Delete Operations Delete files, directories, links Get/Put Operations Read and write LOB and attributes of existing file paths Rename Operation Directory Operations List, Search Locking Operations Create Snapshot at point in time using consistent read 16

17 Building your own file system integrated with your application You can now build your own file system inside the Oracle db Create new value by creating a file system interface Database developers can now write a robust file system: No need to be a OS kernel developer or debug kernel crashes Create a file system interface to data stored in relational tables: Like a file system view for an existing database application Write a file system in Java, SQL/PL/SQL Or any other language using callouts Build your application-integrated file system in less than a day Writing a basic read only file system view on the LOBs that are currently in your database application in 60 seconds! 17

18 A file system: 100 lines of PL/SQL create table tbfst( key varchar2(256) primary key check (instr(key, '/') = 0), data blob) tablespace users lob(data) store as securefile (tablespace users); grant select on tbfst to dbfs_role; grant insert on tbfst to dbfs_role; grant delete on tbfst to dbfs_role; grant update on tbfst to dbfs_role; function list( store_name in varchar2, path in varchar2, filter in varchar2, recurse in integer, ctx in dbms_dbfs_content_context_t) return dbms_dbfs_content_list_items_t pipelined is begin for rws in (select * from sys.tbfst) loop pipe row(dbms_dbfs_content_list_item_t( '/' rws.key, rws.key, dbms_dbfs_content.type_file)); end loop; end; procedure getpath( store_name in varchar2, path in varchar2, properties in out nocopy dbms_dbfs_content_properties_t, amount in out number, offset in number, buffer out nocopy raw, prop_flags in integer, ctx in dbms_dbfs_content_context_t) is content blob; guid number; begin if (path = '/') then raise dbms_dbfs_content.unsupported_operation; end if; end; select t.data into content from sys.tbfst t where ('/' t.key) = path; select ora_hash(path) into guid from dual; dbms_lob.read(content, amount, offset, buffer); properties := dbms_dbfs_content_properties_t( dbms_dbfs_content_property_t( 'std:length', to_char(dbms_lob.getlength(content)), dbms_types.typecode_number), dbms_dbfs_content_property_t( 'std:guid', to_char(guid), dbms_types.typecode_number)); 18

19 DBFS Performance Tested a mix of file reads and file writes Scaled from 1 to 4 Oracle Database instances on an Exadata ½-rack Ran steady-state test for 12 hours Achieved sustained throughput of 10TB per hour 19

20 DBFS Performance 20

21 DBFS Performance 21

22 Rich Capabilities Inherited from DB DBFS Capability Compression, Deduplication, Encryption Crash Tolerance Mirroring, Striping, Online Add Storage Disaster Recovery, Readable Remote Mirror Consistent Backup Multi-Node Scalability, Transparent Failover Impromptu Snapshots Restore to Point in Time Retention / Compliance Network Security Provided By SecureFiles Atomic transactions, Logging ASM Data Guard RMAN, Hot backup RAC Consistent Read Flashback, Media Recovery Total Recall SSL 22

23 Enterprise Data Audio, Video Image Data SQL Data XML Data Yearly Data Growth Data Growth Structured 15-20% Semi & Unstructured % * Gartner & IDC Estimates Documents Vector, Spatial s, IM In a typical enterprise, Structured Data is ~20% Semi & Unstructured Data represents the other 80% Data growth is happening across the board! 23

24 Information Lifecycle Management Partitioning and online archival Keep as much data as possible available online and store the data in the most appropriate manner Find the balance between data importance, storage performance, storage reliability, and storage form Data storage cost is driven by two factors Cost of storage Storage footprint of data on disk Key enabling technologies Partitioning Compression 24

25 Information Lifecycle Management Online data lifecycle without ILM Data Lifecycle Active Active Less Active Less Historical Active Data Lifecycle Archive Archive High Performance Storage Tier Offline Archive 25

26 Information Lifecycle Management Matching online data life-cycle to storage Data Lifecycle Active Active Less Active Less Historical Active Data Lifecycle Archive Archive High Performance Storage Tier Low Cost Storage Tier Online Archive Storage Tier Offline Archive 26

27 Information Lifecycle Management Matching online data life-cycle to storage Data Lifecycle Hyper Active Active Active Less Historical Active Data Lifecycle Archive Less Active Historical Archive SSD/Flash Storage Tier High Performance Storage Tier Low Cost Storage Tier Online Archive Storage Tier Offline Archive 27

28 Oracle s ILM Solution Step 1 Partition tables into smaller chunks Increases performance Queries execute faster against smaller partitions DBA operations like data loads, backup, recovery etc, also benefit Increases availability 24*7 access to critical data Enables simpler management Divides large tables into smaller, more manageable chunks Enables storage cost optimization Individual partitions can be assigned to specific storage areas Reduces the cost of retaining data Transparent to applications applications are unchanged Partitioning Option Oracle Database Enterprise Edition Active Less Active Historical 28

29 Oracle s ILM Solution Step 2 Compress data to maximize storage usage Compress Large Application Tables OLTP and DW Compress All Data Types Structured and unstructured data types Compress Backup Data Faster RMAN compression Data Pump compression Typical Compression of 2-4X Cascade storage savings throughout data center Partitioning Option Advanced Compression Oracle Database Enterprise Edition Active Up to 4X compression Less Active Historical Transparent to applications Applications are unchanged 29

30 Oracle s ILM Solution for Exadata/DB Machine Step 2 Compress data to maximize storage usage Data stored by column and then compressed Useful for data that is bulk loaded or moved Query mode for data warehousing Partitioning Option Advanced Compression Exadata HCC Oracle Database Enterprise Edition Typical 10X compression ratios Scans improve accordingly 50X Up To Archival mode for old data Typical 15-50X compression ratios Transparent to applications Applications are unchanged Hyper Active To10X Up Compression Active Less Active Compression Historical Choice of SATA or SAS drives 30

31 Oracle s ILM Solution Step 3 - Less storage and better performance Partitioning & Compression 10 TB of user data Requires 10 TB of IO 4 TB with compression 400 GB with partition pruning Improved query response times 31

32 Oracle s ILM Solution for Exadata/DB Machine Step 3 - Less storage and better performance Partitioning & Exadata HCC 10 TB of user data Requires 10 TB of IO 20 GB with Storage Indexes 1 TB with compression 5 GB with Smart Scans 100 GB with partition pruning Sub-second Response times 32

33 Oracle s ILM solution Step 4 - Delivers significant cost savings Storage Tier Single Tier Multiple Tiers Multiple Tiers compressed HP Exadata HC High Performance (3TB) $216,000 High Performance (200 GB) $14,400 $14,400 $10,400 $3,000 Low Cost (800 GB) $11,200 $4,480 $4,160 $1,200 Online Archive (2000 GB) $14,000 $5,600 $6,900 $2,000 4X 9X 10X 34X Total $216,000 $39,600 $24,480 $21,460 $6,200 Appropriate usage of storage tiers significantly reduces total cost of ownership Compression reduces TCO even more Transparent to applications 33

34 Oracle s ILM Solution Step 5 Security and Compliance Monitor database activity Transparently track data changes Ensure efficient, tamper-resistant storage of archives Real-time access to historical data Enforce access control Limit powers of privileged users enforce separation of duties Enforce who, where, when, and how using rules and factors Protect application data by preventing application by-pass Encrypt and mask sensitive data Remove sensitive data from non-production databases Sensitive data never leaves the database Advanced Security Partitioning Advanced Option Compression Exadata HCC Oracle Database Enterprise Edition Active Less Active Historical 34

35 Oracle s ILM Solution Key Benefits ILM is a Data Management strategy designed to: Reduce Cost of Retaining Data Comply with Legal, Regulatory, and Business Mandates Available for any database from 9i ILM is a set of policies and techniques for managing data Managing data is Oracle s core competency Some new technologies, but mostly an application of existing data management capabilities Keeping data in the database preserves security and auditing models archiving data doesn t 35 35

36 Random Points DBFS HSM uses tar to store files on tape or cloud QFS is certified for Oracle Database, including RAC RAC==Real Application Clusters, which means QFS can be used as a clustered / shared file system Oracle Database does block-level checksums and other corruption prevention and detection 36

37 37

Program Agenda. Safe Harbor Statement. What are SecureFiles? Performance. Features DBFS. Internals. Wrap Up 11/22/2014

Program Agenda. Safe Harbor Statement. What are SecureFiles? Performance. Features DBFS. Internals. Wrap Up 11/22/2014 11/22/2014 LOB Internals and Best Practices Andy Rivenes, Product Manager Mike Gleeson, Database Development Oracle Database Development November 19, 2014 Copyright 2014, Oracle and/or its affiliates.

More information

<Insert Picture Here> Oracle Database Directions Fred Louis Principal Sales Consultant Ohio Valley Region

<Insert Picture Here> Oracle Database Directions Fred Louis Principal Sales Consultant Ohio Valley Region Oracle Database Directions Fred Louis Principal Sales Consultant Ohio Valley Region 1977 Oracle Database 30 Years of Sustained Innovation Database Vault Transparent Data Encryption

More information

2009 Oracle Corporation 1

2009 Oracle Corporation 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 material,

More information

Boost Your Database Performance 10x with Oracle SecureFiles

Boost Your Database Performance 10x with Oracle SecureFiles Boost Your Database Performance 10x with Oracle SecureFiles Ravi Rajamani Senior Product Manager Oracle Amit Ganesh Senior Director Oracle Aris Prassinos Distinguished Member of Technical Staff Motorola

More information

Inge Os Sales Consulting Manager Oracle Norway

Inge Os Sales Consulting Manager Oracle Norway Inge Os Sales Consulting Manager Oracle Norway Agenda Oracle Fusion Middelware Oracle Database 11GR2 Oracle Database Machine Oracle & Sun Agenda Oracle Fusion Middelware Oracle Database 11GR2 Oracle Database

More information

Oracle Database 12c Plug In. Switch On. Get SMART.

Oracle Database 12c Plug In. Switch On. Get SMART. Oracle Database 12c Plug In. Switch On. Get SMART. Duncan Harvey Head of Core Technology, Oracle EMEA March 2015 Safe Harbor Statement The following is intended to outline our general product direction.

More information

Automatic Data Optimization

Automatic Data Optimization Automatic Data Optimization Saving Space and Improving Performance! Erik Benner, Enterprise Architect 1 Who am I? Erik Benner @erik_benner TalesFromTheDatacenter.com Enterprise Architect Ebenner@mythics.com

More information

Oracle Database 11g: New Features for Administrators DBA Release 2

Oracle Database 11g: New Features for Administrators DBA Release 2 Oracle Database 11g: New Features for Administrators DBA Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: New Features for Administrators DBA Release 2 training explores new change

More information

An Oracle White Paper January 2012. Advanced Compression with Oracle Database 11g

An Oracle White Paper January 2012. Advanced Compression with Oracle Database 11g An Oracle White Paper January 2012 Advanced Compression with Oracle Database 11g Oracle White Paper Advanced Compression with Oracle Database 11g Introduction... 3 Oracle Advanced Compression... 4 Compression

More information

Safe Harbor Statement

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

More information

Oracle Total Recall with Oracle Database 11g Release 2

Oracle Total Recall with Oracle Database 11g Release 2 An Oracle White Paper September 2009 Oracle Total Recall with Oracle Database 11g Release 2 Introduction: Total Recall = Total History... 1 Managing Historical Data: Current Approaches... 2 Application

More information

Oracle Database In-Memory The Next Big Thing

Oracle Database In-Memory The Next Big Thing Oracle Database In-Memory The Next Big Thing Maria Colgan Master Product Manager #DBIM12c Why is Oracle do this Oracle Database In-Memory Goals Real Time Analytics Accelerate Mixed Workload OLTP No Changes

More information

Oracle Database 11g: New Features for Administrators

Oracle Database 11g: New Features for Administrators Oracle University Entre em contato: 0800 891 6502 Oracle Database 11g: New Features for Administrators Duração: 5 Dias Objetivos do Curso This course gives students the opportunity to learn about-and practice

More information

Preview of Oracle Database 12c In-Memory Option. Copyright 2013, Oracle and/or its affiliates. All rights reserved.

Preview of Oracle Database 12c In-Memory Option. Copyright 2013, Oracle and/or its affiliates. All rights reserved. Preview of Oracle Database 12c In-Memory Option 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

More information

<Insert Picture Here> Refreshing Your Data Protection Environment with Next-Generation Architectures

<Insert Picture Here> Refreshing Your Data Protection Environment with Next-Generation Architectures 1 Refreshing Your Data Protection Environment with Next-Generation Architectures Dale Rhine, Principal Sales Consultant Kelly Boeckman, Product Marketing Analyst Program Agenda Storage

More information

Oracle Database 11g Comparison Chart

Oracle Database 11g Comparison Chart Key Feature Summary Express 10g Standard One Standard Enterprise Maximum 1 CPU 2 Sockets 4 Sockets No Limit RAM 1GB OS Max OS Max OS Max Database Size 4GB No Limit No Limit No Limit Windows Linux Unix

More information

Oracle Recovery Manager

Oracle Recovery Manager 1 sur 6 05/08/2014 14:17 ORACLE.COM TECHNOLOGY NETWORK PARTNERS STORE SUPPORT (Sign In / Register for a free DownloadsDocumentation Discussion Forums Articles Sample Code Training RSS Resources For PRODUCT

More information

Oracle Database - Engineered for Innovation. Sedat Zencirci Teknoloji Satış Danışmanlığı Direktörü Türkiye ve Orta Asya

Oracle Database - Engineered for Innovation. Sedat Zencirci Teknoloji Satış Danışmanlığı Direktörü Türkiye ve Orta Asya Oracle Database - Engineered for Innovation Sedat Zencirci Teknoloji Satış Danışmanlığı Direktörü Türkiye ve Orta Asya Oracle Database 11g Release 2 Shipping since September 2009 11.2.0.3 Patch Set now

More information

Oracle Architecture, Concepts & Facilities

Oracle Architecture, Concepts & Facilities COURSE CODE: COURSE TITLE: CURRENCY: AUDIENCE: ORAACF Oracle Architecture, Concepts & Facilities 10g & 11g Database administrators, system administrators and developers PREREQUISITES: At least 1 year of

More information

Oracle Exadata: The World s Fastest Database Machine Exadata Database Machine Architecture

Oracle Exadata: The World s Fastest Database Machine Exadata Database Machine Architecture Oracle Exadata: The World s Fastest Database Machine Exadata Database Machine Architecture Ron Weiss, Exadata Product Management Exadata Database Machine Best Platform to Run the

More information

Configuring Apache Derby for Performance and Durability Olav Sandstå

Configuring Apache Derby for Performance and Durability Olav Sandstå Configuring Apache Derby for Performance and Durability Olav Sandstå Database Technology Group Sun Microsystems Trondheim, Norway Overview Background > Transactions, Failure Classes, Derby Architecture

More information

Oracle 11g New Features - OCP Upgrade Exam

Oracle 11g New Features - OCP Upgrade Exam Oracle 11g New Features - OCP Upgrade Exam This course gives you the opportunity to learn about and practice with the new change management features and other key enhancements in Oracle Database 11g Release

More information

Oracle Maximum Availability Architecture with Exadata Database Machine. Morana Kobal Butković Principal Sales Consultant Oracle Hrvatska

Oracle Maximum Availability Architecture with Exadata Database Machine. Morana Kobal Butković Principal Sales Consultant Oracle Hrvatska Oracle Maximum Availability Architecture with Exadata Database Machine Morana Kobal Butković Principal Sales Consultant Oracle Hrvatska MAA is Oracle s Availability Blueprint Oracle s MAA is a best practices

More information

Oracle Database 10g: New Features for Administrators

Oracle Database 10g: New Features for Administrators Oracle Database 10g: New Features for Administrators Course ON10G 5 Day(s) 30:00 Hours Introduction This course introduces students to the new features in Oracle Database 10g Release 2 - the database for

More information

<Insert Picture Here> Oracle Cloud Storage. Morana Kobal Butković Principal Sales Consultant Oracle Hrvatska

<Insert Picture Here> Oracle Cloud Storage. Morana Kobal Butković Principal Sales Consultant Oracle Hrvatska Oracle Cloud Storage Morana Kobal Butković Principal Sales Consultant Oracle Hrvatska Oracle Cloud Storage Automatic Storage Management (ASM) Oracle Cloud File System ASM Dynamic

More information

Oracle Database 11g R1 & R2: New Features for Administrators

Oracle Database 11g R1 & R2: New Features for Administrators Oracle Database 11g R1 & R2: New Features for Administrators Summary This Oracle 11g course will assist experienced Oracle database administrators to quickly learn the new features and concepts associated

More information

ORACLE DATABASE HIGH AVAILABILITY STRATEGY, ARCHITECTURE AND SOLUTIONS

ORACLE DATABASE HIGH AVAILABILITY STRATEGY, ARCHITECTURE AND SOLUTIONS ORACLE DATABASE HIGH AVAILABILITY STRATEGY, ARCHITECTURE AND SOLUTIONS DOAG Nuremberg - 17/09/2013 Kirill Loifman Oracle Certified Professional DBA www: dadbm.com Twitter: @loifmkir ELEMENTS OF HIGH AVAILABILITY

More information

OLTP Meets Bigdata, Challenges, Options, and Future Saibabu Devabhaktuni

OLTP Meets Bigdata, Challenges, Options, and Future Saibabu Devabhaktuni OLTP Meets Bigdata, Challenges, Options, and Future Saibabu Devabhaktuni Agenda Database trends for the past 10 years Era of Big Data and Cloud Challenges and Options Upcoming database trends Q&A Scope

More information

IBM Tivoli Storage Manager Version 7.1.4. Introduction to Data Protection Solutions IBM

IBM Tivoli Storage Manager Version 7.1.4. Introduction to Data Protection Solutions IBM IBM Tivoli Storage Manager Version 7.1.4 Introduction to Data Protection Solutions IBM IBM Tivoli Storage Manager Version 7.1.4 Introduction to Data Protection Solutions IBM Note: Before you use this

More information

Overview: X5 Generation Database Machines

Overview: X5 Generation Database Machines Overview: X5 Generation Database Machines Spend Less by Doing More Spend Less by Paying Less Rob Kolb Exadata X5-2 Exadata X4-8 SuperCluster T5-8 SuperCluster M6-32 Big Memory Machine Oracle Exadata Database

More information

Oracle Database 12c. Peter Schmidt Systemberater Oracle Deutschland BV & CO KG

Oracle Database 12c. Peter Schmidt Systemberater Oracle Deutschland BV & CO KG Oracle Database 12c Peter Schmidt Systemberater Oracle Deutschland BV & CO KG Uptake of Oracle Database 12c compared with 11g 18,00% 16,00% 14,00% 12,00% 10,00% 8,00% 12.1 11.1 6,00% 4,00% 2,00% 0,00%

More information

SUN ORACLE DATABASE MACHINE

SUN ORACLE DATABASE MACHINE SUN ORACLE DATABASE MACHINE FEATURES AND FACTS FEATURES From 2 to 8 database servers From 3 to 14 Sun Oracle Exadata Storage Servers Up to 5.3 TB of Exadata QDR (40 Gb/second) InfiniBand Switches Uncompressed

More information

An Oracle White Paper May 2011. Exadata Smart Flash Cache and the Oracle Exadata Database Machine

An Oracle White Paper May 2011. Exadata Smart Flash Cache and the Oracle Exadata Database Machine An Oracle White Paper May 2011 Exadata Smart Flash Cache and the Oracle Exadata Database Machine Exadata Smart Flash Cache... 2 Oracle Database 11g: The First Flash Optimized Database... 2 Exadata Smart

More information

An Oracle White Paper July 2014. Oracle ACFS

An Oracle White Paper July 2014. Oracle ACFS An Oracle White Paper July 2014 Oracle ACFS 1 Executive Overview As storage requirements double every 18 months, Oracle customers continue to deal with complex storage management challenges in their data

More information

Oracle Database Backups and Disaster Recovery @ Autodesk

Oracle Database Backups and Disaster Recovery @ Autodesk Oracle Database Backups and Disaster Recovery @ Autodesk Alan Williams Database Design Engineer Who We Are Autodesk software, suites, and cloud technology help customers design, visualize, and simulate

More information

Applying traditional DBA skills to Oracle Exadata. Marc Fielding March 2013

Applying traditional DBA skills to Oracle Exadata. Marc Fielding March 2013 Applying traditional DBA skills to Oracle Exadata Marc Fielding March 2013 About Me Senior Consultant with Pythian s Advanced Technology Group 12+ years Oracle production systems experience starting with

More information

<Insert Picture Here> Oracle Database Security Overview

<Insert Picture Here> Oracle Database Security Overview Oracle Database Security Overview Tammy Bednar Sr. Principal Product Manager tammy.bednar@oracle.com Data Security Challenges What to secure? Sensitive Data: Confidential, PII, regulatory

More information

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - New Features for Administrators Release 2. 5 Jours [35 Heures]

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - New Features for Administrators Release 2. 5 Jours [35 Heures] Objectif Install Oracle Grid Infrastructure Install Oracle Database 11g Release 2 Use Oracle Restart to manage components Use Automatic Storage Management (ASM) enhancements Implement table compression

More information

Direct NFS - Design considerations for next-gen NAS appliances optimized for database workloads Akshay Shah Gurmeet Goindi Oracle

Direct NFS - Design considerations for next-gen NAS appliances optimized for database workloads Akshay Shah Gurmeet Goindi Oracle Direct NFS - Design considerations for next-gen NAS appliances optimized for database workloads Akshay Shah Gurmeet Goindi Oracle Agenda Introduction Database Architecture Direct NFS Client NFS Server

More information

EMC DATA DOMAIN OPERATING SYSTEM

EMC DATA DOMAIN OPERATING SYSTEM ESSENTIALS HIGH-SPEED, SCALABLE DEDUPLICATION Up to 58.7 TB/hr performance Reduces protection storage requirements by 10 to 30x CPU-centric scalability DATA INVULNERABILITY ARCHITECTURE Inline write/read

More information

How To Use Exadata

How To Use Exadata Exadata V2 - Oracle Exadata Database Machine Robert Pastijn Platform Technology Services (PTS) Product Development 2010 Oracle Corporation Exadata V2 Goals Ideal Database Platform

More information

Oracle Database Public Cloud Services

Oracle Database Public Cloud Services Oracle Database Public Cloud Services A Strategy and Technology Overview Bob Zeolla Principal Sales Consultant Oracle Education & Research November 23, 2015 Safe Harbor Statement The following is intended

More information

How to Migrate your Database to Oracle Exadata. Noam Cohen, Oracle DB Consultant, E&M Computing

How to Migrate your Database to Oracle Exadata. Noam Cohen, Oracle DB Consultant, E&M Computing How to Migrate your Database to Oracle Exadata Noam Cohen, Oracle DB Consultant, E&M Computing Who am I Working with Oracle Since 2000 Versions 8.0 11g Consulting on all areas from Infrastructure to Application

More information

FIFTH EDITION. Oracle Essentials. Rick Greenwald, Robert Stackowiak, and. Jonathan Stern O'REILLY" Tokyo. Koln Sebastopol. Cambridge Farnham.

FIFTH EDITION. Oracle Essentials. Rick Greenwald, Robert Stackowiak, and. Jonathan Stern O'REILLY Tokyo. Koln Sebastopol. Cambridge Farnham. FIFTH EDITION Oracle Essentials Rick Greenwald, Robert Stackowiak, and Jonathan Stern O'REILLY" Beijing Cambridge Farnham Koln Sebastopol Tokyo _ Table of Contents Preface xiii 1. Introducing Oracle 1

More information

SUN ORACLE DATABASE MACHINE

SUN ORACLE DATABASE MACHINE SUN ORACLE DATABASE MACHINE FEATURES AND FACTS FEATURES From 1 to 8 database servers From 1 to 14 Sun Oracle Exadata Storage Servers Each Exadata Storage Server includes 384 GB of Exadata Smart Flash Cache

More information

Oracle Database Cloud Exadata Service

Oracle Database Cloud Exadata Service Oracle Database Cloud Exadata Service Exadata Performance, Cloud Simplicity The Oracle Database Cloud - Exadata Service (Exadata Service) delivers the world s best Cloud Database Platform by combining

More information

Oracle Database 10g: Backup and Recovery 1-2

Oracle Database 10g: Backup and Recovery 1-2 Oracle Database 10g: Backup and Recovery 1-2 Oracle Database 10g: Backup and Recovery 1-3 What Is Backup and Recovery? The phrase backup and recovery refers to the strategies and techniques that are employed

More information

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

1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Public Information 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Public Information The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Using HP StoreOnce Backup systems for Oracle database backups

Using HP StoreOnce Backup systems for Oracle database backups Technical white paper Using HP StoreOnce Backup systems for Oracle database backups Table of contents Introduction 2 Technology overview 2 HP StoreOnce Backup systems key features and benefits 2 HP StoreOnce

More information

Oracle Exadata Database Machine for SAP Systems - Innovation Provided by SAP and Oracle for Joint Customers

Oracle Exadata Database Machine for SAP Systems - Innovation Provided by SAP and Oracle for Joint Customers Oracle Exadata Database Machine for SAP Systems - Innovation Provided by SAP and Oracle for Joint Customers Masood Ahmed EMEA Infrastructure Solutions Oracle/SAP Relationship Overview First SAP R/3 release

More information

EMC DATA DOMAIN OPERATING SYSTEM

EMC DATA DOMAIN OPERATING SYSTEM EMC DATA DOMAIN OPERATING SYSTEM Powering EMC Protection Storage ESSENTIALS High-Speed, Scalable Deduplication Up to 58.7 TB/hr performance Reduces requirements for backup storage by 10 to 30x and archive

More information

Database Decisions: Performance, manageability and availability considerations in choosing a database

Database Decisions: Performance, manageability and availability considerations in choosing a database Database Decisions: Performance, manageability and availability considerations in choosing a database Reviewing offerings from Oracle, IBM and Microsoft 2012 Oracle and TechTarget Table of Contents Defining

More information

EaseTag Cloud Storage Solution

EaseTag Cloud Storage Solution EaseTag Cloud Storage Solution The Challenge For most companies, data especially unstructured data, continues to grow by 50 percent annually. The impact of spending more every year on storage, and on protecting

More information

An Oracle White Paper April 2010. 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 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

Who am I? Copyright 2014, Oracle and/or its affiliates. All rights reserved. 3

Who am I? Copyright 2014, Oracle and/or its affiliates. All rights reserved. 3 Oracle Database In-Memory Power the Real-Time Enterprise Saurabh K. Gupta Principal Technologist, Database Product Management Who am I? Principal Technologist, Database Product Management at Oracle Author

More information

(Scale Out NAS System)

(Scale Out NAS System) For Unlimited Capacity & Performance Clustered NAS System (Scale Out NAS System) Copyright 2010 by Netclips, Ltd. All rights reserved -0- 1 2 3 4 5 NAS Storage Trend Scale-Out NAS Solution Scaleway Advantages

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Oracle Database Security Advanced Security Option Thanos Terentes Printzios DB & Options Specialist A&C Technology Adoption Office Oracle Partner Business Development, ECEMEA 2 What is a customers INFORMATION

More information

Exadata Database Machine

Exadata Database Machine Database Machine Extreme Extraordinary Exciting By Craig Moir of MyDBA March 2011 Exadata & Exalogic What is it? It is Hardware and Software engineered to work together It is Extreme Performance Application-to-Disk

More information

Exadata Database Machine Administration Workshop NEW

Exadata Database Machine Administration Workshop NEW Exadata Database Machine Administration Workshop NEW Duration: 4 Days What you will learn This course introduces students to Oracle Exadata Database Machine. Students learn about the various Exadata Database

More information

Introduction to Database as a Service

Introduction to Database as a Service Introduction to Database as a Service Exadata Platform Revised 8/1/13 Database as a Service (DBaaS) Starts With The Business Needs Establish an IT delivery model that reduces costs, meets demand, and fulfills

More information

Microsoft SQL Server for Oracle DBAs Course 40045; 4 Days, Instructor-led

Microsoft SQL Server for Oracle DBAs Course 40045; 4 Days, Instructor-led Microsoft SQL Server for Oracle DBAs Course 40045; 4 Days, Instructor-led Course Description This four-day instructor-led course provides students with the knowledge and skills to capitalize on their skills

More information

An Oracle White Paper November 2012. Hybrid Columnar Compression (HCC) on Exadata

An Oracle White Paper November 2012. Hybrid Columnar Compression (HCC) on Exadata An Oracle White Paper November 2012 Hybrid Columnar Compression (HCC) on Exadata Introduction... 3 Hybrid Columnar Compression: Technology Overview... 4 Warehouse Compression... 5 Archive Compression...

More information

<Insert Picture Here> RMAN Configuration and Performance Tuning Best Practices

<Insert Picture Here> RMAN Configuration and Performance Tuning Best Practices 1 RMAN Configuration and Performance Tuning Best Practices Timothy Chien Principal Product Manager Oracle Database High Availability Timothy.Chien@oracle.com Agenda Recovery Manager

More information

Cost Effective Data Management for Oracle Utilities Applications

Cost Effective Data Management for Oracle Utilities Applications Cost Effective Data Management for Oracle Utilities Applications Anthony Shorten Principal Product Manager Oracle Utilities Global Business Unit Sept, 2014 Safe Harbor Statement The following is intended

More information

Module 14: Scalability and High Availability

Module 14: Scalability and High Availability Module 14: Scalability and High Availability Overview Key high availability features available in Oracle and SQL Server Key scalability features available in Oracle and SQL Server High Availability High

More information

Agenda. Sedat Zencirci Technology Sales Consultancy Manager. Oracle Technology Stack. Business Requirements and Oracle offerings

Agenda. Sedat Zencirci Technology Sales Consultancy Manager. Oracle Technology Stack. Business Requirements and Oracle offerings Sedat Zencirci Technology Sales Consultancy Manager Agenda Oracle Technology Stack Oracle Database Oracle Fusion MiddleWare Oracle Applications Business Requirements and Oracle offerings High Availability

More information

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

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights Deduplication & Compression Options for Oracle Database Backups Donna Cooksey, Sridhar Ranganathan High Availability Product Management 2 Copyright

More information

W I S E. SQL Server 2008/2008 R2 Advanced DBA Performance & WISE LTD.

W I S E. SQL Server 2008/2008 R2 Advanced DBA Performance & WISE LTD. SQL Server 2008/2008 R2 Advanced DBA Performance & Tuning COURSE CODE: COURSE TITLE: AUDIENCE: SQSDPT SQL Server 2008/2008 R2 Advanced DBA Performance & Tuning SQL Server DBAs, capacity planners and system

More information

Oracle Database In-Memory A Practical Solution

Oracle Database In-Memory A Practical Solution Oracle Database In-Memory A Practical Solution Sreekanth Chintala Oracle Enterprise Architect Dan Huls Sr. Technical Director, AT&T WiFi CON3087 Moscone South 307 Safe Harbor Statement The following is

More information

SQL Server 2014. What s New? Christopher Speer. Technology Solution Specialist (SQL Server, BizTalk Server, Power BI, Azure) v-cspeer@microsoft.

SQL Server 2014. What s New? Christopher Speer. Technology Solution Specialist (SQL Server, BizTalk Server, Power BI, Azure) v-cspeer@microsoft. SQL Server 2014 What s New? Christopher Speer Technology Solution Specialist (SQL Server, BizTalk Server, Power BI, Azure) v-cspeer@microsoft.com The evolution of the Microsoft data platform What s New

More information

EMC Data Domain Boost for Oracle Recovery Manager (RMAN)

EMC Data Domain Boost for Oracle Recovery Manager (RMAN) White Paper EMC Data Domain Boost for Oracle Recovery Manager (RMAN) Abstract EMC delivers Database Administrators (DBAs) complete control of Oracle backup, recovery, and offsite disaster recovery with

More information

Oracle Database 12c: New Features for Administrators

Oracle Database 12c: New Features for Administrators Oracle University Contact Us: 67 52 67 24 Oracle Database 12c: New Features for Administrators Duration: 5 Days What you will learn In the Oracle Database 12c: New Features for Administrators course, you

More information

Vodacom Managed Hosted Backups

Vodacom Managed Hosted Backups Vodacom Managed Hosted Backups Robust Data Protection for your Business Critical Data Enterprise class Backup and Recovery and Data Management on Diverse Platforms Vodacom s Managed Hosted Backup offers

More information

How To Build An Exadata Database Machine X2-8 Full Rack For A Large Database Server

How To Build An Exadata Database Machine X2-8 Full Rack For A Large Database Server Oracle Exadata Database Machine Overview Exadata Database Machine Best Platform to Run the Oracle Database Best Machine for Data Warehousing Best Machine for OLTP Best Machine for

More information

ORACLE DATABASE 12c FOR SAP: ROADMAP, BASE CERTIFICATION FEATURES AND OPTIONS

ORACLE DATABASE 12c FOR SAP: ROADMAP, BASE CERTIFICATION FEATURES AND OPTIONS Oracle Database 12c for SAP: Roadmap, Base Certification Features and Options 1 ORACLE DATABASE 12c FOR SAP: ROADMAP, BASE CERTIFICATION FEATURES AND OPTIONS The Future of the Database Has Begun In June

More information

Big + Fast + Safe + Simple = Lowest Technical Risk

Big + Fast + Safe + Simple = Lowest Technical Risk Big + Fast + Safe + Simple = Lowest Technical Risk The Synergy of Greenplum and Isilon Architecture in HP Environments Steffen Thuemmel (Isilon) Andreas Scherbaum (Greenplum) 1 Our problem 2 What is Big

More information

Best Practices. Using IBM InfoSphere Optim High Performance Unload as part of a Recovery Strategy. IBM Smart Analytics System

Best Practices. Using IBM InfoSphere Optim High Performance Unload as part of a Recovery Strategy. IBM Smart Analytics System IBM Smart Analytics System Best Practices Using IBM InfoSphere Optim High Performance Unload as part of a Recovery Strategy Garrett Fitzsimons IBM Data Warehouse Best Practices Specialist Konrad Emanowicz

More information

<Insert Picture Here> Oracle Exadata Database Machine Overview

<Insert Picture Here> Oracle Exadata Database Machine Overview Oracle Exadata Database Machine Overview Exadata Database Machine Best Platform to Run the Oracle Database Best Machine for Data Warehousing Best Machine for OLTP Best Machine for

More information

Analyzing Big Data with Splunk A Cost Effective Storage Architecture and Solution

Analyzing Big Data with Splunk A Cost Effective Storage Architecture and Solution Analyzing Big Data with Splunk A Cost Effective Storage Architecture and Solution Jonathan Halstuch, COO, RackTop Systems JHalstuch@racktopsystems.com Big Data Invasion We hear so much on Big Data and

More information

SUN ORACLE EXADATA STORAGE SERVER

SUN ORACLE EXADATA STORAGE SERVER SUN ORACLE EXADATA STORAGE SERVER KEY FEATURES AND BENEFITS FEATURES 12 x 3.5 inch SAS or SATA disks 384 GB of Exadata Smart Flash Cache 2 Intel 2.53 Ghz quad-core processors 24 GB memory Dual InfiniBand

More information

Long term retention and archiving the challenges and the solution

Long term retention and archiving the challenges and the solution Long term retention and archiving the challenges and the solution NAME: Yoel Ben-Ari TITLE: VP Business Development, GH Israel 1 Archive Before Backup EMC recommended practice 2 1 Backup/recovery process

More information

Oracle Recovery Manager 10g. An Oracle White Paper November 2003

Oracle Recovery Manager 10g. An Oracle White Paper November 2003 Oracle Recovery Manager 10g An Oracle White Paper November 2003 Oracle Recovery Manager 10g EXECUTIVE OVERVIEW A backup of the database may be the only means you have to protect the Oracle database from

More information

D12CBR Oracle Database 12c: Backup and Recovery Workshop NEW

D12CBR Oracle Database 12c: Backup and Recovery Workshop NEW D12CBR Oracle Database 12c: Backup and Recovery Workshop NEW What you will learn This Oracle Database 12c: Backup and Recovery Workshop will teach you how to evaluate your own recovery requirements. You'll

More information

Oracle Database 11g: SecureFiles. An Oracle White Paper November 2009

Oracle Database 11g: SecureFiles. An Oracle White Paper November 2009 Oracle Database 11g: SecureFiles An Oracle White Paper November 2009 SecureFiles INTRODUCTION The nature of critical business information is changing rapidly and is no longer limited to structured text

More information

An Oracle White Paper July 2012. Expanding the Storage Capabilities of the Oracle Database Appliance

An Oracle White Paper July 2012. Expanding the Storage Capabilities of the Oracle Database Appliance An Oracle White Paper July 2012 Expanding the Storage Capabilities of the Oracle Database Appliance Executive Overview... 2 Introduction... 2 Storage... 3 Networking... 4 Determining the best Network Port

More information

Oracle Content Management and Archiving

Oracle Content Management and Archiving 1 Oracle Content Management and Archiving Donna Harland Principal Product Manager SAM QFS and Archiving Solutions Agenda Archive and Tiered Storage Value What is Oracle Content Management?

More information

Oracle DBA Course Contents

Oracle DBA Course Contents Oracle DBA Course Contents Overview of Oracle DBA tasks: Oracle as a flexible, complex & robust RDBMS The evolution of hardware and the relation to Oracle Different DBA job roles(vp of DBA, developer DBA,production

More information

Oracle 11g Database Administration

Oracle 11g Database Administration Oracle 11g Database Administration Part 1: Oracle 11g Administration Workshop I A. Exploring the Oracle Database Architecture 1. Oracle Database Architecture Overview 2. Interacting with an Oracle Database

More information

Backup and Recovery Solutions for Exadata. Cor Beumer Storage Sales Specialist Oracle Nederland

Backup and Recovery Solutions for Exadata. Cor Beumer Storage Sales Specialist Oracle Nederland Backup and Recovery Solutions for Exadata Cor Beumer Storage Sales Specialist Oracle Nederland Recovery Point and Recovery Time Wks Days Hrs Mins Secs Secs Mins Hrs Days Wks Data Loss (Recovery Point Objective)

More information

ORACLE DATABASE 10G ENTERPRISE EDITION

ORACLE DATABASE 10G ENTERPRISE EDITION ORACLE DATABASE 10G ENTERPRISE EDITION OVERVIEW Oracle Database 10g Enterprise Edition is ideal for enterprises that ENTERPRISE EDITION For enterprises of any size For databases up to 8 Exabytes in size.

More information

Backup and Recovery 1

Backup and Recovery 1 Backup and Recovery What is a Backup? Backup is an additional copy of data that can be used for restore and recovery purposes. The Backup copy is used when the primary copy is lost or corrupted. This Backup

More information

BlueArc unified network storage systems 7th TF-Storage Meeting. Scale Bigger, Store Smarter, Accelerate Everything

BlueArc unified network storage systems 7th TF-Storage Meeting. Scale Bigger, Store Smarter, Accelerate Everything BlueArc unified network storage systems 7th TF-Storage Meeting Scale Bigger, Store Smarter, Accelerate Everything BlueArc s Heritage Private Company, founded in 1998 Headquarters in San Jose, CA Highest

More information

Business Benefits of Data Footprint Reduction

Business Benefits of Data Footprint Reduction Business Benefits of Data Footprint Reduction Why and how reducing your data footprint provides a positive benefit to your business and application service objectives By Greg Schulz Founder and Senior

More information

The safer, easier way to help you pass any IT exams. Exam : 000-115. Storage Sales V2. Title : Version : Demo 1 / 5

The safer, easier way to help you pass any IT exams. Exam : 000-115. Storage Sales V2. Title : Version : Demo 1 / 5 Exam : 000-115 Title : Storage Sales V2 Version : Demo 1 / 5 1.The IBM TS7680 ProtecTIER Deduplication Gateway for System z solution is designed to provide all of the following EXCEPT: A. ESCON attach

More information

Backup and Recovery Solutions for Exadata. Ľubomír Vaňo Principal Sales Consultant

Backup and Recovery Solutions for Exadata. Ľubomír Vaňo Principal Sales Consultant Backup and Recovery Solutions for Exadata Ľubomír Vaňo Principal Sales Consultant Fundamental Backup and Recovery Data doesn t exist in most organizations until the rule of 3 is complete: Different Media

More information

An Oracle White Paper November 2010. Backup and Recovery with Oracle s Sun ZFS Storage Appliances and Oracle Recovery Manager

An Oracle White Paper November 2010. Backup and Recovery with Oracle s Sun ZFS Storage Appliances and Oracle Recovery Manager An Oracle White Paper November 2010 Backup and Recovery with Oracle s Sun ZFS Storage Appliances and Oracle Recovery Manager Introduction...2 Oracle Backup and Recovery Solution Overview...3 Oracle Recovery

More information

Ultimate Guide to Oracle Storage

Ultimate Guide to Oracle Storage Ultimate Guide to Oracle Storage Presented by George Trujillo George.Trujillo@trubix.com George Trujillo Twenty two years IT experience with 19 years Oracle experience. Advanced database solutions such

More information

ORACLE DATABASE 12C IN-MEMORY OPTION

ORACLE DATABASE 12C IN-MEMORY OPTION Oracle Database 12c In-Memory Option 491 ORACLE DATABASE 12C IN-MEMORY OPTION c The Top Tier of a Multi-tiered Database Architecture There is this famous character, called Mr. Jourdain, in The Bourgeois

More information

<Insert Picture Here> Managing Storage in Private Clouds with Oracle Cloud File System OOW 2011 presentation

<Insert Picture Here> Managing Storage in Private Clouds with Oracle Cloud File System OOW 2011 presentation Managing Storage in Private Clouds with Oracle Cloud File System OOW 2011 presentation What We ll Cover Today Managing data growth Private Cloud definitions Oracle Cloud Storage architecture

More information