Transparent Data Encryption

Size: px
Start display at page:

Download "Transparent Data Encryption"

Transcription

1

2 <Insert Picture Here> Transparent Data Encryption DOAG SID SAP & Oracle June 2007 Andreas Becker Senior Member Technical Staff Oracle Server Technologies - SAP Development

3 Agenda Transparent Data Encrytion Technical Overview Demo Technical Restrictions/Recommendations Configuration and Support in SAP Environments Alternatives RMAN Backup Encryption Oracle Secure Backup <Insert Picture Here>

4 Encryption Network Encryption Encryption of data in motion Transparent Data Encryption Encryption of data at rest <Insert Picture Here>

5 <Insert Picture Here> JP Morgan Client Data Loss The Wall Street Journal, May 2007 JP Morgan Chase has alerted thousands of its Chicago-area millionaire clients, as well as some of its own employees, that it cannot locate a computer tape containing their account information and Social Security numbers.

6 The Need for Encryption Worldwide privacy, security laws and regulations Sarbanes-Oxley PCI (Payment Card Industrie) California SB 1386 (Nationwide soon?) Country-specific laws Customer Credit Card Numbers Disks replaced for maintenance Data worthless if encrypted Laptops stolen Backups lost

7 Database Encryption Release < 10.2 Oracle8i, Oracle9i and Oracle Database 10g provided a PL/SQL API for encrypting data in the Enterprise Edition DBMS_OBFUSCATION_TOOLKIT in Oracle9i, Oracle10g DBMS_CRYPTO in Oracle Database 10g Application calls PL/SQL API to perform encryption Typically requires database triggers, database Views No automated key management Note that most 3 rd party solutions today create triggers and views to make their encryption solution look transparent Oracle encryption API s are used by customers today to encrypt credit card numbers

8 What our customers wanted Privacy / regulatory compliance (SB 1386, CISP/PCI) Protection for data on backup tapes Additional protection against operating system / data file theft Media theft / disk replacement Let the database handle all aspects of encryption, not the application Make it easy and secure

9 Transparent Data Encryption Integrated with the Oracle database for simplicity Alter table encrypt column Provides application transparency No API calls, database triggers or views required Media protection of PII data Social security numbers Credit Card Numbers Performance Works with existing indexes for equality searches

10 TDE Key Features Encryption/Decryption inside of the database Simple SQL Syntax: SQL> ALTER TABLE customers MODIFY (creditcardno ENCRYPT); Requires Advanced Security Option! Only with Oracle Enterprise Edition TDE Keys are managed by Oracle Protects unauthorized access to database on file system level/ OS level

11 TDE Key Features Simply and easy encryption of sensitive data views or triggers are NOT needed Protects confidential data without the overhead of key management Data on disk is encrypted, but decryption is transparent for the application

12 Overview the Big Picture Oracle Advanced Security Strong Authentication Data Automatically Decrypted Through SQL Interface Oracle Advanced Security Network Encryption Data Written To Disk Automatically Encrypted Oracle Advanced Security Transparent Data Encryption Data Encrypted On Backup Files

13 Separation of duties DBA starts up Database Wallet password is separate from System or DBA password No access to wallet Security DBA opens wallet containing master key

14 Master key and column keys Column keys encrypted by master key Master key stored in PKCS#12 wallet Security DBA opens wallet containing master key Column keys encrypt data in columns

15 Transparent Data Encryption Configuration steps 5 steps to setup TDE: 1. Identify tables and columns containing sensitive data 2. Does TDE support the datatype of the column? 3. Is column part of a foreign key? (should not be relevant in SAP environments) 4. Setup and initialize Wallet and Master Key 5. Encrypt existing data and new data in encrypted table column

16 D E M O N S T R A T I O N Transparent Data Encryption (TDE)

17 Prepare the Database Create a wallet and generate the master key alter system set key identified by e3car61 Open the wallet: alter system set wallet open identified by e3car61

18 Encrypting columns Encrypt a column in an existing table: alter table credit_rating modify (person_id encrypt); Create a new table with an encrypted column: create table orders ( order_id number(12), customer_id number(12), credit_card varchar2(16) encrypt);

19 Which algorithms are used? Default: AES with 192 bits: alter table credit_rating modify (person_id encrypt) Example with other algorithms: create table employee ( first_name varchar2(64), last_name varchar2(64), empid NUMBER encrypt using AES256, salary NUMBER(6) encrypt using AES256 )

20 TDE Available Algorithms Triple DES (Data Encryption Standard) 3DES168 AES (Advanced Encryption Standard) AES128 AES192 (default) AES256

21 Performance? Equality searches possible when not salted Alter table credit_rating modify (person_id encrypt no salt) Encrypt person_id Create index person_id_idx on credit_rating (PERSON_ID) Select score from credit_rating where PERSON_ID='235901';

22 Performance? Equality searches possible when not salted Alter table credit_rating modify (person_id encrypt no salt) Create index over encrypted column Create index person_id_idx on credit_rating (PERSON_ID) Select score from credit_rating where PERSON_ID='235901';

23 Performance? Equality searches possible when not salted Alter table credit_rating modify (person_id encrypt no salt) Create index person_id_idx on credit_rating (PERSON_ID) Select score from credit_rating where PERSON_ID='235901'; Application remains unchanged

24 Transparent Data Encryption Overhead Storage Bytes per row per encrypted column Performance ~5% Very customer/system specific Depends on # tables Size of tables How tables are accessed

25 Transparent Data Encryption SALT vs. NO SALT SALT A random string is added to clear text before it is encrypted Multiple occurences of same clear text appear different when encrypted with salt Increased security Against pattern matching attack from hackers But: encrypted columns which are part of an index must be encrypted with NO SALT

26 Transparent Data Encryption Change Wallet Password Wallet password is independent from master key Column keys SYSTEM password SYS password Wallet manager supports password policy At least 8 characters Must contain number or special characters

27 Transparent Data Encryption Export of table data Export of encrypted data is only supported with data pump: Using exp utility: EXP-00107: Feature (string) of column string in table string.string is not supported. The table will not be exported. Using expdp data pump without encryption password: ORA-39173: Encrypted data has been stored unencrypted in dump file set. Using expdp data pump with encryption password: OK

28 TDE Administration SQL> desc dba_encrypted_columns Name Null? Type OWNER NOT NULL VARCHAR2(30) TABLE_NAME NOT NULL VARCHAR2(30) COLUMN_NAME NOT NULL VARCHAR2(30) ENCRYPTION_ALG VARCHAR2(29) SALT VARCHAR2(3)

29 Transparent Data Encryption When you loose your wallet Loosing your wallet is the most secure way to delete your data A wallet can not be recovered (even with the same wallet password) Wallet password and master key are not related Recommendation: backup your wallet frequently After change of wallet password After change of master key After column rekey Perform change of master key (master rekey) offline

30 Re-key the master key Security policy might require periodic update Command: alter system set key identified by 2naf1sh Password and master key are independent Re-encrypts all column keys

31 Re-keying the column keys Without changing the encryption algorithm: ALTER TABLE employee REKEY; Re-key the column key and change the algorithm: ALTER TABLE employee REKEY USING 'AES256'; Change the algorithm, without re-keying the column keys: ALTER TABLE employee ENCRYPT USING 'AES128';

32 TDE and Data Guard Production Database Physical Standby Data Encrypted On Backup Files Redo apply redo logs contain encrypted data

33 Supported data types varchar2 nvarchar2 number date binary_float (*) binary_double (*) timestamp raw char nchar interval day to second interval year to month

34 TDE - Unsupported data types LONG/LONG RAW LOB/BLOB SQL> create table test (c1 long encrypt) * ORA-28330: encryption is not allowed for this data type

35 TDE - Unsupported database features Materialized View logs Streams Sync and async CDC (Change Data Capture) Direct path insert LOBs Transportable Tablespaces

36 TDE - restrictions Transparent Data Encryption does not work with the following database features Index types other than B-tree Range scan search through an index Large object datatypes such as BLOB and CLOB Original import/export utilities Other database tools and utilities that directly access data files

37 How Oracle Advanced Security helps with CISP/PCI Section 3.4: Render sensitive cardholder information unreadable anywhere it is stored Transparent Data Encryption, part of the Oracle Advanced Security Option, encrypts any column with 3DES 128 bit or AES256, as required. Both TDE and Network Encryption, part of the Oracle Advanced Security Option, provide SHA-1 for hashing

38 How Oracle Advanced Security helps with CISP/PCI Section 3.5 (incl and ): Protect encryption keys against both disclosure and misuse, restrict access and store securely. Transparent Data Encryption stores the master key in the Oracle Wallet, and the encrypted column keys in the database Intruder would need access to OS file to get to wallet and database access to get to encrypted column keys.

39 How Oracle Advanced Security helps with CISP/PCI Section 4: Encrypt transmission of cardholder and sensitive information across public networks: Network Encryption, part of ASO, provides encryption of all traffic between Oracle Database and Oracle Application Server

40 Transparent Data Encryption Recommendations Do not misuse TDE as an authorization methode Do not encrypt all your data only data which needs to be protected

41 Transparent Data Encryption Recommendations (cont d) NEVER LOOSE YOUR WALLET!! WITHOUT WALLET DATA LOSS BACKUP YOUR WALLET!! WITHOUT CURRENT WALLET DATA LOSS NEVER FORGET YOUR WALLET PASSWORD! WITHOUT WALLET PASSWORD DATA LOSS

42 Transparent Data Encryption Recommendations (cont d) Rekey Operations Rekey master key: how often? Depends on regulations (SB1386, Sarbanes-Oxley) Regularly, but not too often (~once a year) Maximum number of TDE master keys is limited due to limited wallet size : max wallet size=64k (~240 master keys) : max wallet size=4m (>15M ) Rekey column Key: depending on your regulations Full table update

43 Transparent Data Encryption Recommendations (cont d) Wallet Management One Encryption Wallet per Database Do not use autologin wallet No support for multiple encryption_wallet_location Only one wallet location in sqlnet.ora

44 TDE in an SAP environment TDE Candidates Do NOT encrypt tables belonging to SAP core application SAP system should be startable without wallet Do not encrypt tables used by BR*Tools Do not encrypt all tables (~100 should be enough) When column is used in an index non-salted

45 TDE Support in SAP BR*TOOLS ENCRYPTION_WALLET_LOCATION parameter must be configured in sqlnet.ora to override Oracle default path Location of encryption wallet in SAP environment: $ORACLE_HOME/dbs (Unix) %ORACLE_HOME%\database (Windows) BR*Tools support backup and restore of Encryption wallet ewallet.p12 Prerequisite: encryption wallet exists in $ORACLE_HOME/dbs resp. %ORACLE_HOME%\database Auto-Login encryption wallet (cwallet.sso, if exist) will not get backed up by BR*Tools

46 TDE Support in SAP Dictionary No support for TDE in SAP dictionary at the moment

47 Alternate Solutions Instead of using TDE encryption you could also use one of the following options: RMAN Backup Encryption (ASO required) currently under evaluation RMAN now creates encrypted backups that cannot be restored by unauthorized people Oracle Secure Backup (OSB) OSB provides an optimized, highly efficient tape backup solution for the Oracle Database. OSB can store data on tape in encrypted form, providing protection against theft of backup tapes.

48 Oracle Secure Backup Integrated tape backup: Oracle Database Operating system files Encryption of data to tape Data at-rest protection Tape data protection at the lowest cost Oracle Databases RMAN File System Data UNIX Windows Linux NAS Oracle Secure Backup Centralized Tape Backup Management

49 Why Oracle Secure Backup? Encryption of data to tape Protects against misuse of business data Oracle Database manages encryption keys Certificate based authentication Outside parties cannot impersonate host Reduces cost of secure tape backups Only $3,000 per tape device Runs on Linux, Windows & UNIX Supports over 200 tape devices

50 RMAN Backup Encryption Oracle Recovery Manager (RMAN) Oracle Default Tool for Database Backups To Disk or Tape (MML) Encryption of Backup Advanced Encryption Standard (AES) Authentication: via userdefined password or via Oracle Wallet ASO required RMAN Database Area Media Management Layer Flash Recovery Area DIGITAL DATA STORAGE DIGITAL DATA STORAGE DIGITAL DATA STORAGE

51 TDE OSB RMAN Backup Encryption TDE Encryption of sensible data in database files on OS/file system level Encryption of sensible data in backups (disk and tape) Encryption of sensible data in archive logs (LogMiner) ASO license required Oracle Secure Backup (OSB) Encryption of backups to tape only (not backup to disk) No encryption of sensible data in database files No encryption of sensible data in archive logs Requires separate OSB license RMAN Backup Encryption (ASO required) Encryption of backups to disk and to tape No encryption of sensible data in database files No encryption of sensible data in archive logs ASO license required

52 For More Information Transparent Data Encryption Advanced Security Oracle Database Security Checklist or

53 SAP Notes : Transparent Data Encryption : Network Encryption

54 Oracle Metalink Notes Note : 10g R2 New Feature TDE: Transparent Data Encryption Note : How to Export/Import with Data Encrypted with Transparent Data Encryption (TDE)

55 Oracle Technology Network Oracle Database 10g index.html Oracle Database Security Oracle Advanced Security Oracle Advanced Security Transparent Data Encryption TDE

56 Oracle Technology Network TDE Frequently Asked Questions (FAQ) ASO Data Sheet df Oracle Secure Backup Oracle Security Checklist twp_security_checklist_db_database.pdf

57 DOAG e.v. Server Deutsche ORACLE-Anwendergruppe e.v. Special Interest Days: Oracle + SAP

58 TDE Pilot Customers Wanted

59

60

Oracle Database 11g: Security Release 2

Oracle Database 11g: Security Release 2 Oracle University Contact Us: + 38516306373 Oracle Database 11g: Security Release 2 Duration: 5 Days What you will learn In this course, students learn how they can use Oracle Database features to meet

More information

Oracle Database 11g: Security Release 2

Oracle Database 11g: Security Release 2 Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-97 Oracle Database 11g: Security Release 2 Duration: 5 Days What you will learn In this course, you'll learn how to use Oracle Database features

More information

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle Database 11g Security Essentials. Version: Demo

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle Database 11g Security Essentials. Version: Demo Vendor: Oracle Exam Code: 1Z0-528 Exam Name: Oracle Database 11g Security Essentials Version: Demo QUESTION 1 Which of the following tasks is the first task to perform when implementing Oracle Database

More information

TECHNOLOGY: Security Encrypting Tablespaces

TECHNOLOGY: Security Encrypting Tablespaces TECHNOLOGY: Security Encrypting Tablespaces By Arup Nanda Encrypt tablespaces transparently without affecting performance. In an era when data security is critical in almost every type of business, databases

More information

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

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

More information

Applying Oracle Technologies in PCI DSS certification process

Applying Oracle Technologies in PCI DSS certification process Applying Oracle Technologies in PCI DSS certification process Ilonka Duka, dipl. ing.ele. IT Infrastruktura Splitska Banka Societe Générale d.d. ilonka.duka@splitskabanka.hr Agenda Introduction: SGSB,

More information

Implementing ASO: Tips & Tricks. Kurt Lysy Global Security Architect

Implementing ASO: Tips & Tricks. Kurt Lysy Global Security Architect Implementing ASO: Tips & Tricks Kurt Lysy Global Security Architect 1 Agenda Proving use of ASO network encryption Centralized tnsnames.ora and sqlnet.ora Supporting multiple databases and encryption wallets

More information

Key Drivers for Data Security

Key Drivers for Data Security Security User Management Access Control Data Protection Monitoring Key Drivers for Data Security Regulatory Compliance Sarbanes-Oxley (SOX), Foreign Exchange Instruments and Exchange Law (J-SOX) EU Privacy

More information

Oracle Advanced Security Transparent Data Encryption (TDE)

Oracle Advanced Security Transparent Data Encryption (TDE) Oracle Advanced Security Transparent Data Encryption (TDE) Frequently Asked Questions (FAQ) M A R C H 2 0 1 8 Product Overview Q. What does Transparent Data Encryption (TDE) provide? A: TDE transparently

More information

MySQL Enterprise Security

MySQL Enterprise Security MySQL Enterprise Security Mike Frank Product Management Director Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Oracle Advanced Security Transparent Data Encryption Best Practices

Oracle Advanced Security Transparent Data Encryption Best Practices An Oracle White Paper July 2012 Oracle Advanced Security Transparent Data Encryption Best Practices Introduction... 1 Important Concepts... 1 Hardware cryptographic acceleration with SPARC T4 and Intel...

More information

Oracle CDC 调研报告 林子雨 北京大学计算机系数据库实验室 2006 年 11 月 10 日

Oracle CDC 调研报告 林子雨 北京大学计算机系数据库实验室 2006 年 11 月 10 日 Oracle CDC 调研报告 林子雨 北京大学计算机系数据库实验室 2006 年 11 月 10 日 The Redo Log and a Capture Process Redo log Every Oracle database has a set of two or more redo log files. The redo log files for a database are collectively

More information

Transparent Solutions for Security and Compliance with Oracle Database 11g. An Oracle White Paper September 2008

Transparent Solutions for Security and Compliance with Oracle Database 11g. An Oracle White Paper September 2008 Transparent Solutions for Security and Compliance with Oracle Database 11g An Oracle White Paper September 2008 Transparent Solutions for Privacy and Compliance with Oracle Database 11g INTRODUCTION Over

More information

Choosing the level that works for you!

Choosing the level that works for you! The Encryption Pyramid: Choosing the level that works for you! Eysha S. Powers eysha@us.ibm.com IBM, Enterprise Cryptography Extensive use of encryption is one of the most impactful ways to help reduce

More information

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

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

More information

Oracle Database 11g for Experienced 9i Database Administrators

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

More information

Use Case: Enhance security for a database with sensitive data. Koen Van Bastelaere Oracle DBA

Use Case: Enhance security for a database with sensitive data. Koen Van Bastelaere Oracle DBA Use Case: Enhance security for a database with sensitive data Koen Van Bastelaere Oracle DBA Agenda About me The project OS Database Application Encryption and identity Q&A 2 Agenda About me The project

More information

Genesys Security Deployment Guide. Encrypted Data in Databases

Genesys Security Deployment Guide. Encrypted Data in Databases Genesys Security Deployment Guide Encrypted Data in Databases 1/20/2018 Contents 1 Encrypted Data in Databases 1.1 Security Benefits 1.2 Supporting Components 1.3 Feature Description 1.4 Feature Configuration

More information

Vormetric Data Security

Vormetric Data Security Vormetric Data Security Simplifying Data Security for the Enterprise www.vormetric.com Agenda! Introductions! Vormetric Overview! Data Security Architecture Challenges! Product Architecture & Use Cases!

More information

Integration Guide. Oracle Database 11g & 11g Release 2 TDE Microsoft Windows Server 2008 (R2)

Integration Guide. Oracle Database 11g & 11g Release 2 TDE Microsoft Windows Server 2008 (R2) Integration Guide Oracle Database 11g & 11g Release 2 TDE Microsoft Windows Server 2008 (R2) Integration Guide: Oracle Database 11g & 11g Release 2 TDE Imprint copyright 2016 Utimaco IS GmbH Germanusstrasse

More information

VMware, SQL Server and Encrypting Private Data Townsend Security

VMware, SQL Server and Encrypting Private Data Townsend Security VMware, SQL Server and Encrypting Private Data Townsend Security 724 Columbia Street NW, Suite 400 Olympia, WA 98501 360.359.4400 Today s Agenda! What s new from Microsoft?! Compliance, standards, and

More information

Oracle Database Vault

Oracle Database Vault Oracle Database Vault DBA Administrative Best Practices ORACLE WHITE PAPER MAY 2015 Table of Contents Introduction 2 Database Administration Tasks Summary 3 General Database Administration Tasks 4 Managing

More information

Oracle Database Advanced Security Guide. 12c Release 2 (12.2)

Oracle Database Advanced Security Guide. 12c Release 2 (12.2) Oracle Database Advanced Security Guide 12c Release 2 (12.2) E85655-01 March 2017 Oracle Database Advanced Security Guide, 12c Release 2 (12.2) E85655-01 Copyright 1996, 2017, Oracle and/or its affiliates.

More information

Sensitive Data and Key Management for DBAs

Sensitive Data and Key Management for DBAs Sensitive Data and Key Management for DBAs Encryption Key Management Simplified Jonathan Intner 13 December, 2011 NYOUG, New Yorker Hotel Agenda Introduction Audience Sensitive Data > What makes data sensitive?

More information

McAfee Database Security

McAfee Database Security McAfee Database Security Sagena Security Day 6 September 2012 September 20, 2012 Franz Hüll Senior Security Consultant Agenda Overview database security DB security from McAfee (Sentrigo) VMD McAfee Vulnerability

More information

Assignment 6. This lab should be performed under the Oracle Linux VM provided in the course.

Assignment 6. This lab should be performed under the Oracle Linux VM provided in the course. Assignment 6 This assignment includes hands-on exercises in the Oracle VM. It has two Parts. Part 1 is SQL Injection Lab and Part 2 is Encryption Lab. Deliverables You will be submitting evidence that

More information

12.1 Multitenancy in real life

12.1 Multitenancy in real life 12.1 Multitenancy in real life 2017 HOUG szakmai nap Jozsef Horvath Budapest, 2017-11-08 Disclaimer This presentation: Does not intend to judge Oracle Multitenancy Does not intent to judge Oracle Corporation

More information

The Encryption Wizard for Oracle. API Library Reference

The Encryption Wizard for Oracle. API Library Reference The Encryption Wizard for Oracle For Oracle 9i, 10g and 11g Databases Version 7 Copyright 2003-2008 All Rights Reserved. Copyright 2008-2010 The Encryption Wizard for Oracle RDC) 12021 Wilshire Blvd Suite

More information

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP) Audience Data Warehouse Administrator Database Administrators Support Engineer Technical Administrator Technical Consultant Related Training Required Prerequisites Knowledge of Oracle Database 12c Knowledge

More information

VMware, SQL Server and Encrypting Private Data Townsend Security

VMware, SQL Server and Encrypting Private Data Townsend Security VMware, SQL Server and Encrypting Private Data Townsend Security 724 Columbia Street NW, Suite 400 Olympia, WA 98501 360.359.4400 Today s Agenda! Compliance, standards, and best practices! Encryption and

More information

Oracle Data Pump Encrypted Dump File Support

Oracle Data Pump Encrypted Dump File Support An Oracle White Paper September 2009 Oracle Data Pump Encrypted Dump File Support Introduction......... 1 Encrypted Dump File Overview...... 2 Encryption-related Parameters...... 3 ENCRYPTION.........

More information

DOAG Regionaltreffen Rhein-Neckar 20. Januar

DOAG Regionaltreffen Rhein-Neckar 20. Januar DOAG Regionaltreffen Rhein-Neckar 20. Januar 2011 1 Increased Data Security for SAP systems from Oracle Database Vault and Transparent Data Encryption Andreas Becker Principal Member

More information

DumpsKing. Latest exam dumps & reliable dumps VCE & valid certification king

DumpsKing.   Latest exam dumps & reliable dumps VCE & valid certification king DumpsKing http://www.dumpsking.com Latest exam dumps & reliable dumps VCE & valid certification king Exam : 1z1-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version

More information

Oracle Secure Backup: Achieve 75 % Cost Savings with Your Tape Backup

Oracle Secure Backup: Achieve 75 % Cost Savings with Your Tape Backup 1 Oracle Secure Backup: Achieve 75 % Cost Savings with Your Tape Backup Donna Cooksey Oracle Principal Product Manager John Swallow Waters Corporation Sr. Infrastructure Architect Enterprise Software Solutions

More information

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: Toll Free: 0008004401672 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery

More information

Ghost Data & Spectral Data - When is Encrypted Data Not Encrypted? And when is your data in places you didn t expect

Ghost Data & Spectral Data - When is Encrypted Data Not Encrypted? And when is your data in places you didn t expect Ghost Data & Spectral Data - When is Encrypted Data Not Encrypted? And when is your data in places you didn t expect J. S. Intner, Consulting, LLC 16 September, 2009 Agenda Introduction Background Why

More information

PCI Compliance Whitepaper

PCI Compliance Whitepaper PCI Compliance Whitepaper Publication date: February 25 th, 2008 Copyright 2006-2008, LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. Table of Contents Introduction...3 Crypto Complete

More information

Oracle Database 11g Data Guard

Oracle Database 11g Data Guard Oracle Database 11g Data Guard Overview This course introduces the delegate to the main architectural concepts of Data Guard. Delegates will learn how to use Oracle Data Guard to protect Oracle Databases

More information

Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11.

Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11. Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11.2 O R A C L E W H I T E P A P E R A U G U S T 2 0 1 7 Table of

More information

An Oracle White Paper July Methods for Downgrading from Oracle Database 11g Release 2

An Oracle White Paper July Methods for Downgrading from Oracle Database 11g Release 2 An Oracle White Paper July 2011 Methods for Downgrading from Oracle Database 11g Release 2 Introduction... 2 Oracle Database Downgrade Methods... 3 Downgrade Script... 3 Oracle Data Pump Export/Import

More information

Oracle Database 11g: New Features for Oracle 9i DBAs

Oracle Database 11g: New Features for Oracle 9i DBAs Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: New Features for Oracle 9i DBAs Duration: 5 Days What you will learn This course introduces students to the new features of Oracle Database

More information

Oracle Database 10g: New Features for Administrators Release 2

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

More information

<Insert Picture Here> Oracle Database Security

<Insert Picture Here> Oracle Database Security Oracle Database Security Ursula Koski Senior Principal Architect ursula.koski@oracle.com Ursula Koski Senior Principal Architect Senior Principal Architect Oracle User Group Liaison

More information

PCI Compliance Whitepaper

PCI Compliance Whitepaper PCI Compliance Whitepaper Publication date: July 27 th, 2009 Copyright 2007-2009, LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. Table of Contents Introduction... 3 Crypto Complete

More information

CO Oracle Database 12c: Backup and Recovery Workshop

CO Oracle Database 12c: Backup and Recovery Workshop CO-78850 Oracle Database 12c: Backup and Recovery Workshop Summary Duration 5 Days Audience Data Warehouse Administrators, Database Administrators, Support Engineers, Technical Administrators, Technical

More information

"Charting the Course... Oracle 18c DBA I (5 Day) Course Summary

Charting the Course... Oracle 18c DBA I (5 Day) Course Summary Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager Database Express (EMDE), SQL Developer and SQL*Plus.

More information

The Fastest and Most Cost-Effective Backup for Oracle Database: What s New in Oracle Secure Backup 10.2

The Fastest and Most Cost-Effective Backup for Oracle Database: What s New in Oracle Secure Backup 10.2 1 The Fastest and Most Cost-Effective Backup for Oracle Database: What s New in Oracle Secure Backup 10.2 Donna Cooksey Principal Product Manager, Oracle Corporation Sean McKeown

More information

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

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

More information

Database Auditing and Forensics for Privacy Compliance: Challenges and Approaches. Bob Bradley Tizor Systems, Inc. December 2004

Database Auditing and Forensics for Privacy Compliance: Challenges and Approaches. Bob Bradley Tizor Systems, Inc. December 2004 Database Auditing and Forensics for Privacy Compliance: Challenges and Approaches Bob Bradley Tizor Systems, Inc. December 2004 1 Problem Statement You re a DBA for an information asset domain consisting

More information

The Encryption Wizard for Oracle. API Library Reference

The Encryption Wizard for Oracle. API Library Reference The Encryption Wizard for Oracle For Oracle 10g, 11g and 12c Databases Version 8 All Rights Reserved. The Encryption Wizard for Oracle RDC) 12021 Wilshire Blvd Suite 108 Los Angeles, CA. 90025 310-281-1915

More information

Oracle Database Vault

Oracle Database Vault An Oracle White Paper July 2009 Oracle Database Vault Introduction... 3 Oracle Database Vault... 3 Oracle Database Vault and Regulations... 4 Oracle Database Vault Realms... 5 Oracle Database Vault Command

More information

Encryption on IBM i. Mark Flora Ciber MRMUG 2/2014

Encryption on IBM i. Mark Flora Ciber MRMUG 2/2014 Mark Flora Ciber MRMUG 2/2014 Threats Credit card information Inside and outside your organization Personnel data like SSN or phone number Inside and outside your organization Key business information

More information

Protecting Your Data With Encryption

Protecting Your Data With Encryption Protecting Your Data With Encryption Ed Leighton-Dick Kingfisher Technologies Thank you Sponsors! o Please visit the sponsors during the vendor break from 2:45 3:15 and enter their end-of-day raffles Event

More information

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: +386 1 588 88 13 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery Workshop,

More information

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

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-034 Title : Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP Vendor : Oracle Version : DEMO 1

More information

DELL EMC DATA DOMAIN WITH RMAN USING ENCRYPTION FOR ORACLE DATABASES

DELL EMC DATA DOMAIN WITH RMAN USING ENCRYPTION FOR ORACLE DATABASES DELL EMC DATA DOMAIN WITH RMAN USING ENCRYPTION FOR ORACLE DATABASES A Technical Review ABSTRACT With the threat of security breaches, customers are putting in place defenses from these security breaches.

More information

What s New with Oracle Data Pump in Oracle Database 12c. Dean Gagne Consulting Member of Technical Staff

What s New with Oracle Data Pump in Oracle Database 12c. Dean Gagne Consulting Member of Technical Staff 1 What s New with Oracle Data Pump in Oracle Database 12c Dean Gagne Consulting Member of Technical Staff Program Agenda Full Transportable Export/Import Exporting Views as Tables Detailed Timestamps for

More information

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: Toll Free: 0008004401672 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery

More information

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

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

More information

Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW

Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW Oracle University Contact Us: 0845 777 7711 Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW Duration: 5 Days What you will learn This Oracle Database 12c: Backup and Recovery Workshop will teach

More information

Oracle Database 11g: Administration Workshop I

Oracle Database 11g: Administration Workshop I Oracle Database 11g: Administration Workshop I Duration: 5 Days What you will learn This course is designed to give students a firm foundation in basic administration of Oracle Database 11g. In this class,

More information

Oracle Database 12c R2: Administration Workshop Ed 3 NEW

Oracle Database 12c R2: Administration Workshop Ed 3 NEW Oracle Database 12c R2: Administration Workshop Ed 3 NEW Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with a firm foundation

More information

VLDB. Partitioning Compression

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

More information

Compliance and Privileged Password Management

Compliance and Privileged Password Management Introduces Compliance and Privileged Password Management [ W H I T E P A P E R ] Written by Kris Zupan, CEO/CTO e-dmz Security, LLC April 13, 2007 Compliance and Privileged Password Management Overview

More information

Oracle Database 12c R2: Administration Workshop Ed 3

Oracle Database 12c R2: Administration Workshop Ed 3 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 12c R2: Administration Workshop Ed 3 Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course

More information

Oracle 1Z Oracle Database 10g: Administration II. Download Full Version :

Oracle 1Z Oracle Database 10g: Administration II. Download Full Version : Oracle 1Z0-043 Oracle Database 10g: Administration II Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-043 QUESTION: 172 You lost the index tablespace in your database. You decided

More information

Encryption and Redaction in Oracle Database 18c with Oracle Advanced Security O R A C L E W H I T E P A P E R M A R C H

Encryption and Redaction in Oracle Database 18c with Oracle Advanced Security O R A C L E W H I T E P A P E R M A R C H Encryption and Redaction in Oracle Database 18c with Oracle Advanced Security O R A C L E W H I T E P A P E R M A R C H 2 0 1 8 Table of Contents Table of Contents 0 Introduction 1 Preventing Database

More information

Architecture. Architecture. Introduction to Oracle 10g Express Edition. Help

Architecture. Architecture. Introduction to Oracle 10g Express Edition. Help Architecture Introduction to Oracle 10g Express Edition Client-server system Server: SERVEDB, Internal addess (from the lab) 192.168.0.252 External address (from home with OpenVPN) 10.17.2.91 Client: Web

More information

New Features Bulletin Replication Server Options 15.6

New Features Bulletin Replication Server Options 15.6 Bulletin Replication Server Options 15.6 Linux, Microsoft Windows, and UNIX DOCUMENT ID: DC01004-01-1560-01 LAST REVISED: November 2010 Copyright 2010 by Sybase, Inc. All rights reserved. This publication

More information

Introduction to Oracle

Introduction to Oracle Introduction to Oracle Architecture Client-server system Server: SERVEDB, Internal addess (from the lab) servedb.ing.man External address (from home with OpenVPN) 10.17.2.91 Client: Web interface: http://

More information

Tablespace Usage By Schema In Oracle 11g Rac

Tablespace Usage By Schema In Oracle 11g Rac Tablespace Usage By Schema In Oracle 11g Rac The APPS schema has access to the complete Oracle E-Business Suite data model. E-Business Suite Release 12.2 requires an Oracle database block size of 8K. An

More information

Oracle12c Release 1 New Features for Administrators (5 Days)

Oracle12c Release 1 New Features for Administrators (5 Days) www.peaklearningllc.com Oracle12c Release 1 New Features for Administrators (5 Days) Course Description This course provides a complete, hands-on introduction to the newest release of Oracle Enterprise

More information

Oracle Database Security - Top Things You Could & Should Be Doing Differently

Oracle Database Security - Top Things You Could & Should Be Doing Differently Oracle Database Security - Top Things You Could & Should Be Doing Differently Simon Pane Pythian Keywords: oracle database security Introduction When reviewing existing database security configurations

More information

SafeNet ProtectApp APPLICATION-LEVEL ENCRYPTION

SafeNet ProtectApp APPLICATION-LEVEL ENCRYPTION SafeNet ProtectApp APPLICATION-LEVEL ENCRYPTION Encrypt application data and keep it secure across its entire lifecycle no matter where it is transferred, backed up, or copied Rich application encryption

More information

Oracle 11g Data Guard Manual Failover Steps

Oracle 11g Data Guard Manual Failover Steps Oracle 11g Data Guard Manual Failover Steps Step by step approach to configure Oracle 11g Physical Standby Data Guard on CentOS 6.5 OS. In my case, Ingredients to simulate Physical Standby data guard SYSTEM

More information

Security Specification

Security Specification Security Specification Security Specification Table of contents 1. Overview 2. Zero-knowledge cryptosystem a. The master password b. Secure user authentication c. Host-proof hosting d. Two-factor authentication

More information

Oracle. Exam Questions 1Z Oracle Database 11g: New Features for 9i OCPs. Version:Demo

Oracle. Exam Questions 1Z Oracle Database 11g: New Features for 9i OCPs. Version:Demo Oracle Exam Questions 1Z0-055 Oracle Database 11g: New Features for 9i OCPs Version:Demo 1. Which is the source used by Automatic SQL Tuning that runs as part of the AUTOTASK framework? A. SQL statements

More information

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery Workshop,

More information

Understanding New Options in Data Protection for the Data Warehouse Environment

Understanding New Options in Data Protection for the Data Warehouse Environment Understanding New Options in Data Protection for the Data Warehouse Environment Ulf Mattsson, CTO, Protegrity Corporation Special Joint BI/DW & Web SIG Meeting February 3, 2010 Agenda Attacks on databases

More information

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

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Vendor : Oracle Version : DEMO

More information

Oracle Database 12c Release 2

Oracle Database 12c Release 2 Oracle Database 12c Release 2 New Features (OVERVIEW) Rhoda Sarmiento-Pereira Oracle Support Safe Harbor Statement The following is intended to outline our general product direction. It is intended for

More information

Oracle DBA Course Content

Oracle DBA Course Content 1 Oracle DBA Course Content Database Architecture: Introduction to Instance and Database How user connects to database How SQL statement process in the database Oracle data dictionary and its role Memory

More information

Automating Information Lifecycle Management with

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

More information

Oracle Exam 1z0-034 Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP Version: 6.0 [ Total Questions: 148 ]

Oracle Exam 1z0-034 Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP Version: 6.0 [ Total Questions: 148 ] s@lm@n Oracle Exam 1z0-034 Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP Version: 6.0 [ Total Questions: 148 ] Question No : 1 Which two statements are true about setting the FAST_ START_ MTTR_ TARGET

More information

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

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

More information

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

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

More information

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

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

More information

DOAG 2013 Oracle 12c Backup & Recovery

DOAG 2013 Oracle 12c Backup & Recovery Infrastructure at your Service. DOAG 2013 Oracle 12c Backup & Recovery Infrastructure at your Service. About me David Hueber Head of Service Management Senior Consultant Mobile +41 79 963 43 68 david.hueber@dbi-services.com

More information

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

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

More information

Oracle EXAM - 1Z Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP. Buy Full Product.

Oracle EXAM - 1Z Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP. Buy Full Product. Oracle EXAM - 1Z0-034 Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP Buy Full Product http://www.examskey.com/1z0-034.html Examskey Oracle 1Z0-034 exam demo product is here for you to test the quality

More information

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2 An Oracle White Paper September 2009 Methods for Upgrading to Oracle Database 11g Release 2 Introduction... 1 Database Upgrade Methods... 2 Database Upgrade Assistant (DBUA)... 2 Manual Upgrade... 3 Export

More information

Oracle10g Data Guard: Back to the Future

Oracle10g Data Guard: Back to the Future Oracle10g Data Guard: Back to the Future Phil Grice Principal Software Engineer Oracle Corporation Page 1 www.decus.de 1 Agenda Oracle Data Guard a Quick Introduction Potential Data Guard Configurations

More information

Course Contents of ORACLE 9i

Course Contents of ORACLE 9i Overview of Oracle9i Server Architecture Course Contents of ORACLE 9i Responsibilities of a DBA Changing DBA Environments What is an Oracle Server? Oracle Versioning Server Architectural Overview Operating

More information

Exam : Oracle 1Z0 043

Exam : Oracle 1Z0 043 Exam : Oracle 1Z0 043 Title : oracle database 10g:administration ii Update : Demo http://www.killtest.com 1. You have set the value of the NLS_TIMESTAMP_TZ_FORMAT parameter in the parameter file to YYYY

More information

University of Pittsburgh Security Assessment Questionnaire (v1.7)

University of Pittsburgh Security Assessment Questionnaire (v1.7) Technology Help Desk 412 624-HELP [4357] technology.pitt.edu University of Pittsburgh Security Assessment Questionnaire (v1.7) Directions and Instructions for completing this assessment The answers provided

More information

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

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

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13 1 What s New in Security in the Latest Generation of Database Technology Thomas Kyte http://asktom.oracle.com 2 The following is intended to outline our general product direction. It is intended for information

More information

Purpose. Configuring ARCHIVELOG mode

Purpose. Configuring ARCHIVELOG mode Purpose This document provides a guide to setting up the backup process specific to Oracle Database Standard Edition One on Dell servers. The following backup process takes advantage of the new Oracle

More information

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

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

More information

Oracle Database 12c: Data Guard Administration LVC

Oracle Database 12c: Data Guard Administration LVC Oracle University Contact Us: Local: 0180 2000 526 Intl: +49 8914301200 Oracle Database 12c: Data Guard Administration LVC Duration: 4 Days What you will learn This Oracle Database 12c: Data Guard Administration

More information