<Insert Picture Here> Oracle Developer Days Oracle Database 11g - Exploiting the full potential of the Oracle database for application development

Size: px
Start display at page:

Download "<Insert Picture Here> Oracle Developer Days Oracle Database 11g - Exploiting the full potential of the Oracle database for application development"

Transcription

1 <Insert Picture Here> Oracle Developer Days Oracle Database 11g - Exploiting the full potential of the Oracle database for application development

2 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle.

3 Agenda Application Development Tools and Frameworks Enterprise Manager Database Development Features Database Caching Technologies Data Management Deployment

4 PL/SQL Use PL/SQL Hierarchical Profiler to identify hot spots Callee Elapsed Aggregated OE_API 3, ,781 get_order 8, ,712 get_order static SQL line 12 7,159 7,159 get_order static SQL line , ,948 place_order place_order static SQL line See where your CPU time is going Hierarchical profiler shows context Invoke using DBMS_HPROF.START_PROFILING

5 Edition-Based Redefinition Online Application Upgrade Application v1 Base Edition Database objects Application v2 New Edition Allows multiple editions to be available simultaneously Compilation of editioned objects transparent to application Views, Synonyms and PL/SQL objects can be editioned

6 Edition-Based Redefinition Online Application Upgrade Application v1 Application v2 2 3 View Base Edition Procedure View Procedure 1 New Edition 4 Table New Column 1 Compile objects in new edition without affecting online users 2 Deploy new application version referencing new edition 3 Current users are not effected, they reference base edition 4 Phase in new application version over time

7 XML DB Manage XML Content within the Oracle Database Oracle Database XML XML Consolidate storage of relational and XML data in Oracle 11g Natively store XML content XMLTYPE columns XML Tables Index of XML for fast access Unload relational data to XML Use XML Standards including XQuery and XML Schema

8 XML DB Example Query XML Data in XMLTYPE Columns select xtab.year, d.dname, xtab.actual, xtab.estimate from WWV_DEMO_DEPT d, XMLTable ('/Budget/History/Budget' passing BUDGET COLUMNS YEAR VARCHAR2(4) PATH 'Year', ESTIMATE NUMBER(20) PATH 'Estimate', ACTUAL NUMBER(20) PATH 'Actual') xtab Year Department Estimate Actual 2010 Accounting 570, , Operations 255, , Accounting 540, , Operations 240, ,000

9 XML DB - Example Use SQL to Unload Relational Data to XML select xmlelement("department", xmlattributes( d.deptno as "DepartmentId"), xmlelement("name", d.dname), xmlelement("employees, ( select xmlagg( xmlelement("employee", xmlforest(e.ename as "Name", e.hiredate as "StartDate ) ) ) from EMP e where e.deptno = d.deptno) )) as XML from DEPT d XML <Department DepartmentId="10"> <Name>ACCOUNTING</Name> <Employees> <Employee employeeid="7782"> <Name>CLARK</Name> <StartDate> </StartDate> </Employee> <Employee employeeid="7839"> <Name>KING</Name> <StartDate> </StartDate> </Employee> <Employee employeeid="7934"> <Name>MILLER</Name> <StartDate> </StartDate> </Employee> </Employees>

10 SQL Analytics Industry s most complete implementation SQL Analytics Statistics Ranking functions Window Aggregate functions LAG/LEAD functions Reporting Aggregate functions Statistical Aggregates Linear Regression Descriptive Statistics Correlations Cross Tabs Hypothesis Testing Distribution Fitting

11 SQL Analytics - Example Listing values of a Group By column select deptno, listagg( ename, '; ' ) within group(order by ename) as department_employees from emp group by deptno DEPTNO DEPARTMENT EMPLOYEES 10 CLARK; KING; MILLER 20 ADAMS; FORD; JONES; SCOTT; SMITH 30 ALLEN; BLAKE; JAMES; MARTIN; TURNER; WARD

12 SQL Analytics - Example Referencing Previous Row Values select application, to_char(run_date, day ) run_date, rows_processed, rows_processed - lag(rows_processed, 1, 0) over (order by rows_processed )as difference from application_log order by run_date Application Run Date Rows Processed Difference Daily Load Monday Daily Load Tuesday Daily Load Wednesday Daily Load Thursday Daily Load Friday

13 SQL PIVOT Rotate rows into columns and vice versa PROD QUARTER AMOUNT Shoe s Shoe s Q Q Jeans Q Jeans Q3 500 Jeans Q3 100 Jeans Q select * from sales pivot (sum(amount) for quarter in Q1, Q2, Q3, Q4 ); PROD Q1 Q2 Q3 Q4 Shoes Null Null Jeans 1000 Null Create aggregated cross-tabular result set Project many columns as filtered summaries of one column New syntax PIVOT and UNPIVOT

14 Oracle Database JVM Write Database Stored Procedures in Java Load Java in the database and expose via PL/SQL Leverage native and open source Java functionality Run Java where it makes the most sense Provide features not native to PL/SQL Complements Java deployed in the Mid Tier Improve performance of data heavy Java Leverage Java Skills New in Oracle Database 11gR1 JIT Compiler Java Management Extensions (JMX)

15 Oracle Database JVM Write Database Stored Procedures in Java Create or replace public class Hello { static public void world() { System.out.println("Hello World"); return; } } / create or replace procedure hello as language java name Hello.world() ;

16 Additional Database Technologies OLAP Cubes Java Stored Procedures Oracle Spatial Oracle Text Multimedia Virtual Private DB

17 Agenda Application Development Tools and Frameworks Enterprise Manager Database Development Features Database Caching Technologies Data Management Deployment

18 Database Caching Technologies SQL Result Set Cache Cache queries and sub queries Shared by all sessions Full consistency and proper semantics 2x - 100x speedup PL/SQL Function Cache Automatic invalidation Shared by all sessions Use for deterministic functions

19 SQL Result Set Cache Query Annotation and Alter Table Syntax Query Annotation Syntax select /*+ result_cache */ ename, job from employees where deptno in (10,30,40); Table Level Result Set Caching alter table employees result_cache (mode force);

20 PL/SQL Function Cache Example CREATE FUNCTION format_name ( p_first_name IN VARCHAR2, p_last_name IN VARCHAR2) RETURN VARCHAR2 RESULT_CACHE IS v_name VARCHAR2(4000) BEGIN RETURN p_first_name ' ' p_last_name; END format_name;

21 Database Caching Technologies Client Result Cache Recommended for small readintensive tables 6X reduction in CPU usage 15% to 20% in response time Invoked by setting the init.ora parameters Flash Buffer Cache Database Smart Cache Extends SGA buffer cache Smart database caching Solaris and Oracle Enterprise Linux only

22 TimesTen In-Memory Database Cache In-memory RDBMS for real-time applications Applications: Financial and Telco Services, Web Portal, CRM IMDB Cache Grid Application Application TimesTen DB TimesTen DB Fast, consistent response time with low latency Standard SQL and PL/SQL Cache subsets with read/ write; tables, rows, columns Automatic synchronization with Oracle Database Built-in high availability (HA) and data persistence Scale-out cache grid

23 TimesTen In-Memory Database Cache Flexible Cache Group Configuration Application Transactions Cache Groups Full relational access with transaction support. Automatic Data Synchronization CREATE Asynchronous Writethrough Cache Group custcache FROM customer ( cust_id (number(10,0),.. ), acct ( acct_id,.., foreign key (cust_id), orders (..);

24 Agenda Application Development Tools and Frameworks Enterprise Manager Database Development Features Database Caching Technologies Data Management Deployment

25 Advanced Compression Option Significant reductions in data volumes 3x 10x 20x No Compression OLTP Data Warehousing Archival Benefits for both OLTP and DW solutions Transparent to the application and works with all data types EBS queries run 250% faster DML operations are 3% slower

26 Advanced Compression Syntax Example CREATE TABLE employees( emplyee_id NUMBER, first_name VARCHAR2(50), last_name VARCHAR2(50) ) COMPRESS FOR OLTP;

27 Oracle SecureFiles High Performance Large Object Storage Substantial Performance Improvement Performance comparable to or greater than file systems Compression De-duplication Encryption Compatible with existing Oracle BLOB/CLOB syntax Compression and De-Duplication require Advanced Compression Option

28 Oracle SecureFiles Compression and De-Duplication CREATE TABLE images ( image_id NUMBER, image BLOB) LOB(image) STORE AS SECUREFILE ( TABLESPACE lob_tbs COMPRESS);

29 Oracle Partitioning Improve performance and manageability transparently Large Table Partition by Column Composite Partition Better query performance using partition elimination Partitioned data is easier to backup and recover Use lower cost storage for less used partitions

30 Oracle Partitioning Combining compression and partitioning Archival Compression DW Compression OLTP Compression Maximize performance of active data Increase compression and use lower cost storage for less used partitions

31 Flashback Flashback, Flashback Data Archive Time Current Data Undo Flashback: Query, Table, Tablespace, Transaction, Database Flashback available based on redo retention Flashback Data Archive provides infinite flashback and requires the Total Recall database option

32 Flashback Example Flashback query to a point in time select * from employees as of timestamp to_timestamp(' :30:00', 'yyyy-mm-dd hh:mi:ss') where name = :b1;

33 Agenda Application Development Tools and Frameworks Enterprise Manager Database Development Features Database Caching Technologies Data Management Deployment

34 Real Application Clusters (RAC) Highly Available and Scalable Virtualizes low cost servers into a shared resource Scale Out to support more users Adapt to changes in workloads, fast connection failover

35 Oracle Data Guard Active Active High Availability Primary Database Active Stand-by Database Redo Transport Sync & Async Data Guard Broker Provide High Availability with failover to stand by databases Leverage your read only standby database for queries, reports, and testing on live data

36 Oracle Data Guard Reader Farms Production Database Reader Farm Queries Queries Updates Queries Real time synchronization

37 Real Application Testing Workload for 1,000s of Online Users Replayed Capture Replay Production Workload Test

38 Agenda Application Development Tools and Frameworks Enterprise Manager Database Development Features Database Caching Technologies Data Management Deployment

39 Oracle Supports All Popular Application Development Frameworks

40 Oracle SQL Developer No Cost IDE for the Oracle Database Lightweight, graphical user interface Enhances database development productivity Browsing, creating, editing, debugging and reporting Integrated migration capabilities Easy installation Download and unzip Uses thin JDBC driver => No Oracle Home required Free, Extensible and fully supported 1.5 million users Supported feature of the Oracle database

41 Oracle SQL Developer No cost IDE for the Oracle Database Database development Database Data Modeling Database Migrations From third-party databases PL/SQL Unit Testing

42 Java World s Most Popular Programming Platform

43 Oracle and Java Oracle is leading the Java community Oracle users Java everywhere Applications Middleware Database Development Tools

44 Java Development Tools Three Tools for the Java Development Community Eclipse Certified plugins on top of core Eclipse Focus on Java coding EJB/JPA, Spring, WebServices, WebLogic NetBeans The IDE for Java FX Developers Supports Java EE 6.0, Java FX and Java ME Community Focused Oracle Jdeveloper 11gR1 IDE for Fusion Middleware Developers Development Platform for Oracle ADF Visual, Declarative, WYSIWYG

45 JDBC and UCP Efficient, Scalable and Reliable Java Persistence Efficient Java Persistence with Oracle JDBC 11g JDBC 4.0, IPV6 Built-in Advanced Security in JDBC-Thin Support for Query Change Notification Result Cache (JDBC-OCI): 5-8 x Faster Native AQ interface: % Faster LOB PreFetch, Zero Copy SecureFiles LOB Scalable and Reliable Java Persistence with Universal Connection Pool Fast Connection Failover (RAC, Data Guard) Runtime Connection Load Balancing Web Session Affinity Transaction Affinity

46 Cache Invalidation with Query Change Notification Notification when changes in the database invalidates an existing query result set 2.DML (Change to Java 1. Register the Query 4.Invalidate cache 5.Repopulate cache Callout the result set) Custom cache 3. Automatic Notification

47 Java Development Tools - JDeveloper Oracle Application Development Framework (ADF) Common framework for Fusion Applications Fusion Middleware Enhance productivity & ease-of-use Visual and declarative development Takes care of the plumbing code Modeling, coding, debugging, testing, profiling, deployment implements best practices Over 150 cutting edge AJAX enabled user interface components Promotes SOA development

48 Oracle Application Express (APEX) Database-Centric Web Application Development Tool No cost option of the Oracle Database Distributed with database 10gR2, 11gR1, 11gR2 and XE Latest Version available on OTN

49 Oracle Application Express (APEX) New application development Data centric rich internet applications Custom application development Rapid application development Online reporting Oracle Forms modernization Leverage SQL & PL/SQL skills Re-use DB packages Desktop database consolidation Microsoft Access replacement Spreadsheet s used for data collection

50 Oracle Application Express (APEX) Rapid Browser Based Development Leverages SQL Skills Point your browser and start developing Build reports and charts using SQL Self Service Provisioning Runs within Database Out-of-the-box elastic private cloud service Simple to manage, highly scalable

51 Oracle Support for.net Full Support for.net and Visual Studio Same API s, Same Tools Easy to Learn, Easy to Migrate Freely Available Full Support for Oracle Database Run All Editions of the Oracle Database Real Application Clusters (RAC) Data Guard, Data types, Run Oracle Database Everywhere Linux Unix (Sun, IBM, HP) Microsoft Windows

52 Oracle Support for.net

53 Open Source Language Drivers for Oracle Building Agile Web Applications with Oracle Database Connection Scalability with Database Resident Connection Pool (DRCP) PHP OCI8 Available on php.net, PECL, Zend Server, Unbreakable Linux Network and Ruby OCI8 Python Cx-Oracle Perl DBD::Oracle Oracle.pm

54 Agenda Application Development Tools and Frameworks Enterprise Manager Database Development Features Database Caching Technologies Data Management Deployment

55 Oracle Enterprise Manager Manage Applications to Disk Applications Middleware Database Physical and Virtual Servers and Storage Applications to Disk Management Performance and Change Management Diagnostics and Tuning

56 Oracle Enterprise Manager Automatic Performance Diagnostics IO / CPU Issues High Load SQL Automatic Workload Repository Snapshots Self-Diagnostic Engine RAC Issues Performance & Management Advisors Boost Administrator Productivity Eliminate Performance Bottlenecks Lower IT Management Costs Deliver Higher Quality of Service

57 Oracle Enterprise Manager Real Time SQL Monitoring Automatically monitors long running SQL and PL/SQL Enabled out-of-the-box with no performance impact Exposes monitoring statistics Guides tuning efforts Offline reporting

58 Oracle Database 11g Exploiting the full potential of the Oracle database

59

<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

<Insert Picture Here> Oracle In-Memory Database Cache Overview

<Insert Picture Here> Oracle In-Memory Database Cache Overview Oracle In-Memory Database Cache Overview Simon Law Product Manager The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Track and Keynote/Session Title 9:00:00 AM Keynote 11g Database Development Java Track Database Apex Track.Net Track. 09:30:00 AM with Oracle and

Track and Keynote/Session Title 9:00:00 AM Keynote 11g Database Development Java Track Database Apex Track.Net Track. 09:30:00 AM with Oracle and Oracle Technology Network Virtual Develop Day: Date and Time- Americas - Wednesday September 13, 2011 9:00am -13:00pm PDT 11am -15:00pm CDT 12Noon 16:00pm EDT 13:00am 17:00pm BRT Agenda Time Track and

More information

<Insert Picture Here> Michael Hichwa VP Database Development Tools michael.hichwa@oracle.com Stuttgart September 18, 2007 Hamburg September 20, 2007

<Insert Picture Here> Michael Hichwa VP Database Development Tools michael.hichwa@oracle.com Stuttgart September 18, 2007 Hamburg September 20, 2007 Michael Hichwa VP Database Development Tools michael.hichwa@oracle.com Stuttgart September 18, 2007 Hamburg September 20, 2007 Oracle Application Express Introduction Architecture

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

Why Standardize on Oracle Database 11g Next Generation Database Management. Thomas Kyte http://asktom.oracle.com

Why Standardize on Oracle Database 11g Next Generation Database Management. Thomas Kyte http://asktom.oracle.com Why Standardize on Oracle Database 11g Next Generation Database Management Thomas Kyte http://asktom.oracle.com Top Challenges Performance Management Change Management Ongoing Administration Storage Backup

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

<Insert Picture Here>

<Insert Picture Here> 1 Database Technologies for Archiving Kevin Jernigan, Senior Director Product Management Advanced Compression, EHCC, DBFS, SecureFiles, ILM, Database Smart Flash Cache, Total Recall,

More information

ORACLE DATA SHEET KEY FEATURES AND BENEFITS ORACLE WEBLOGIC SERVER STANDARD EDITION

ORACLE DATA SHEET KEY FEATURES AND BENEFITS ORACLE WEBLOGIC SERVER STANDARD EDITION KEY FEATURES AND BENEFITS STANDARD EDITION Java EE 7 full platform support Java SE 8 certification, support Choice of IDEs, development tools and frameworks Oracle Cloud compatibility Industry-leading

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

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 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

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

Tips and Tricks for Using Oracle TimesTen In-Memory Database in the Application Tier

Tips and Tricks for Using Oracle TimesTen In-Memory Database in the Application Tier Tips and Tricks for Using Oracle TimesTen In-Memory Database in the Application Tier Simon Law TimesTen Product Manager, Oracle Meet The Experts: Andy Yao TimesTen Product Manager, Oracle Gagan Singh Senior

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

Oracle Database 11 g Performance Tuning. Recipes. Sam R. Alapati Darl Kuhn Bill Padfield. Apress*

Oracle Database 11 g Performance Tuning. Recipes. Sam R. Alapati Darl Kuhn Bill Padfield. Apress* Oracle Database 11 g Performance Tuning Recipes Sam R. Alapati Darl Kuhn Bill Padfield Apress* Contents About the Authors About the Technical Reviewer Acknowledgments xvi xvii xviii Chapter 1: Optimizing

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

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

<Insert Picture Here> Oracle SQL Developer 3.0: Overview and New Features

<Insert Picture Here> Oracle SQL Developer 3.0: Overview and New Features 1 Oracle SQL Developer 3.0: Overview and New Features Sue Harper Senior Principal Product Manager The following is intended to outline our general product direction. It is intended

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 DATA SHEET KEY FEATURES AND BENEFITS ORACLE WEBLOGIC SERVER STANDARD EDITION

ORACLE DATA SHEET KEY FEATURES AND BENEFITS ORACLE WEBLOGIC SERVER STANDARD EDITION ORACLE WEBLOGIC SERVER KEY FEATURES AND BENEFITS ORACLE WEBLOGIC SERVER STANDARD EDITION Java EE 6 full platform support plus selected Java EE 7 APIs Java SE 6 and 7 certification Oracle Java SE Support

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

Expansion Through Acquisitions

Expansion Through Acquisitions Oracle, Open Source and Open Standards Edgars RuĦăis Oracle Latvijā Oracle Corporation World s largest enterprise software vendor 275,000+ global customers 30,000+ applications customers

More information

Oracle Database 11g Performance and Scalability. An Oracle White Paper November 2007

Oracle Database 11g Performance and Scalability. An Oracle White Paper November 2007 Oracle Database 11g Performance and Scalability An Oracle White Paper November 2007 Oracle Database 11g Performance and Scalability Introduction...3 Scalability Challenges...4 Scalability Factors...4 Scalable

More information

HOUG Konferencia 2015. Oracle TimesTen In-Memory Database and TimesTen Application-Tier Database Cache. A few facts in 10 minutes

HOUG Konferencia 2015. Oracle TimesTen In-Memory Database and TimesTen Application-Tier Database Cache. A few facts in 10 minutes HOUG Konferencia 2015 Oracle TimesTen In-Memory Database and TimesTen Application-Tier Database Cache A few facts in 10 minutes Tamas.Kerepes@webvalto.hu What is TimesTen An in-memory relational database

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

Using MySQL for Big Data Advantage Integrate for Insight Sastry Vedantam sastry.vedantam@oracle.com

Using MySQL for Big Data Advantage Integrate for Insight Sastry Vedantam sastry.vedantam@oracle.com Using MySQL for Big Data Advantage Integrate for Insight Sastry Vedantam sastry.vedantam@oracle.com Agenda The rise of Big Data & Hadoop MySQL in the Big Data Lifecycle MySQL Solutions for Big Data Q&A

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

Oracle: Database and Data Management Innovations with CERN Public Day

Oracle: Database and Data Management Innovations with CERN Public Day Presented to Oracle: Database and Data Management Innovations with CERN Public Day Kevin Jernigan, Oracle Lorena Lobato Pardavila, CERN Manuel Martin Marquez, CERN June 10, 2015 Copyright 2015, Oracle

More information

Oracle Middleware as Cloud Foundation. Filip Huysmans Contribute Group

Oracle Middleware as Cloud Foundation. Filip Huysmans Contribute Group Oracle Middleware as Cloud Foundation Filip Huysmans Contribute Group Join the buzz: Wifi pass: BANQ Twitter #oracleopenxperience @oopenxperience 2 Sunday 29 Monday Tuesday Wednesday Thursday 32 34 26

More information

Oracle9i Database Release 2 Product Family

Oracle9i Database Release 2 Product Family Database Release 2 Product Family An Oracle White Paper January 2002 Database Release 2 Product Family INTRODUCTION Database Release 2 is available in three editions, each suitable for different development

More information

Oracle Database Cloud

Oracle Database Cloud Oracle Database Cloud Shakeeb Rahman Database Cloud Service Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may

More information

Aplicações empresariais de elevada performance com Oracle WebLogic e Coherence. Alexandre Vieira Middleware Solutions Team Leader

Aplicações empresariais de elevada performance com Oracle WebLogic e Coherence. Alexandre Vieira Middleware Solutions Team Leader Aplicações empresariais de elevada performance com Oracle WebLogic e Coherence Alexandre Vieira Middleware Solutions Team Leader Which FOUNDATION? How to have CONTROL? How to run FASTER? Which FOUNDATION?

More information

Oracle9i Data Warehouse Review. Robert F. Edwards Dulcian, Inc.

Oracle9i Data Warehouse Review. Robert F. Edwards Dulcian, Inc. Oracle9i Data Warehouse Review Robert F. Edwards Dulcian, Inc. Agenda Oracle9i Server OLAP Server Analytical SQL Data Mining ETL Warehouse Builder 3i Oracle 9i Server Overview 9i Server = Data Warehouse

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

In-Memory Analytics: A comparison between Oracle TimesTen and Oracle Essbase

In-Memory Analytics: A comparison between Oracle TimesTen and Oracle Essbase In-Memory Analytics: A comparison between Oracle TimesTen and Oracle Essbase Agenda Introduction Why In-Memory? Options for In-Memory in Oracle Products - Times Ten - Essbase Comparison - Essbase Vs Times

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

An Oracle White Paper October 2010. Oracle Database 11g Product Family

An Oracle White Paper October 2010. Oracle Database 11g Product Family An Oracle White Paper October 2010 Oracle Database 11g Product Family INTRODUCTION... 1 ENTERPRISE EDITION OPTIONS... 2 Oracle Active Data Guard... 2 Oracle Advanced Compression... 2 Oracle Advanced Security...

More information

Oracle Database 10g Product Family

Oracle Database 10g Product Family Oracle Database 10g Product Family An Oracle White Paper Jan. 2004 Oracle Database 10g Product Family INTRODUCTION Oracle Database 10g is available in four editions, each suitable for different development

More information

Application-Tier In-Memory Analytics Best Practices and Use Cases

Application-Tier In-Memory Analytics Best Practices and Use Cases Application-Tier In-Memory Analytics Best Practices and Use Cases Susan Cheung Vice President Product Management Oracle, Server Technologies Oct 01, 2014 Guest Speaker: Kiran Tailor Senior Oracle DBA and

More information

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

Copyright 2014, Oracle and/or its affiliates. All rights reserved. 1 Oracle and Visual Studio 2013: What's New and Best Practices Alex Keh Senior Principal Product Manager, Oracle Program Agenda Introduction to ODAC New Features Schema Compare ODP.NET, Managed Driver

More information

An Oracle White Paper June 2012. Oracle Database 11g Product Family

An Oracle White Paper June 2012. Oracle Database 11g Product Family An Oracle White Paper June 2012 Oracle Database 11g Product Family INTRODUCTION... 1 ENTERPRISE EDITION OPTIONS... 2 Oracle Active Data Guard... 2 Oracle Advanced Analytics... 2 Oracle Advanced Compression...

More information

Oracle Database 12c: Performance Management and Tuning NEW

Oracle Database 12c: Performance Management and Tuning NEW Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Performance Management and Tuning NEW Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning

More information

<Insert Picture Here>

<Insert Picture Here> Using Oracle SQL Developer and SQL Developer Data Modeler to aid your Oracle Application Express development Marc Sewtz Software Development Manager Oracle Application

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

Customer evaluation guide Toad for Oracle v12 Database administration

Customer evaluation guide Toad for Oracle v12 Database administration Thank you for choosing to download a Toad for Oracle trial. This guide will enable you to evaluate Toad s key technical features and business value. It can be used to evaluate the database administration

More information

MySQL Administration and Management Essentials

MySQL Administration and Management Essentials MySQL Administration and Management Essentials Craig Sylvester MySQL Sales Consultant 1 Safe Harbor Statement The following is intended to outline our general product direction. It

More information

Consolidate by Migrating Your Databases to Oracle Database 11g. Fred Louis Enterprise Architect

Consolidate by Migrating Your Databases to Oracle Database 11g. Fred Louis Enterprise Architect Consolidate by Migrating Your Databases to Oracle Database 11g Fred Louis Enterprise Architect Agenda Why migrate to Oracle What is migration? What can you migrate to Oracle? SQL Developer Migration Workbench

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

<Insert Picture Here> Move to Oracle Database with Oracle SQL Developer Migrations

<Insert Picture Here> Move to Oracle Database with Oracle SQL Developer Migrations Move to Oracle Database with Oracle SQL Developer Migrations The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

ORACLE DATA INTEGRATOR ENTERPRISE EDITION

ORACLE DATA INTEGRATOR ENTERPRISE EDITION ORACLE DATA INTEGRATOR ENTERPRISE EDITION ORACLE DATA INTEGRATOR ENTERPRISE EDITION KEY FEATURES Out-of-box integration with databases, ERPs, CRMs, B2B systems, flat files, XML data, LDAP, JDBC, ODBC Knowledge

More information

Oracle Data Integrator 11g New Features & OBIEE Integration. Presented by: Arun K. Chaturvedi Business Intelligence Consultant/Architect

Oracle Data Integrator 11g New Features & OBIEE Integration. Presented by: Arun K. Chaturvedi Business Intelligence Consultant/Architect Oracle Data Integrator 11g New Features & OBIEE Integration Presented by: Arun K. Chaturvedi Business Intelligence Consultant/Architect Agenda 01. Overview & The Architecture 02. New Features Productivity,

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

Oracle Database 11g Product Family

Oracle Database 11g Product Family Oracle Database 11g Product Family An Oracle White Paper January 2009 Oracle Database 11g Product Family INTRODUCTION Oracle Database 11g is available in a choice of editions tailored to meet the business

More information

Oracle Database 11g Product Family

Oracle Database 11g Product Family Oracle Database 11g Product Family An Oracle White Paper January 2008 Oracle Database 11g Product Family INTRODUCTION Oracle Database 11g is available in a choice of editions tailored to meet the business

More information

Data Sheet VISUAL COBOL 2.2.1 WHAT S NEW? COBOL JVM. Java Application Servers. Web Tools Platform PERFORMANCE. Web Services and JSP Tutorials

Data Sheet VISUAL COBOL 2.2.1 WHAT S NEW? COBOL JVM. Java Application Servers. Web Tools Platform PERFORMANCE. Web Services and JSP Tutorials Visual COBOL is the industry leading solution for COBOL application development and deployment on Windows, Unix and Linux systems. It combines best in class development tooling within Eclipse and Visual

More information

Bryan Tuft Sr. Sales Consultant Global Embedded Business Unit bryan.tuft@oracle.com

Bryan Tuft Sr. Sales Consultant Global Embedded Business Unit bryan.tuft@oracle.com Bryan Tuft Sr. Sales Consultant Global Embedded Business Unit bryan.tuft@oracle.com Agenda Oracle Approach Embedded Databases TimesTen In-Memory Database Snapshots Q&A Real-Time Infrastructure Challenges

More information

AV-004: Administering and Programming with ORACLE

AV-004: Administering and Programming with ORACLE AV-004: Administering and Programming with ORACLE Oracle 11g Duration: 140 hours Introduction: An Oracle database is a collection of data treated as a unit. The purpose of a database is to store and retrieve

More information

ORACLE DATA INTEGRATOR ENTERPRISE EDITION

ORACLE DATA INTEGRATOR ENTERPRISE EDITION ORACLE DATA INTEGRATOR ENTERPRISE EDITION Oracle Data Integrator Enterprise Edition 12c delivers high-performance data movement and transformation among enterprise platforms with its open and integrated

More information

ORACLE COHERENCE 12CR2

ORACLE COHERENCE 12CR2 ORACLE COHERENCE 12CR2 KEY FEATURES AND BENEFITS ORACLE COHERENCE IS THE #1 IN-MEMORY DATA GRID. KEY FEATURES Fault-tolerant in-memory distributed data caching and processing Persistence for fast recovery

More information

1 Changes in this release

1 Changes in this release Oracle SQL Developer Oracle TimesTen In-Memory Database Support Release Notes Release 4.0 E39883-01 June 2013 This document provides late-breaking information as well as information that is not yet part

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 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

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

SQL Server 2012 Gives You More Advanced Features (Out-Of-The-Box)

SQL Server 2012 Gives You More Advanced Features (Out-Of-The-Box) SQL Server 2012 Gives You More Advanced Features (Out-Of-The-Box) SQL Server White Paper Published: January 2012 Applies to: SQL Server 2012 Summary: This paper explains the different ways in which databases

More information

Public & Private Cloud Services

Public & Private Cloud Services Public & Private Cloud Services George Bourmas Sales Consulting Manager Database & Options Exadata Team Leader CEE 1 2 Oracle s Architectural Vision Complete, Open, Integrated Systems ENGINEERED TO WORK

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

<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

WHITE PAPER ON ORACLE 10g GRID

WHITE PAPER ON ORACLE 10g GRID WHITE PAPER ON ORACLE 10g GRID By: Jaya Wazirani Agarwal Introduction Grid computing is a new IT architecture that leads to more reliable, recoverable and lower cost enterprise information systems. By

More information

<Insert Picture Here> Enabling Cloud Deployments with Oracle Virtualization

<Insert Picture Here> Enabling Cloud Deployments with Oracle Virtualization Enabling Cloud Deployments with Oracle Virtualization NAME TITLE The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Under The Hood. Tirthankar Lahiri Vice President Data Technologies and TimesTen October 28, 2015. #DBIM12c

Under The Hood. Tirthankar Lahiri Vice President Data Technologies and TimesTen October 28, 2015. #DBIM12c Database In-Memory 2 Under The Hood Tirthankar Lahiri Vice President Data Technologies and TimesTen October 28, 2015 #DBIM12c Confidential Internal 2 A Brief History of Time Before OOW 2013 Miscellaneous

More information

How To Develop An Application On Anor Cloud

How To Develop An Application On Anor Cloud The Oracle Cloud for Database and Application Developers Amit Chaudhry Seiner Director, Product Management April 9 th, 2013 Tokyo, Japan Safe Harbor Statement The following is intended to outline our general

More information

ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION

ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION EXECUTIVE SUMMARY Oracle business intelligence solutions are complete, open, and integrated. Key components of Oracle business intelligence

More information

Oracle TimesTen IMDB - An Introduction

Oracle TimesTen IMDB - An Introduction Oracle TimesTen IMDB - An Introduction Who am I 12+ years as an Oracle DBA Working as Vice President with an Investment Bank Member of AIOUG Since 2009 Cer$fied ITIL V3 Founda$on IT Service Management

More information

SQL Server 2016 New Features!

SQL Server 2016 New Features! SQL Server 2016 New Features! Improvements on Always On Availability Groups: Standard Edition will come with AGs support with one db per group synchronous or asynchronous, not readable (HA/DR only). Improved

More information

CASE STUDY: Oracle TimesTen In-Memory Database and Shared Disk HA Implementation at Instance level. -ORACLE TIMESTEN 11gR1

CASE STUDY: Oracle TimesTen In-Memory Database and Shared Disk HA Implementation at Instance level. -ORACLE TIMESTEN 11gR1 CASE STUDY: Oracle TimesTen In-Memory Database and Shared Disk HA Implementation at Instance level -ORACLE TIMESTEN 11gR1 CASE STUDY Oracle TimesTen In-Memory Database and Shared Disk HA Implementation

More information

PHP Oracle Web Applications: Best Practices and Caching Strategies

PHP Oracle Web Applications: Best Practices and Caching Strategies PHP Oracle Web Applications: Best Practices and Caching Strategies Kuassi Mensah Oracle Corporation USA Keywords: PHP, OCI* DRCP, Query Change Notification, Query Result Cache, Stored Procedures, Failover.

More information

<Insert Picture Here> E-Business Suite Technology Stack Certification Roadmap Steven Chan Senior Director, Applications Technology Integration

<Insert Picture Here> E-Business Suite Technology Stack Certification Roadmap Steven Chan Senior Director, Applications Technology Integration E-Business Suite Technology Stack Certification Roadmap Steven Chan Senior Director, Applications Technology Integration Topics Support Policy Updates Lifetime Support Stages Technology

More information

An Oracle White Paper May 2012. Oracle Database Cloud Service

An Oracle White Paper May 2012. Oracle Database Cloud Service An Oracle White Paper May 2012 Oracle Database Cloud Service Executive Overview The Oracle Database Cloud Service provides a unique combination of the simplicity and ease of use promised by Cloud computing

More information

<Insert Picture Here> Oracle Application Express 4.0

<Insert Picture Here> Oracle Application Express 4.0 Oracle Application Express 4.0 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

Oracle MulBtenant Customer Success Stories

Oracle MulBtenant Customer Success Stories Oracle MulBtenant Customer Success Stories Mul1tenant Customer Sessions at Customer Session Venue Title SAS Cigna CON6328 Mon 2:45pm SAS SoluBons OnDemand: A MulBtenant Cloud Offering CON6379 Mon 5:15pm

More information

Data Integration Overview

Data Integration Overview Data Integration Overview Phill Rizzo Regional Manager, Data Integration Solutions phillip.rizzo@oracle.com Oracle Products for Data Movement Comparing How They Work Oracle Data

More information

Top 10 Oracle SQL Developer Tips and Tricks

Top 10 Oracle SQL Developer Tips and Tricks Top 10 Oracle SQL Developer Tips and Tricks December 17, 2013 Marc Sewtz Senior Software Development Manager Oracle Application Express Oracle America Inc., New York, NY The following is intended to outline

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 OLAP. Oracle OLAP is embedded in the Oracle Database kernel and runs in the same database process

ORACLE OLAP. Oracle OLAP is embedded in the Oracle Database kernel and runs in the same database process ORACLE OLAP KEY FEATURES AND BENEFITS FAST ANSWERS TO TOUGH QUESTIONS EASILY KEY FEATURES & BENEFITS World class analytic engine Superior query performance Simple SQL access to advanced analytics Enhanced

More information

<Insert Picture Here> Performance, performance, performance!!!

<Insert Picture Here> Performance, performance, performance!!! Performance, performance, performance!!! John Abrahams Technology Sales Consultant Oracle Nederland Important Trends Highest QoS for all applications 24 x 7 availability Predictable

More information

Oracle Database Cloud Services OGh DBA & Middleware Day

Oracle Database Cloud Services OGh DBA & Middleware Day Oracle Database Cloud Services OGh DBA & Middleware Day Jan van Tiggelen Principal Sales Consultant Oracle Core Technology June 4th, 2015 Safe Harbor Statement The following is intended to outline our

More information

SQL Server Training Course Content

SQL Server Training Course Content SQL Server Training Course Content SQL Server Training Objectives Installing Microsoft SQL Server Upgrading to SQL Server Management Studio Monitoring the Database Server Database and Index Maintenance

More information

An Oracle White Paper May 2010. Ready for Business: Oracle GlassFish Server

An Oracle White Paper May 2010. Ready for Business: Oracle GlassFish Server An Oracle White Paper May 2010 Ready for Business: Oracle GlassFish Server Introduction GlassFish Server Open Source Edition, with its compelling advantages, has quickly become the open source platform

More information

Oracle Mobile Solutions. Filip Huysmans Contribute Group

Oracle Mobile Solutions. Filip Huysmans Contribute Group Oracle Mobile Solutions Filip Huysmans Contribute Group Join the buzz: Wifi pass: BANQ Twitter #oracleopenxperience @oopenxperience 2 3 Sunday 29 Monday Tuesday Wednesday Thursday 32 34 26 22 4 Paradigm

More information

Informatica Data Replication 9.1.1 FAQs

Informatica Data Replication 9.1.1 FAQs Informatica Data Replication 9.1.1 FAQs 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

Maximum Availability Architecture

Maximum Availability Architecture Oracle Data Guard: Disaster Recovery for Sun Oracle Database Machine Oracle Maximum Availability Architecture White Paper April 2010 Maximum Availability Architecture Oracle Best Practices For High Availability

More information

MS SQL Server 2014 New Features and Database Administration

MS SQL Server 2014 New Features and Database Administration MS SQL Server 2014 New Features and Database Administration MS SQL Server 2014 Architecture Database Files and Transaction Log SQL Native Client System Databases Schemas Synonyms Dynamic Management Objects

More information

INTRODUCTION ADVANTAGES OF RUNNING ORACLE 11G ON WINDOWS. Edward Whalen, Performance Tuning Corporation

INTRODUCTION ADVANTAGES OF RUNNING ORACLE 11G ON WINDOWS. Edward Whalen, Performance Tuning Corporation ADVANTAGES OF RUNNING ORACLE11G ON MICROSOFT WINDOWS SERVER X64 Edward Whalen, Performance Tuning Corporation INTRODUCTION Microsoft Windows has long been an ideal platform for the Oracle database server.

More information

SQL Server 2012 and PostgreSQL 9

SQL Server 2012 and PostgreSQL 9 SQL Server 2012 and PostgreSQL 9 A Detailed Comparison of Approaches and Features SQL Server White Paper Published: April 2012 Applies to: SQL Server 2012 Introduction: The question whether to implement

More information

<Insert Picture Here> Application Testing Suite Overview

<Insert Picture Here> Application Testing Suite Overview Application Testing Suite Overview Agenda Ats Overview OpenScript Functional Testing OpenScript Load Testing Forms/Siebel Modules Installation of Ats Oracle Load Tester Oracle Test

More information

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

MyISAM Default Storage Engine before MySQL 5.5 Table level locking Small footprint on disk Read Only during backups GIS and FTS indexing Copyright 2014, Oracle and/or its affiliates. All rights reserved.

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