DOAG Conference Fast Backup & Restore using Multisection November Nürnberg. Sinan Petrus Toma

Size: px
Start display at page:

Download "DOAG Conference Fast Backup & Restore using Multisection November Nürnberg. Sinan Petrus Toma"

Transcription

1 DOAG Conference November Nürnberg Fast Backup & Restore using Multisection Sinan Petrus Toma

2 About me Sinan Petrus Toma Oracle Database Administrator Page

3 Finanz Informatik GmbH & Co. KG IT Service Provider for Sparkassen-Finanzgruppe 393 Sparkassen, 8 Landesbanken, 8 Landesbausparkassen, DekaBank, IT Services: Application Development Infrastructure and Computer Center Operating Consulting, Training, and Support Based in Frankfurt a.m., Hannover, and Münster Employees: ~ Oracle Databases: ~ All systems: ~ 300M transactions per day Page

4 Agenda Multisection Backup Backup Configurations Examples Backup & Restore Multiplexed Backup Section Size Considerations Further Backup Improvements Multisection VALIDATE Multisection Performance Data Duplexed Backup Summary Page

5 Multisection Backup Divide large datafiles into sections can be backed up in parallel File section: continuous range of blocks in a datafile SECTION SIZE keyword in BACKUP command datafile section 1 session 1 backup set 1 section 2 session 2 backup set 2 section 3 session 3 backup set 3 section 4 session 4 backup set 4 Page

6 Multisection Backup Prior to Oracle 11g Lowest unit of RMAN parallelism was datafile Could not backup single large datafile in parallel From Oracle 11g multisection backups for: Full backups using backup sets Incremental level 0 backups using backup sets From Oracle 12c multisection backups for: Full backups using backup sets or image copies Incremental level 0 backups using backup sets or image copies Incremental level 1 backups (using backup sets) Page

7 Backup Configurations Option Default Description PARALLELISM 1 Number of processes work in parallel MAXOPENFILES 8 FILESPERSET 64 Number of files can be read simultaneously by each channel Maximum number of files in each backup set MAXPIECESIZE unlimited Maximum size of a backup piece SECTION SIZE not defined Maximum size of a file section Page

8 Example 1: PARALLELISM = 4 Option Default Example 1 PARALLELISM 1 4 MAXOPENFILES 8 8 FILESPERSET MAXPIECESIZE unlimited unlimited SECTION SIZE not defined not defined run { ALLOCATE CHANNEL ch1 DEVICE TYPE disk; ALLOCATE CHANNEL ch2 DEVICE TYPE disk; ALLOCATE CHANNEL ch3 DEVICE TYPE disk; ALLOCATE CHANNEL ch4 DEVICE TYPE disk; BACKUP DATABASE TAG backup01; } 17 datafiles #1 = 666M Page

9 Example 1: Backup Metadata SELECT s.recid, s.pieces, p.piece#, p.handle, s.multi_section, count(d.file#) count_df FROM v$backup_set s JOIN v$backup_piece p ON (p.recid = s.recid) JOIN v$backup_datafile d ON (d.set_stamp = p.set_stamp AND d.set_count = p.set_count) WHERE p.tag = 'BACKUP01' GROUP BY s.recid, s.pieces, p.piece#, p.handle, s.multi_section, p.compressed ORDER BY s.recid, p.piece#; Page

10 Example 1: Backup Metadata Details SELECT s.recid, s.pieces, p.piece#, p.handle, s.multi_section, d.file# FROM v$backup_set s JOIN v$backup_piece p ON (p.recid = s.recid) JOIN v$backup_datafile d ON (d.set_stamp = p.set_stamp AND d.set_count = p.set_count) WHERE p.tag = 'BACKUP01' ORDER BY s.recid, p.piece#, d.file#; Page

11 Example 1: Restore run { ALLOCATE CHANNEL ch1 DEVICE TYPE disk; ALLOCATE CHANNEL ch2 DEVICE TYPE disk; ALLOCATE CHANNEL ch3 DEVICE TYPE disk; ALLOCATE CHANNEL ch4 DEVICE TYPE disk; SET NEWNAME FOR DATAFILE 1 TO '/tmp/restore01.dbf'; RESTORE DATAFILE 1 FROM TAG = 'BACKUP01'; } Page

12 Example 1: Multiplexed Backup Sets datafile 1 datafile 2 datafile 3 session 1 backup set datafile 4 backup set 1 n datafile Page

13 Multiplexed Backup Backup set contains multiple datafiles Only whole files, never partial files, are included in a backup set RMAN simultaneously reads multiple files from disk and writes their blocks into the same backup set Image copies can never be multiplexed Level of Multiplexing = min(filesperset, min(maxopenfiles, files_per_channel)) Disadvantages Restore a datafile must read complete backup set and search for datafile blocks Only one session per datafile Page

14 Example 2: MAXOPENFILES = 1 Option Default Example 1 PARALLELISM 1 4 MAXOPENFILES 8 1 FILESPERSET MAXPIECESIZE unlimited unlimited SECTION SIZE not defined not defined run { ALLOCATE CHANNEL ch1 DEVICE TYPE disk MAXOPENFILES = 1; ALLOCATE CHANNEL ch2 DEVICE TYPE disk MAXOPENFILES = 1; ALLOCATE CHANNEL ch3 DEVICE TYPE disk MAXOPENFILES = 1; ALLOCATE CHANNEL ch4 DEVICE TYPE disk MAXOPENFILES = 1; BACKUP DATABASE TAG backup02; } Page

15 Example 2: Backup Metadata Page

16 Example 2: MAXOPENFILES = 1 datafile 1 datafile 2 session 1 backup set backup set 1 n datafile Page

17 Example 2: MAXOPENFILES = 1 Distribution inside the backup set changed 2 files per set instead of 6 or 8 MAXOPENFILES = 1 Session will read one datafile at a time Session will write the backup data into the backup piece sequentially FILESPERSET still > 1 MAXPIECESIZE set to default (=unlimited) backup set is usually stored in 1 backup piece = FILESPERPIECE Page

18 Example 3: FILESPERSET = 1 Option Default Example 1 PARALLELISM 1 4 MAXOPENFILES 8 1 FILESPERSET 64 1 MAXPIECESIZE unlimited unlimited SECTION SIZE not defined not defined run { ALLOCATE CHANNEL ch1 DEVICE TYPE disk MAXOPENFILES = 1; ALLOCATE CHANNEL ch2 DEVICE TYPE disk MAXOPENFILES = 1; ALLOCATE CHANNEL ch3 DEVICE TYPE disk MAXOPENFILES = 1; ALLOCATE CHANNEL ch4 DEVICE TYPE disk MAXOPENFILES = 1; BACKUP DATABASE FILESPERSET = 1 TAG backup03; } Page

19 Example 3: Backup Metadata Page

20 Example 3: FILESPERSET = 1 backup set 1 datafile 1 session datafile 2 session 2 backup set backup set 1 1 datafile Page

21 Example 4: MAXPIECESIZE = 200M Option Default Example 1 PARALLELISM 1 4 MAXOPENFILES 8 1 FILESPERSET 64 1 MAXPIECESIZE unlimited 200M SECTION SIZE not defined not defined run { ALLOCATE CHANNEL ch1 DEVICE TYPE disk MAXOPENFILES = 1 MAXPIECESIZE = 200M; ALLOCATE CHANNEL ch2 DEVICE TYPE disk MAXOPENFILES = 1 MAXPIECESIZE = 200M; ALLOCATE CHANNEL ch3 DEVICE TYPE disk MAXOPENFILES = 1 MAXPIECESIZE = 200M; ALLOCATE CHANNEL ch4 DEVICE TYPE disk MAXOPENFILES = 1 MAXPIECESIZE = 200M; BACKUP DATABASE FILESPERSET = 1 TAG backup04; } Page

22 Example 4: RMAN Output Page

23 Example 4: Backup Metadata Page

24 Example 4: MAXPIECESIZE = 200M backup set backup set datafile 1 session 1 backup set backup set backup set n 1 datafile Page

25 Example 4: Restore run { ALLOCATE CHANNEL ch1 DEVICE TYPE disk; ALLOCATE CHANNEL ch2 DEVICE TYPE disk; ALLOCATE CHANNEL ch3 DEVICE TYPE disk; ALLOCATE CHANNEL ch4 DEVICE TYPE disk; SET NEWNAME FOR DATAFILE 1 TO '/tmp/restore01.dbf'; RESTORE DATAFILE 1 FROM TAG = 'BACKUP04'; } Page

26 Example 5: SECTION SIZE = 200M Option Default Example 1 PARALLELISM 1 4 MAXOPENFILES 8 1 FILESPERSET 64 1 MAXPIECESIZE unlimited unlimited SECTION SIZE not defined 200M run { ALLOCATE CHANNEL ch1 DEVICE TYPE disk MAXOPENFILES = 1; ALLOCATE CHANNEL ch2 DEVICE TYPE disk MAXOPENFILES = 1; ALLOCATE CHANNEL ch3 DEVICE TYPE disk MAXOPENFILES = 1; ALLOCATE CHANNEL ch4 DEVICE TYPE disk MAXOPENFILES = 1; BACKUP DATABASE FILESPERSET = 1 SECTION SIZE = 200M TAG backup05; } Page

27 Example 5: RMAN Output (25600*8)/1024 = 200M (( )*8)/1024 = 66MB Page

28 Example 5: Backup Metadata Page

29 Example 5: SECTION SIZE = 200M datafile section 1 section 2 section 3 section 4 session 1 session 2 session 3 session 4 backup set backup set backup set backup set backup set n 1 datafile Page

30 Example 5: Restore Command run { ALLOCATE CHANNEL ch1 DEVICE TYPE disk; ALLOCATE CHANNEL ch2 DEVICE TYPE disk; ALLOCATE CHANNEL ch3 DEVICE TYPE disk; ALLOCATE CHANNEL ch4 DEVICE TYPE disk; SET NEWNAME FOR DATAFILE 1 TO '/tmp/restore01.dbf'; RESTORE DATAFILE 1 FROM TAG = 'BACKUP05'; } Page

31 Example 5: Restore Output Page

32 Multisection AS COPY FILESPERSET option cannot be used with AS COPY: RMAN run { BACKUP AS COPY DATAFILE 1 SECTION SIZE = 200M TAG backup06; } Page

33 Multisection AS COPY SELECT file#, name FROM v$datafile_copy WHERE tag = 'BACKUP06'; Restore by only ONE channel!!! Copy on disk no restore needed Use SWITCH DATAFILE TO COPY Page

34 Multisection Further Information SECTION SIZE and MAXPIECESIZE mutually exclusive FILESPERSET > 1 + SECTION SIZE FILESPERSET = 1 Multisection always with FILESPERSET = 1 Up to 256 Sections per datafile Section size > file size RMAN does not use multisection for that file Section size to small and produces > 256 sections RMAN increases the section size to a value that results in exactly 256 sections Page

35 Multisection Further Information Backup of datafile not completed successfully Possible to get records in the repository of partial backup set RMAN does not consider partial backups for restore & recovery Backup not restartable Fails after section 1 and 2 has to be backed up again must use DELETE command to delete the records Non-multisection Record in repository only if backup completes successfully Can only be used to backup the datafiles Cannot use this option to backup the control file Page

36 Section Size Considerations Choose section size depending on Datafile size Degree of parallelism Datafile size = 32G / 8 Channels Section Size = 4G Possible to choose different section sizes for different files Back up files separately Develop own backup strategy Page

37 Section Size Considerations (Huge) increase of number of backup sets Can your device or tape manager handle this? Parallelism More I/O and CPU usage Only Enterprise Edition Page

38 Further Backup Improvements BACKUP_TAPE_IO_SLAVES = false RMAN allocates tape buffers from PGA BACKUP_TAPE_IO_SLAVES = true RMAN allocates tape buffers from SGA (Large Pool) Large Pool not specified from Shared Pool Shared Pool too small from PGA Advanced Compression Option Medium Otherwise Basic Page

39 Multisection VALIDATE Check for corrupt blocks and missing files Determine whether a backup set can be restored [BACKUP] VALIDATE [CHECK LOGICAL] SECTION SIZE 2G DATABASE; VALIDATE can check individual backup sets and data blocks BACKUP VALIDATE not Page

40 Multisection VALIDATE VALIDATE CHECK LOGICAL SECTION SIZE 200M DATAFILE 1; Page

41 Multisection Backup Performance Data Backup Database DB Size Config E1 Config E5 Time % 55G 00:10 00:08 80% 265G 01:41 01:30 89% Backup Datafile: Section Size = 2G DB Size Config E1 Config E5 Time % 100G (Bigfile) 00:39 00:14 36% Option E1 E5 PARALLELISM 4 4 MAXOPENFILES 8 1 FILESPERSET 64 1 MAXPIECESIZE unl. unl. SECTION SIZE - 200M Page

42 Multisection Restore Performance Data Restore Database DB Size Config E1 Config E5 Time % 55G 00:29 00:17 59% 265G 02:41 02:06 78% Restore Datafile: Section Size = 2G File Size Config E1 Config E5 Time % 8G 00:08 00:03 38% 16G 00:24 00:06 25% 32G 01:01 00:12 20% 32G (system load) 100G (Bigfile) 03:29 00:50 24% 00:34 00:12 35% Page

43 Duplexed Backup Sets Make multiple backups of the same backup set simultaneously when backing up datafiles, control file, archived redo logs, or server parameter file Up to four duplexed copies of each backup piece, to disk OR tape Not to disk AND tape simultaneously Cannot duplex image copies only backup sets run { BACKUP AS BACKUPSET COPIES 3 FORMAT /u01/copy_1_%u, /u02/copy_2_%u, /u03/copy_3_%u [SECTION SIZE = 200M] DATABASE; } Page

44 Duplexed Multiplexed Backup Sets datafile 1 datafile 2 datafile 3 datafile 4 session 1 backup set Page

45 Duplexed Multisection Backup Sets datafile section 1 session backup set 1 section 2 session backup set 2 section 3 session backup set 3 section 4 session backup set 4 Page

46 Summary Option E1 E2 E3 E4 E5 PARALLELISM MAXOPENFILES FILESPERSET MAXPIECESIZE unlimited unlimited unlimited 200M unlimited SECTION SIZE M Set : Datafile 1:n 1:n 1:1 n:1 n:1 Restore Parallelism Thank you for your kind attention Page

ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II

ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II CONTEÚDO PROGRAMÁTICO Core Concepts and Tools of the Oracle Database The Oracle Database Architecture: Overview ASM Storage Concepts Connecting

More information

Oracle Database 11g: Administration Workshop I DBA Release 2

Oracle Database 11g: Administration Workshop I DBA Release 2 Oracle Database 11g: Administration Workshop II DBA Release 2 What you will learn: This course takes the database administrator beyond the basic tasks covered in the first workshop. The student begins

More information

Oracle Database 11g Administration Workshop II

Oracle Database 11g Administration Workshop II Oracle Database 11g Administration Workshop II Course information Days : 5 Total lessons : 20 Suggested Prerequisites : Oracle Database 11g: SQL Fundamentals I Oracle Database 11g: Administration Workshop

More information

Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop II

Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop II Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop II What you will learn This Oracle Database 11g: Administration Workshop II Release 2 training takes the database

More information

ORACLE DATABASE: ADMINISTRATION WORKSHOP II

ORACLE DATABASE: ADMINISTRATION WORKSHOP II ORACLE DATABASE: ADMINISTRATION WORKSHOP II CORPORATE COLLEGE SEMINAR SERIES Date: March 18 April 25 Presented by: Lone Star Corporate College in partnership with the Oracle Workforce Development Program

More information

Protecting Oracle databases with HPE StoreOnce Catalyst and RMAN

Protecting Oracle databases with HPE StoreOnce Catalyst and RMAN Protecting Oracle databases with HPE StoreOnce Catalyst and RMAN Oracle database backup using the HPE StoreOnce Catalyst Plug-in for Oracle RMAN Technical white paper Technical white paper Contents Introduction...

More information

ORACLE DATABASE: ADMINISTRATION WORKSHOP II

ORACLE DATABASE: ADMINISTRATION WORKSHOP II ORACLE DATABASE: ADMINISTRATION WORKSHOP II CORPORATE COLLEGE SEMINAR SERIES Date: March 18 April 25 Presented by: Lone Star Corporate College in partnership with the Oracle Workforce Development Program

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

Oracle DBA workshop I

Oracle DBA workshop I Complete DBA(Oracle 11G DBA +MySQL DBA+Amazon AWS) Oracle DBA workshop I Exploring the Oracle Database Architecture Oracle Database Architecture Overview Oracle ASM Architecture Overview Process Architecture

More information

Incrementally Updating Backups Tips and Tricks

Incrementally Updating Backups Tips and Tricks Infrastructure at your Service. Incrementally Updating Backups Tips and Tricks Oracle 12.1.0.2 - Linux x86 64bit About me Infrastructure at your Service. William Sescu Consultant +41 78 674 12 90 william.sescu@dbi-services.com

More information

ORANET- Course Contents

ORANET- Course Contents ORANET- Course Contents 1. Oracle 11g SQL Fundamental-l 2. Oracle 11g Administration-l 3. Oracle 11g Administration-ll Oracle 11g Structure Query Language Fundamental-l (SQL) This Intro to SQL training

More information

Oracle Database 11g: Administration Workshop II Release 2

Oracle Database 11g: Administration Workshop II Release 2 Oracle Database 11g: Administration Workshop II Release 2 Course Details Duration: Course code: 5 Days OC11GDBA2R2 Overview: This course takes the database administrator beyond the basic tasks covered

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

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

A. Automatic memory management is disabled because PGA_AGGREGATE_TARGET and SGA_TARGET are not set.

A. Automatic memory management is disabled because PGA_AGGREGATE_TARGET and SGA_TARGET are not set. Volume: 148 Questions Question No : 1 memory_target big integer 808M pga_aggregate_target big integer 0 sga_target big integer 0 SQL> SHOW PARAMETER SGA_MAX_SIZE NAME TYPE VALUE sga_max_size big integer

More information

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

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

More information

Oracle 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

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-063 Title : Oracle Database 12c: Advanced Administration Vendor : Oracle Version : DEMO Get Latest

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

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

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

Recovery Manager Concepts

Recovery Manager Concepts Recovery Manager Concepts Joseph S Testa Data Management Consulting (64) 79-9000 Ohio Oracle Users Group Apr 2003 Introduction Who is using RMAN for backup/recovery? Have you tested your recovery scenarios?

More information

Reporting from the RMAN repository

Reporting from the RMAN repository New York Oracle Users Group Reporting from the RMAN repository 21-September 2006 Tim Gorman Evergreen Database Technologies, Inc. Agenda Shifting the mind-set It s not about doing backups It s about populating

More information

1. Name of Course: Oracle Database 12c: Backup and Recovery Workshop

1. Name of Course: Oracle Database 12c: Backup and Recovery Workshop ITSW 2037 Course Syllabus 1. Name of Course: Oracle Database 12c: Backup and Recovery Workshop 2. Number of Clock Hours: 60 hours 3. Course Description: Students will gain an understanding of Oracle database

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

Oracle Database Administration

Oracle Database Administration A Active (Current) and Inactive Redo Log Files... 12:8 Alert and Trace Log Files... 1:34 Alert Log Files... 1:34 ALTER TABLE Statement - Reasons for using... 9:18 ALTER TABLESPACE... 7:23 Application Development...

More information

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

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

More information

Oracle Recovery Manager Tips and Tricks for On-Premises and Cloud Databases

Oracle Recovery Manager Tips and Tricks for On-Premises and Cloud Databases Oracle Recovery Manager Tips and Tricks for On-Premises and Cloud Databases CON6677 Marco Calmasini Sr. Principal Product Manager, Oracle Gagan Singh, Sr. Database Architect, Intel Copyright 2017, Oracle

More information

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

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

More information

Exam Prep Seminar Package: Oracle Database 12c Administrator Certified Associate

Exam Prep Seminar Package: Oracle Database 12c Administrator Certified Associate Oracle University Contact Us: +27 (0)11 319-4111 Exam Prep Seminar Package: Oracle Database 12c Administrator Certified Associate Duration: 1 Day What you will learn This package provides everything an

More information

Steps how to duplicate a database to a new machine. Version 10gR2

Steps how to duplicate a database to a new machine. Version 10gR2 Steps how to duplicate a database to a new machine. Version 10gR2 First take a fresh backup of the target database set the ORACLE_* variables If the databse is running in noarchivelog mode, shut it down

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

Oracle Database 11g: Administration I

Oracle Database 11g: Administration I Oracle 1z0-052 Oracle Database 11g: Administration I Version: 7.0 Topic 1, Volume A Oracle 1z0-052 Exam QUESTION NO: 1 You notice that the performance of the database has degraded because of frequent checkpoints.

More information

Oracle Database 11g: Administration Workshop II

Oracle Database 11g: Administration Workshop II Oracle Database 11g: Administration Workshop II Duration: 5 Days What you will learn In this course, the concepts and architecture that support backup and recovery, along with the steps of how to carry

More information

Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)?

Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)? Volume: 176 Questions Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)? A. A DBA can check specific tables with the DMU B. The database

More information

Disaster Recovery: Restore Database from One Server to another Server when Different Location

Disaster Recovery: Restore Database from One Server to another Server when Different Location Disaster Recovery: Restore Database from One Server to another Server when Different Location Mohamed Azar Oracle DBA http://mohamedazar.wordpress.com 1 Mohamed Azar http://mohamedazar.wordpress.com Step

More information

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

Oracle - Oracle Database 12c: Backup and Recovery Workshop Ed 2 Oracle - Oracle Database 12c: Backup and Recovery Workshop Ed 2 Code: Lengt h: URL: 12cDB-BR 5 days View Online This Oracle Database 12c: Backup and Recovery Workshop will teach you how to evaluate your

More information

Course Outline: Oracle Database 11g: Administration II. Learning Method: Instructor-led Classroom Learning. Duration: 5.

Course Outline: Oracle Database 11g: Administration II. Learning Method: Instructor-led Classroom Learning. Duration: 5. Course Outline: Oracle Database 11g: Administration II Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40 hrs Overview: In this course, the concepts and architecture that support

More information

Discover Best of Show März 2016, Düsseldorf

Discover Best of Show März 2016, Düsseldorf Discover Best of Show 2016 2. - 3. März 2016, Düsseldorf Agenda 2 Agenda StoreOnce and Preparation SQL Backup Prerequistes Backup and Optimization Oracle Backup Prerequistes Backup and Optimization Copy

More information

Oracle Database 11g: SQL Fundamentals I

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

More information

Oracle. Exam Questions 1Z Oracle Database 11g: Administration I. Version:Demo

Oracle. Exam Questions 1Z Oracle Database 11g: Administration I. Version:Demo Oracle Exam Questions 1Z0-052 Oracle Database 11g: Administration I Version:Demo 1. You notice that the performance of the database has degraded because of frequent checkpoints. Which two actions resolve

More information

Oracle on HP Storage

Oracle on HP Storage Oracle on HP Storage Jaime Blasco EMEA HP/Oracle CTC Cooperative Technology Center Boeblingen - November 2004 2003 Hewlett-Packard Development Company, L.P. The information contained herein is subject

More information

ORACLE RMAN DESIGN BEST PRACTICES WITH PANZURA QUICKSILVER CLOUD STORAGE CONTROLLERS

ORACLE RMAN DESIGN BEST PRACTICES WITH PANZURA QUICKSILVER CLOUD STORAGE CONTROLLERS WHITE PAPER ORACLE RMAN DESIGN BEST PRACTICES WITH PANZURA QUICKSILVER CLOUD STORAGE CONTROLLERS Oracle is the de facto standard in the enterprise world when it comes to mission critical databases. Panzura

More information

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

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

More information

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps:// IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com Exam : 1Z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Version : DEMO 1 / 7 1.Which

More information

COURSE CONTENT. ORACLE 10g/11g DBA. web: call: (+91) / 400,

COURSE CONTENT. ORACLE 10g/11g DBA.   web:  call: (+91) / 400, COURSE CONTENT ORACLE 10g/11g DBA 1. Introduction (Database Architecture) Oracle 10g: Database Describe course objectives Explore the Oracle 10g database architecture 2: Installing the Oracle Database

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

Backup Methods from Practice

Backup Methods from Practice Backup Methods from Practice Optimized and Intelligent Roland Stirnimann @rstirnimann_ch BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA

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

How to Recover the lost current control file, or the current control file is inconsistent with files that you need to recover??

How to Recover the lost current control file, or the current control file is inconsistent with files that you need to recover?? How to Recover the lost current control file, or the current control file is inconsistent with files that you need to recover?? If it is multiplexed then replace the lost one with the available one else

More information

Exadata Database Machine Backup and Restore Configuration and Operational Best Practices O R A C L E W H I T E P A P E R J U L Y

Exadata Database Machine Backup and Restore Configuration and Operational Best Practices O R A C L E W H I T E P A P E R J U L Y Exadata Database Machine Backup and Restore Configuration and Operational Best Practices O R A C L E W H I T E P A P E R J U L Y 2 0 1 8 Table of Contents Introduction 1 Backup Options 1 Exadata Database

More information

C:\Program Files (x86)\notepad++\change.log 26 August :42

C:\Program Files (x86)\notepad++\change.log 26 August :42 C:\Program Files (x86\notepad++\change.log 26 August 2012 04:42 CREATING PHYSICAL STANDBY DATABASE STEPS: @PRASHANT DIXIT --------------------------------------------- A standby database is a database

More information

How HP delivered a 3TB/hour Oracle TM backup & 1TB/hour restore. Andy Buckley Technical Advocate HP Network Storage Solutions

How HP delivered a 3TB/hour Oracle TM backup & 1TB/hour restore. Andy Buckley Technical Advocate HP Network Storage Solutions How HP delivered a 3TB/hour Oracle TM backup & 1TB/hour restore Andy Buckley Technical Advocate HP Network Storage Solutions Why Oracle? RDBMS Market share 2002 (%) NCR 3.5 Microsoft 22.8 Others 7.1 Oracle

More information

Recovery without Backup. All Data Lost?

Recovery without Backup. All Data Lost? An Overview and Field Report Igor Romansky Peter Jensch Trivadis GmbH, Stuttgart DOAG Regio-Treffen Stuttgart, July 21th 2016 BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

More information

Installing the Oracle Database Softwar

Installing the Oracle Database Softwar Contents chapter 1:Architecture Oracle Database Architecture Database Structures Oracle Memory Structures Process Structures Oracle Instance Management Server Process and Database Buffer Cache Physical

More information

RMAN with ZDLRA at Exelon

RMAN with ZDLRA at Exelon RMAN with ZDLRA at Exelon Who am I? Been a DBA since 1992 Oracle 6.0.7 Various development and Unix System Administration From Denmark. Immigrated to the US in 1996. Became a US Citizen in 2015 Worked

More information

Backing Up Oracle with TSM

Backing Up Oracle with TSM Backing Up Oracle with TSM Bill Mansfield Senior Consultant, TSM Specialist Solution Technology Inc Who is Solution Technology IBM Premier Business Partner $90M+ in Sales 0+ Employees 700 years of IT Sales

More information

Technical White Paper

Technical White Paper Setting up the DR Series System as a CIFS or NFS target on Oracle Recovery Manager Technical White Paper Quest Engineering October 2017 ContentsTechnical White Paper 1 2017 Quest Software Inc. ALL RIGHTS

More information

1z z0-060 Upgrade to Oracle Database 12c

1z z0-060 Upgrade to Oracle Database 12c 1z0-060 Number: 1z0-060 Passing Score: 800 Time Limit: 120 min File Version: 7.1 1z0-060 Upgrade to Oracle Database 12c Exam A QUESTION 1 Your multitenant container (CDB) contains two pluggable databases

More information

What was new in 11g for Backup and Recovery? Contents

What was new in 11g for Backup and Recovery? Contents What was new in 11g for Backup and Recovery? Contents Introduction... 3 RMAN New Features and Enhancements... 3 Proactive Health Check... 3 Database Recovery Advisor... 6 Faster Backup Compression... 11

More information

ORACLE DBA TRAINING IN BANGALORE

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

More information

Oracle Database 11g: New Features for Administrators Release 2

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

More information

How to Backup & Recovery Enormous Databases?

How to Backup & Recovery Enormous Databases? How to Backup & Recovery Enormous Databases? Husnu Sensoy husnu.sensoy@gmail.com December 2, 2009 Content 1 Introduction 2 How does Incrementally Updated Backup work? How to Recover in Case of a Failure?

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

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

SELECTING AN ORACLE BACKUP SOLUTION PART 3: HOT BACKUPS WITH THE NETBACKUP FOR ORACLE ADVANCED BLI AGENT

SELECTING AN ORACLE BACKUP SOLUTION PART 3: HOT BACKUPS WITH THE NETBACKUP FOR ORACLE ADVANCED BLI AGENT VERITAS Education INSTRUCTOR ARTICLES APRIL 2003 1. Selecting an Oracle Backup Solution Part 3: Hot Backups with the NetBackup for Oracle Advanced BLI Agent 2. Using a Volume Snapshot to Recover a Lost

More information

FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK

FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK 31 October, 2017 FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK Document Filetype: PDF 111.76 KB 0 FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK You took this cold RMAN backup from a development database, your developpers

More information

Oracle RMAN for Absolute Beginners

Oracle RMAN for Absolute Beginners Oracle RMAN for Absolute Beginners Darl Kuhn Apress Contents About the Author Acknowledgments Introduction xvii xix xxi Chapter 1: Getting Started... 1 Connecting to Your Database 1 Establishing OS Variables

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

Oracle - Oracle Database 11g: Backup and Recovery Workshop (Training On Demand)

Oracle - Oracle Database 11g: Backup and Recovery Workshop (Training On Demand) Oracle - Oracle Database 11g: Backup and Recovery Workshop (Training On Demand) Code: URL: D89616GC10 View Online This Oracle Database 11g: Backup and Recovery Workshop will teach you how to evaluate your

More information

ASM BASED TABLESPACES BACKUP WITH RMAN FOR LONG TERM OFFLINE STORING

ASM BASED TABLESPACES BACKUP WITH RMAN FOR LONG TERM OFFLINE STORING ASM BASED TABLESPACES BACKUP WITH RMAN FOR LONG TERM OFFLINE STORING Alejandro Vargas Oracle Support Israel Principal Support Consultant TEST OBJECTIVES...2 COMMENTS...3 DESCRIPTION OF THE TESTS...3 1)

More information

Symantec Design of DP Solutions for UNIX using NBU 5.0. Download Full Version :

Symantec Design of DP Solutions for UNIX using NBU 5.0. Download Full Version : Symantec 250-421 Design of DP Solutions for UNIX using NBU 5.0 Download Full Version : http://killexams.com/pass4sure/exam-detail/250-421 B. Applications running on the Windows clients will be suspended

More information

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002 Managing Oracle Real Application Clusters An Oracle White Paper January 2002 Managing Oracle Real Application Clusters Overview...3 Installation and Configuration...3 Oracle Software Installation on a

More information

Lesson 2 RMAN Architecture

Lesson 2 RMAN Architecture RMAN Architecture 2.1 Lesson 2 RMAN Architecture An introduction to the architecture and components used by the RMAN utility. SKILLBUILDERS Author: Dave Anderson, SkillBuilders RMAN Architecture 2.2 2.2

More information

ORACLE 11g Database Replay

ORACLE 11g Database Replay ORACLE 11g Database Replay October 2 nd, 2007 Inderpal S. Johal Principal Consultant Agenda Why DB Replay DB Replay Overview System Architecture Supported Workloads Capture the Workload Pre-Processing

More information

Course Overview on Oracle 11g Database Administration (OCP)

Course Overview on Oracle 11g Database Administration (OCP) Course Overview on Oracle 11g Database Administration (OCP) Course Description Oracle Database 11g Administrator Certified Professionals have the skills and expertise to manage the Oracle 11g Database

More information

Oracle Database 11g: Backup and Recovery Workshop

Oracle Database 11g: Backup and Recovery Workshop Oracle Database 11g: Backup and Recovery Workshop Student Guide D71862GC10 Edition 1.0 March 2011 D72508 Authors Donna Keesling James Spiller Technical Contributors and Reviewers Christopher D. Andrews

More information

Chapter One. Concepts BACKUP CONCEPTS

Chapter One. Concepts BACKUP CONCEPTS Chapter One 1 Concepts Backup and recovery is not a single, discrete subject, but a collection of methods, strategies, and procedures to protect the data in your database and provide a means of recovery

More information

Oracle Secure Backup 12.2 What s New. Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Oracle Secure Backup 12.2 What s New. Copyright 2018, Oracle and/or its affiliates. All rights reserved. Oracle Secure Backup 12.2 What s New Copyright 2018, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The following is intended to outline our general product direction. It is intended

More information

Disaster Recovery Strategies for RAC on Oracle SE Arjen Visser Dbvisit Software Limited

Disaster Recovery Strategies for RAC on Oracle SE Arjen Visser Dbvisit Software Limited Disaster Recovery Strategies for RAC on Oracle SE Arjen Visser Dbvisit Software Limited Keywords Oracle RAC on Standard Edition Standby Database with RAC on Standard Edition Different standby database

More information

Oracle 1Z0-053 Exam Questions and Answers (PDF) Oracle 1Z0-053 Exam Questions 1Z0-053 BrainDumps

Oracle 1Z0-053 Exam Questions and Answers (PDF) Oracle 1Z0-053 Exam Questions 1Z0-053 BrainDumps Oracle 1Z0-053 Dumps with Valid 1Z0-053 Exam Questions PDF [2018] The Oracle 1Z0-053 Oracle Database 11g: Administration II exam is an ultimate source for professionals to retain their credentials dynamic.

More information

TIBX NEXT-GENERATION ARCHIVE FORMAT IN ACRONIS BACKUP CLOUD

TIBX NEXT-GENERATION ARCHIVE FORMAT IN ACRONIS BACKUP CLOUD TIBX NEXT-GENERATION ARCHIVE FORMAT IN ACRONIS BACKUP CLOUD 1 Backup Speed and Reliability Are the Top Data Protection Mandates What are the top data protection mandates from your organization s IT leadership?

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

Oracle 1Z Number: Passing Score: 800 Time Limit: 120 min File Version: 1.0

Oracle 1Z Number: Passing Score: 800 Time Limit: 120 min File Version: 1.0 Oracle 1Z0-053 Number: 000-000 Passing Score: 800 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ 1Z0-053 Oracle Database 11g: Administration II. This 1Z0-053 exam continues to cover basic

More information

1-2 Copyright Ó Oracle Corporation, All rights reserved.

1-2 Copyright Ó Oracle Corporation, All rights reserved. 1-1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any

More information

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

Using Recovery Manager with Oracle Data Guard in Oracle9i. An Oracle White Paper March 2004

Using Recovery Manager with Oracle Data Guard in Oracle9i. An Oracle White Paper March 2004 Using Recovery Manager with Oracle Data Guard in Oracle9i An Oracle White Paper March 2004 Using Recovery Manager with Oracle Data Guard in Oracle9i Executive summary... 3 Introduction... 3 Configuration

More information

Hitachi Converged Platform for Oracle

Hitachi Converged Platform for Oracle Hitachi Converged Platform for Oracle Manfred Drozd, Benchware Ltd. Sponsored by Hitachi Data Systems Corporation Introduction Because of their obvious advantages, engineered platforms are becoming increasingly

More information

Oracle Zero Data Loss Recovery Appliance (ZDLRA)

Oracle Zero Data Loss Recovery Appliance (ZDLRA) Oracle Zero Data Loss Recovery Appliance (ZDLRA) Overview Attila Mester Principal Sales Consultant Data Protection Copyright 2015, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement

More information

Insanity: doing the same thing over and over again and expecting different results. Nice Proverb

Insanity: doing the same thing over and over again and expecting different results. Nice Proverb Insanity: doing the same thing over and over again and expecting different results. Nice Proverb No back up was taken after reset logs. How to recover the database? Solution It s possible, I have tried

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 11g R2 New Features

ORACLE 11g R2 New Features KNOWLEDGE POWER Oracle Grid Infrastructure Installation and Upgrade Enhancements Oracle Restart ASM Enhancements Storage Enhancements Data Warehouse and Partitioning Enhancements Oracle SecureFiles Security

More information

BioGrid Australia - Health Through Information

BioGrid Australia - Health Through Information Images and Oracle Database 11g BioGrid Australia - Health Through Information PRANABH JAIN and NAOMI RAFAEL Presented by Susan Mavris, Oracle Multimedia Agenda Purpose and Description of BioGrid Oracle

More information

Oracle Database Server 12c Pros and Cons

Oracle Database Server 12c Pros and Cons Oracle Database Server 12c Pros and Cons Hans Forbrich Forbrich Consulting Ltd Based in Alberta, Canada Fact Oracle DB 12c is the largest architectural change since Oracle8i Fact Oracle documentation

More information

The VERITAS VERTEX Initiative. The Future of Data Protection

The VERITAS VERTEX Initiative. The Future of Data Protection The VERITAS VERTEX Initiative V E R I T A S W H I T E P A P E R The Future of Data Protection Table of Contents Introduction.................................................................................3

More information

Zero Data Loss Recovery Appliance DOAG Konferenz 2014, Nürnberg

Zero Data Loss Recovery Appliance DOAG Konferenz 2014, Nürnberg Zero Data Loss Recovery Appliance Frank Schneede, Sebastian Solbach Systemberater, BU Database, Oracle Deutschland B.V. & Co. KG Safe Harbor Statement The following is intended to outline our general product

More information

What is wrong with PostgreSQL? OR What does Oracle have that PostgreSQL should? Richard Stephan

What is wrong with PostgreSQL? OR What does Oracle have that PostgreSQL should? Richard Stephan What is wrong with PostgreSQL? OR What does Oracle have that PostgreSQL should? Richard Stephan PostgreSQL is an Enterprise RDBMS Schemas, Roles, Accounts Tablespace Management Table Partitioning Write-Ahead

More information

Oracle Database 12c Performance Management and Tuning

Oracle Database 12c Performance Management and Tuning Course Code: OC12CPMT Vendor: Oracle Course Overview Duration: 5 RRP: POA Oracle Database 12c Performance Management and Tuning Overview In the Oracle Database 12c: Performance Management and Tuning course,

More information

<Insert Picture Here> Controlling resources in an Exadata environment

<Insert Picture Here> Controlling resources in an Exadata environment Controlling resources in an Exadata environment Agenda Smart IO IO Resource Manager Compression Hands-on time Exadata Security Flash Cache Storage Indexes Parallel Execution Agenda

More information

Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.)

Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.) Volume: 183 Questions Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.) A. The user cannot set privileges on persistent lightweight jobs. B. The use

More information