The Oracle DBMS Architecture: A Technical Introduction

Size: px
Start display at page:

Download "The Oracle DBMS Architecture: A Technical Introduction"

Transcription

1 BY DANIEL D. KITAY The Oracle DBMS Architecture: A Technical Introduction As more and more database and system administrators support multiple DBMSes, it s important to understand the architecture of the system and its components. This article introduces the reader to the Oracle DBMS. TODAY S database and system administrators must support more and more Management Systems (DBMSes) from different vendors running on various hardware and operating system platforms. One of these DBMSes is the Oracle 7 server. To effectively administer Oracle 7 servers and the databases accessed, it s important to understand the Oracle 7 server architecture. This article examines the Oracle 7 server architecture and its major components. It is intended to benefit new Oracle programmers, DBAs, system administrators and their managers. Although it is impossible to describe all of the features and components of the Oracle 7 server in just one article, the following essential topics are discussed: instance and database startup; instance and application processes; server memory structures; server and database files; and performance monitoring and tuning. INSTANCE AND DATABASE STARTUP As depicted in Figure 1, an Oracle server instance is the combination of server background processes and memory structures that allow database data to be stored, managed and accessed by users. During Oracle server startup, an init.ora configuration file (similar to DB2 s DSNZPARM) is read in and a number of background processes are created that perform specific database and server functions. The process of starting an instance includes the allocation of several memory structures, including the System Global Area (SGA) and Program Global Area (PGA), both of which are discussed later. Typically, during server startup a database is immediately mounted and opened to allow user and application access. Mounting a database is the process of associating a database with the started Oracle server s background processes and allocated memory structures. Although DB2 supports multiple databases accessible from a single subsystem, the Oracle 7 server supports access only to a single database at a time. When a database is mounted, the instance finds and opens its control files. The control files specify the names of the database s data files and redo log files. A database can be mounted in either exclusive or parallel mode. Parallel mode allows an Oracle Parallel (OPS) environment to exist by allowing multiple Oracle servers across multiple machines to mount the same shared database. Opening a mounted database is the process of making the database available for normal database operations. When an instance opens a database, one or more rollback segments are acquired so that the instance can handle rollback information produced by subsequent transaction executions. At this point, any valid user can connect to the database and access or change information. When the database is opened, the online data and redo log files are also opened. An instance can also be started in (or later, dynamically altered to be in) restricted mode so that when the database is open, connections are limited only to those whose user accounts have been granted the RESTRICTED SESSION system privilege Candle Corporation. Reprinted with permission. All rights reserved. International copyright secured.

2 Figure 1: Oracle 7 Architecture:, Memory and Files User (access via MTS) Dnnn SMON PMON RECO Systems Global Area (SGA) Buffer Cache Shared (Snnn) User Process Redo Log Buffer Dedicated A database is sometimes left unmounted, or mounted and unopened, during startup to allow execution of administrative functions that require the database s data to be unavailable to users. INSTANCE AND APPLICATION PROCESSES An Oracle DBMS comprises two types of processes: user and Oracle system. A user or client process is created to execute the program code of an application. It also manages the communication with the Oracle server processes. Oracle system processes are called by other users or Oracle processes to perform functions on behalf of the invoking process. Oracle system processes are divided into two types: server processes and background processes. processes exist to service requests from connected user processes. A server process receives SQL statement requests, checks the shared pool within the SGA for the parsed form of the SQL statement (if it does not exist within the shared pool, it is read in and parsed), checks user access privilege, retrieves data from the actual data file or data that is already cached in the instance s SGA, and makes the data available to the requesting application. In a dedicated server configuration (sometimes called two-task Oracle), each server process handles requests for a single user process. In this type of system, the application process and the Oracle server process frequently execute on different machines. Even when the user is not actively making a database request, the dedicated Shared Pool Shared SQL Areas or Library Cache Dictionary Cache CKPT Files DBWR LCKn (Oracle Parallel ) LGWR Redo Log Files Archive Storage ARCH Control Files server process still exists. These dedicated connections are always required when executing certain Oracle administration functions, such as database startup, shutdown and recovery. In a Multi-Threaded (MTS) configuration, as shown in Figure 2, many user processes can be serviced by a smaller number of shared server processes. This helps reduce process memory utilization and process management overhead. An MTS configuration uses a SQL*Net network listener process to connect user processes to dispatchers, which route client requests to the next available shared server Figure 2: Oracle Multi-Threaded Architecture Listener User processes and application code Dispatcher processes (Dnnn) Request Queue (common to all dispatchers) S Y S T E M S process. The shared server process performs the same function as a dedicated server process, but after servicing each SQL request it is free to service requests from a different user process. Configuration values control the initial and maximum number of shared servers allowed active at one time. Request and response queues are used by the dispatchers and shared servers to communicate SQL requests and to return data results. At startup time, Oracle creates a number of system background processes for each instance to perform system functions: The System Monitor (SMON) performs instance recovery during startup, cleans up temporary segments that are no longer in use, recovers dead transactions skipped during crash and instance recovery because of file-read or offline errors, and coalesces small chunks of contiguous free space into larger blocks of contiguous space for easier allocation by Oracle. The Process Monitor (PMON) performs recovery when a user process fails. PMON cleans up the cache and frees resources that the process was using. PMON also restarts failed dispatcher and shared server processes. The Writer (DBWR) writes modified (dirty) data blocks from the database cache to data files on disk using a least recently used algorithm. Shared (Snnn) Response Queue (one per dispatcher) System Global Area TCP/IP xxxxxxx yyyyyyy Client Workstations February 97 TECHNICAL SUPPORT

3 S Y S T E M S Whenever possible, DBWR writes dirty buffers to disk using a multi-block write mechanism. DBWR manages the buffer cache so that user processes can always find free buffers. The DBWR process is signaled to write dirty buffers to disk under the following conditions: when the dirty list reaches a threshold length defined by the init.ora parameter DB_BLOCK_WRITE_BATCH; when a free buffer has not been found after n buffers have been scanned (where n is defined by DB_BLOCK_MAX_SCAN_CNT in init.ora); when a timeout occurs (every three seconds); when a checkpoint occurs; and when the Log Writer (LGWR) signals DBWR. The LGWR is triggered during several internal events (commit, checkpoint, and log write timeout), as well as when the redo log buffer is one-third full. This process writes the redo log buffer in memory to the redo log file on disk. During each Checkpoint (CKPT), the LGWR updates file headers if a CKPT process is not configured to perform this function. The optional CKPT updates the headers of all data files during checkpoint processing. If the init.ora CHECK- POINT_PROCESS parameter is enabled, this process can improve system performance by freeing the LGWR to concentrate on the redo log buffer. The CKPT process does not write data blocks to disk; this is performed by the DBWR. The Recoverer (RECO) is started when distributed transactions are permitted and the init.ora parameter DISTRIB- UTED_TRANSACTIONS is greater than zero. The Oracle distributed option uses the RECO process to automatically resolve distributed transaction failures. The Archiver (ARCH) copies online redo log files, once they become full, to a specified storage device or location. ARCH is present only when the database is started in ARCHIVELOG mode and automatic archiving is enabled. An Oracle DBMS comprises two types of processes: user and Oracle system. A user or client process is created to execute the program code of an application. It also manages the communication with the Oracle server processes. Oracle system processes are called by other users or Oracle processes to perform functions on behalf of the invoking process. Lock (LCKn) processes are used in conjunction with the Parallel option. Up to 10 LCK processes (LCK0 through LCK9) are used to control inter-instance locking. Dispatcher (Dnnn) processes, used with the MTS configuration, allow user processes to share a limited number of shared server processes. At least one dispatcher process must be created for each network protocol used to communicate with Oracle. Parallel Query server processes are used with the Parallel Query option in Oracle 7.1 or higher. With this option, a query coordinator (QC) intercepts queries, decides if they should be split into multiple smaller queries, and sends them to the pool of available query servers for processing. Query servers are also used for parallel index creation and data loads. The number of query servers automatically increases or decreases (within the upper and lower limits set by the administrator) to accommodate changing workload levels. Snapshot (SNPn) processes are used with the Oracle distributed option to automatically refresh table snapshots. These processes wake-up periodically when snapshots are scheduled to be automatically refreshed. SERVER MEMORY STRUCTURES To operate, each Oracle instance allocates a number of cache areas. As shown in Figure 1, the major memory areas are the SGA, PGA and sort areas. The SGA is a single shared memory area consisting of three main components: Buffer cache, Shared Pool and Redo Log buffer. The size of the SGA is based on various init.ora parameter values including: DB_BLOCK_SIZE, DB_BLOCK_BUFFERS, LOG_BUFFER, and SHARED_POOL_SIZE. The Buffer cache holds the most recently used data from files on disk. It is similar to using a single DB2 Buffer Pool (BP), but without the ability to dynamically alter its size. Buffer cache size is determined at Oracle startup based on the DB_BLOCK_BUF- FERS parameter. Each block size is usually between 2KB and 32KB (in multiples of 2KB), as determined by DB_BLOCK_SIZE. The Shared Pool is similar to DB2 s Environmental Descriptor Manager pool, which contains runtime definitions for SQL statements and other dictionary information. The Shared Pool contains cache areas for parsing and storing SQL and PL/SQL statements (Shared SQL Area); a Data Dictionary cache (row cache) which contains database reference information, similar to DB2 s dictionary database; and, in an MTS configuration, private SQL areas containing binding information and run-time buffers. The SHARED_POOL_SIZE parameter defines the size of the Shared Pool. The Redo Log buffer is an area of the SGA that Oracle uses to record database related changes caused by SQL INSERT, UPDATE, DELETE, CREATE, ALTER, or DROP, and to recreate data or objects during recovery of an executing transaction. It is a circular buffer that contains redo entries containing the information necessary to reconstruct or redo changes made to the database. Redo entries are later copied to the active redo log file on disk. Oracle s logging functions are very similar to DB2 log buffer and online log files. Redo Log buffer size is determined by the LOG_BUF- FER parameter. Oracle also uses rollback segments. These memory areas store pre-update images that can be used to rollback transaction updates and allow access to data as it is being updated (dirty reads).

4 When the MTS is configured, request and response queues and some contents of the PGA are stored within the SGA. Other information that needs to be communicated between processes, such as locking information, is also stored within the SGA. A fixed SGA area stores information about the state of the database and instance for access by background processes. The PGA is memory that contains data and control information for an Oracle instance or application process. Each process has its own PGA; its contents vary depending on whether an MTS configuration is used by a user or application to connect to the Oracle instance. Each process PGA always contains stack space, which is memory used to hold a session s variables, arrays and other information. A PGA without an MTS connection requires additional memory for the user s session, such as private SQL areas. If the connection uses an MTS, the extra memory is allocated to the SGA instead of the PGA. Several initialization parameters affect the size of a PGA, including OPEN_LINKS, DB_FILES and LOG_FILES. On top of physical SGA and PGA memory, some logical memory structures are created. These structures may be shared or private and differ as to when they are allocated and deallocated. Logical memory structures include: User Global Area (UGA), Call Global Area (CGA), Shared Context Areas or Cursors, Cursor Ephemeral Frame, Cursor Work Heap, Cursor Persistent Frame, and connection memory (HGA). For more information on these areas, refer to the article UGA and More Undocumented Features in the bibliography. Finally, sorting requires sort space in memory. A sort area exists in the memory of an Oracle user process that requests a sort. A sort area dynamically grows to accommodate the amount of data to be sorted, within the limits of the SORT_AREA_SIZE value. If Oracle does not need to reference the sort area, it may dynamically reduce its size as determined by the SORT_AREA_RETAINED_SIZE parameter. When needed, Oracle uses temporary segments on disk to contain sort work areas. These temporary segments are dynamically created and deleted on an as needed basis. In Oracle 7.3, permanent segments can be created to contain sort work areas, similar to the permanently allocated sort work tables in DB2. This eliminates the overhead associated with frequently creating and deleting temporary sort segments. In Oracle 7.3, permanent segments can be created to contain sort work areas, similar to the permanently allocated sort work tables in DB2. SERVER AND DATABASE FILES An Oracle instance uses a number of different physical and logical structures to operate. Some of the physical structures used by an Oracle instance are shown in Figure 1: Oracle database files contain database information, including both system and application data. System data files contain the contents of the SYSTEM tablespace, including the data dictionary and the names and locations of all objects within the database. Application data files hold user data that is accessed by SQL statements. Oracle parameter file, init.ora, contains startup parameters to customize the Oracle instance s execution environment. Control files are used to record the names of the database s data files and redo log files as well as other status and configuration information. Online and Archived Redo log files record changes made to data and ensure that no data is lost in the event of an instance failure. An online redo log consists of two or more pre-allocated files that store all changes made to the database as they occur. Archived (offline) redo logs consist of archived online redo log files that become full. The archived redo log is optional based on a database s archiving mode. backup files can be created to support the restoration of damaged data files or control files. Figure 3: Oracle Logical and Physical Structures Tablespace Segment Extents Blocks (index) (temporary) Process trace files can exist for each server and background process. When a process detects an internal error it dumps error information to its trace file. Trace files can also contain SQL tuning information when the initialization parameter SQL_TRACE is set TRUE (although this global setting is expensive) or when a session enables trace logging by using the ALTER SESSION SET SQL_TRACE = TRUE command. An instance s ALERT file contains a chronological log of messages and errors generated by an instance. One or more configuration files on each client and server define SQL*NET communications and enable client/server connections. As shown in Figure 3, an Oracle database contains several logical structures defined on top of a physical data file s user or system data. Within an Oracle database, the logical structures from the highest to lowest level include: tablespaces, segments, extents and data blocks. February 97 TECHNICAL SUPPORT S Y S T E M S Data Files

5 S Y S T E M S A database is divided into one or more logical storage units called tablespaces. A database administrator can create new tablespaces, add data files for tablespaces, set and alter default segment storage settings for segments created in a tablespace and drop tablespaces. Every database contains a tablespace named SYSTEM that is automatically built during database creation. This tablespace contains the data dictionary tables for the entire database. It is similar to the DB2 catalog and dictionary databases. To add more space to a database, data files can be added to one of its existing tablespaces up to the database limit of the total number of files allowed. The next level of logical structures are segments. A segment is a set of extents stored in the same tablespace that have been allocated for a specific type of data structure. For example, each table s data is stored in its own data segment, while each index s data is stored in its own index segment. Both segment types can reside in the same tablespace and physical files, which is very different from DB2 s implementation of separate table- and indexspaces. Segment extents can span one or more files assigned to a tablespace. When the existing extents for a segment are full, Oracle allocates another extent for that segment. Since extents are allocated as needed, segment extents may be non-contiguous. The main segment types are: one data segment per table, snapshot, or snapshot log defined; one index segment per index defined; one or more rollback segments for recording transaction change activity; and one or more temporary segments to contain sort and other types of work areas. The next level of logical database space is called an extent. An extent is a specific number of contiguous data blocks that is allocated for storing a specific type of information. A single extent cannot span a physical file. A data block is the smallest unit of I/O used by an instance. A data block corresponds to a block of physical bytes on disk, equal to the Oracle data block size. This block size can differ from the standard I/O block size of the operating system that executes Oracle; it is usually either 2KB or 4KB. Each data block contains a header, row directory, row data and free space. Oracle 7 has many configuration options and optional features that must be carefully implemented and tuned for you to optimize your system and application performance. PERFORMANCE MONITORING AND TUNING The Oracle server product includes a number of built-in and add-on tools and mechanisms for monitoring the performance of an Oracle instance and tuning performance. These mechanisms are: more than 30 memory resident tables (X$ tables) and the views on them (V$ tables), providing a wealth of performance and configuration information to users and third-party performance monitors, such as Candle s OMEGAMON Monitoring Agents for Oracle. SQL*DBA monitor facilities (or the more graphical Oracle 7.3 replacement, Manager) to display the contents of dynamic performance tables. Oracle scripts for performance monitoring, including UTLBSTAT, UTLESTAT, and UTLLOCKT.SQL for reviewing locking conflicts. an ANALYZE SQL statement that tells Oracle to collect and store tablespace related statistics, similar to DB2 s RUNSTATS utility. a SQL EXPLAIN PLAN facility, similar to DB2 s, that allows you to review access path choices made by Oracle s cost- and rule-based optimizer. a SQL statement tracing facility (SQL_TRACE) that can be enabled globally for all SQL statements (although not recommended because of high overhead) or at the individual session level. Trace records are written to a file that can be read by a translation and reporting utility called TKPROF. Oracle 7.3 provides more extensive tracing and instrumentation facilities that can be controlled and reported on by an additional product called Oracle Trace. ORACLE 7: THE POWER AND COMPLEXITY This article described the major components of the Oracle 7 server to show both the power and the complexity of this database management system. It has many configuration options and optional features that must be carefully implemented and tuned for you to optimize your system and application performance. ts BIBLIOGRAPHY Oracle 7 Concepts, Part No Oracle 7.2 Parallel, Part No. A UGA and More Undocumented Features, Tony Jambu, Select Journal, July Daniel D. Kitay is R&D manager at Candle Corporation s Westlake, Calif., R&D office. He specializes in designing and implementing applications to manage the performance and availability of distributed systems and applications. For the past 13 years Daniel has worked with IMS, VTAM, DB2 for MVS, and more recently, Oracle, Sybase, Lotus Notes and SAP. He can be reached at dan_kitay@candle.com Technical Enterprises, Inc. Reprinted with permission of Technical Support magazine. For subscription information, mbrship@naspa.net or call , Ext. 116.

Oracle Architectural Components

Oracle Architectural Components Oracle Architectural Components Date: 14.10.2009 Instructor: Sl. Dr. Ing. Ciprian Dobre 1 Overview of Primary Components User process Shared Pool Instance SGA Server process PGA Library Cache Data Dictionary

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

RECO CKPT SMON ARCH PMON RMAN DBWR

RECO CKPT SMON ARCH PMON RMAN DBWR Database Architecture t Architecture Topics Memory Structure Background Processes Database Accessing Database Information Starting the Database SMON PMON DBWR LGWR Parameter Database Architecture SNPn

More information

Implementation of Database Systems David Konopnicki Taub 715 Spring Sources

Implementation of Database Systems David Konopnicki Taub 715 Spring Sources Implementation of Database Systems 236510 David Konopnicki Taub 715 Spring 2000 1 2 Sources Oracle 7 Server Concepts - Oracle8i Server Concepts. Oracle Corp. Available on the course Web Site: http://www.cs.technion.ac.il/~cs236510

More information

Oracle Tuning. Ashok Kapur Hawkeye Technology, Inc.

Oracle Tuning. Ashok Kapur Hawkeye Technology, Inc. Oracle Tuning Ashok Kapur Hawkeye Technology, Inc. Agenda Oracle Database Structure Oracle Database Access Tuning Considerations Oracle Database Tuning Oracle Tuning Tools 06/14/2002 Hawkeye Technology,

More information

ORACLE 8 OBJECT ORIENTED TECHNOLOGY ORACLE SOFTWARE STRUCTURES SERVER SIDE BACKGROUND PROCESSES DATABASE SERVER AND DATABASE INSTANCE

ORACLE 8 OBJECT ORIENTED TECHNOLOGY ORACLE SOFTWARE STRUCTURES SERVER SIDE BACKGROUND PROCESSES DATABASE SERVER AND DATABASE INSTANCE ORACLE 8 IS ORDBMS HANDLES VLDB - GIGABYTES/TERABYTES 10,000 CONCURRENT USERS PARTITIONED TABLES AND INDEXES SINGLE DATA BLOCK IS INACCESSSIBLE CAN ACCESS MULTIPLE PARTITION IN PARALLEL FOR CONCURRENT

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

Oracle Technical Questions. 1. What are the components of Physical database structure of Oracle Database?.

Oracle Technical Questions. 1. What are the components of Physical database structure of Oracle Database?. Oracle Technical Questions Oracle 7 Concepts and Architecture Database Structures. 1. What are the components of Physical database structure of Oracle Database?. ORACLE database is comprised of three types

More information

Oracle Notes Part-5. Two Types of Cursor : 1)Implicit Cursor

Oracle Notes Part-5. Two Types of Cursor : 1)Implicit Cursor Oracle Notes Part-5 CURSOR: A cursor is a temporary work area created in the system memory when a SQL statement is executed. A cursor contains information on a select statement and the rows of data accessed

More information

Module 1 Oracle Architecture

Module 1 Oracle Architecture File=module1 architecture.htm; updated 5/13/2013 Figures shown in these notes are from Oracle Database Concepts 11g Release 2 Objectives Module 1 Oracle Architecture These notes introduce the Oracle server

More information

Oracle Internal Architecture

Oracle Internal Architecture Oracle Internal Architecture Oracle Internal Architecture Considerations for Oracle 10g Oracle Background Processes Latch Contention Initialization Parameters Affecting Memory Usage Sub_Divisions of the

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

Managing an Oracle Instance

Managing an Oracle Instance Managing an Oracle Instance Date: 07.10.2009 Instructor: SL. Dr. Ing. Ciprian Dobre 1 Objectives After completing this lesson, you should be able to do the following: Create and manage initialization parameter

More information

Electronic Presentation

Electronic Presentation Oracle9i DBA Fundamentals I Electronic Presentation D11321GC10 Production 1.0 May 2001 D32645 I-1 Copyright Oracle Corporation, 2001. All rights reserved. I Introduction Copyright Oracle Corporation, 2001.

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

Basics of SQL Transactions

Basics of SQL Transactions www.dbtechnet.org Basics of SQL Transactions Big Picture for understanding COMMIT and ROLLBACK of SQL transactions Files, Buffers,, Service Threads, and Transactions (Flat) SQL Transaction [BEGIN TRANSACTION]

More information

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

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

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

Memory Management and Memory Structures

Memory Management and Memory Structures Memory Management and Memory Structures Oracle Database Memory Management Memory management - focus is to maintain optimal sizes for memory structures. Memory is managed based on memory-related initialization

More information

RAC for Beginners. Arup Nanda Longtime Oracle DBA (and a beginner, always)

RAC for Beginners. Arup Nanda Longtime Oracle DBA (and a beginner, always) Arup Nanda Longtime Oracle DBA (and a beginner, always) This image cannot currently be displayed. Continue Your Education Communities Knowledge April 7-11, 2013 Saring Colorado Convention Center Education

More information

Lesson 4 Transcript: DB2 Architecture

Lesson 4 Transcript: DB2 Architecture Lesson 4 Transcript: DB2 Architecture Slide 1: Cover Welcome to Lesson 4 of the DB2 on campus series. Today we are going to talk about the DB2 architecture. My name is Raul Chong and I am the DB2 on Campus

More information

Introduction. Assessment Test. Chapter 1 Introduction to Performance Tuning 1. Chapter 2 Sources of Tuning Information 33

Introduction. Assessment Test. Chapter 1 Introduction to Performance Tuning 1. Chapter 2 Sources of Tuning Information 33 Contents at a Glance Introduction Assessment Test xvii xxvii Chapter 1 Introduction to Performance Tuning 1 Chapter 2 Sources of Tuning Information 33 Chapter 3 SQL Application Tuning and Design 85 Chapter

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

Configuring Database Systems

Configuring Database Systems The following paper was originally published in the Proceedings of the Twelfth Systems Administration Conference (LISA 98) Boston, Massachusetts, December 6-11, 1998 Configuring Database Systems Christopher

More information

Data Organization and Processing I

Data Organization and Processing I Data Organization and Processing I Data Organization in Oracle Server 11g R2 (NDBI007) RNDr. Michal Kopecký, Ph.D. http://www.ms.mff.cuni.cz/~kopecky Database structure o Database structure o Database

More information

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

Oracle9i Database: Advanced Instance Tuning

Oracle9i Database: Advanced Instance Tuning Oracle9i Database: Advanced Instance Tuning Student Guide D16442GC10 Edition 1.0 December 2002 D37574 Authors Lex de Haan Joel Goodman Technical Contributors and Reviewers Scott Gossett Christine Jeal

More information

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved.

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved. Configuring the Oracle Network Environment Objectives After completing this lesson, you should be able to: Use Enterprise Manager to: Create additional listeners Create Oracle Net Service aliases Configure

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

Oracle database overview. OpenLab Student lecture 13 July 2006 Eric Grancher

Oracle database overview. OpenLab Student lecture 13 July 2006 Eric Grancher Oracle database overview OpenLab Student lecture 13 July 2006 Eric Grancher Outline Who am I? What is a database server? Key characteristics of Oracle database server Instrumentation Clustering Optimiser

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

PASS4TEST 専門 IT 認証試験問題集提供者

PASS4TEST 専門 IT 認証試験問題集提供者 PASS4TEST 専門 IT 認証試験問題集提供者 http://www.pass4test.jp 1 年で無料進級することに提供する Exam : 1z0-052 Title : Oracle Database 11g: Administration I Vendor : Oracle Version : DEMO Get Latest & Valid 1Z0-052 Exam's Question

More information

These copies should be placed on different disks, if possible. Disk 1 Disk 2 Disk 3

These copies should be placed on different disks, if possible. Disk 1 Disk 2 Disk 3 DATABASE CONFIGURATIONS Configuration Topics Simple Databases with Mirroring Multiplexing Control Files and REDO Logs Disk Shadowing Database Links and Snapshots Optimal Flexible Architecture 1 Stand Alone

More information

Oracle 1Z Oracle Database 11g: Administration I. Download Full Version :

Oracle 1Z Oracle Database 11g: Administration I. Download Full Version : Oracle 1Z0-052 Oracle Database 11g: Administration I Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-052 D. Functionbased index Answer: A QUESTION: 191 The user HR owns the EMP

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.ActualTests.1Z0-023.v by.Ramon.151q

Oracle.ActualTests.1Z0-023.v by.Ramon.151q Oracle.ActualTests.1Z0-023.v2009-03-18.by.Ramon.151q Number: 1Z0-023 Passing Score: 800 Time Limit: 120 min File Version: 33.4 http://www.gratisexam.com/ Oracle 1z0-023 Exam Exam Name: Architecture and

More information

Oracle Installation. and Configuration for Topobase

Oracle Installation. and Configuration for Topobase Oracle Installation and Configuration for Topobase 2009 Autodesk, Inc. All rights reserved. NOT FOR DISTRIBUTION. The contents of this guide were created for Autodesk Topobase version 2010. The contents

More information

VerifiedDumps. Get the Valid and Verified Exam Questions & Answers Dump for 100% Pass

VerifiedDumps.   Get the Valid and Verified Exam Questions & Answers Dump for 100% Pass VerifiedDumps http://www.verifieddumps.com Get the Valid and Verified Exam Questions & Answers Dump for 100% Pass Exam : 1Z0-031 Title : Oracle9i database:fundamentals i Vendors : Oracle Version : DEMO

More information

Oracle PL/SQL - 12c & 11g [Basic PL/SQL & Advanced PL/SQL]

Oracle PL/SQL - 12c & 11g [Basic PL/SQL & Advanced PL/SQL] Chapter Overview of PL/SQL Programs Control Statements Using Loops within PLSQL Oracle PL/SQL - 12c & 11g [Basic PL/SQL & Advanced PL/SQL] Table of Contents Describe a PL/SQL program construct List the

More information

IT Best Practices Audit TCS offers a wide range of IT Best Practices Audit content covering 15 subjects and over 2200 topics, including:

IT Best Practices Audit TCS offers a wide range of IT Best Practices Audit content covering 15 subjects and over 2200 topics, including: IT Best Practices Audit TCS offers a wide range of IT Best Practices Audit content covering 15 subjects and over 2200 topics, including: 1. IT Cost Containment 84 topics 2. Cloud Computing Readiness 225

More information

"Charting the Course... Oracle Database 12c: Architecture & Internals. Course Summary

Charting the Course... Oracle Database 12c: Architecture & Internals. Course Summary Course Summary Description This is a core curriculum course applicable to most learning paths within the Oracle course series. We begin with a discussion of the broad systems infrastructure where one finds

More information

Oracle 1Z Oracle Database 11g- Administrator I. Download Full Version :

Oracle 1Z Oracle Database 11g- Administrator I. Download Full Version : Oracle 1Z1-052 Oracle Database 11g- Administrator I Download Full Version : https://killexams.com/pass4sure/exam-detail/1z1-052 QUESTION: 153 User SCOTT executes the following command on the EMP table

More information

Using Oracle STATSPACK to assist with Application Performance Tuning

Using Oracle STATSPACK to assist with Application Performance Tuning Using Oracle STATSPACK to assist with Application Performance Tuning Scenario You are experiencing periodic performance problems with an application that uses a back-end Oracle database. Solution Introduction

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!  We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : 1Z0-235 Title : Oracle 11i applications DBA:Fundamentals I Vendors : Oracle

More information

Oracle 9i release 1. Administration. Database Outsourcing Experts

Oracle 9i release 1. Administration. Database Outsourcing Experts Administration Default Temporary Tablespace The system will automatically allocate new users an appropriate temporary tablespace without you needing to specify it explicitly in the create user statement.

More information

Oracle Database 12c Administration I

Oracle Database 12c Administration I Course Overview In this course, students will focus on configuration on supported systems. Also how the database fits in with other systems. Who Should Attend View Course Dates & Register Today This is

More information

Oracle Database 11g for Experienced 9i Database Administrators

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

More information

Oracle 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

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

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

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

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

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

Oracle Database 10g: Administration I. Course Outline. Oracle Database 10g: Administration I. 20 Jul 2018

Oracle Database 10g: Administration I. Course Outline. Oracle Database 10g: Administration I.  20 Jul 2018 Course Outline Oracle Database 10g: Administration I 20 Jul 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number of Questions 4. Expert Instructor-Led

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

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

TestsDumps. Latest Test Dumps for IT Exam Certification

TestsDumps.  Latest Test Dumps for IT Exam Certification TestsDumps http://www.testsdumps.com Latest Test Dumps for IT Exam Certification Exam : 1z1-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version : DEMO Get Latest &

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

Understanding and Leveraging the Oracle9i Advisories. Azeem Mohamed Product Marketing Manager Quest Software

Understanding and Leveraging the Oracle9i Advisories. Azeem Mohamed Product Marketing Manager Quest Software Understanding and Leveraging the Oracle9i Advisories Azeem Mohamed Product Marketing Manager Quest Software Agenda Overview of the Oracle9i advisories Buffer cache advisory Shared Pool advisory PGA advisory

More information

Recovering Oracle Databases

Recovering Oracle Databases CHAPTER 20 Recovering Oracle Databases In this chapter you will learn how to Recover from loss of a controlfile Recover from loss of a redo log file Recover from loss of a system-critical datafile Recover

More information

Oracle Database 12c: Administration Workshop

Oracle Database 12c: Administration Workshop Oracle Database 12c: Administration Workshop Student Guide Volume I D78846GC10 Edition 1.0 July 2013 D82566 Authors Donna K. Keesling James L. Spiller Technical Contributors and Reviewers Darryl Balaski

More information

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

Oracle 1Z0-497 Exam Questions and Answers (PDF) Oracle 1Z0-497 Exam Questions 1Z0-497 BrainDumps Oracle 1Z0-497 Dumps with Valid 1Z0-497 Exam Questions PDF [2018] The Oracle 1Z0-497 Oracle Database 12c Essentials exam is an ultimate source for professionals to retain their credentials dynamic. And

More information

Oracle 1Z Oracle 9i: New Features for Administrators. Download Full Version :

Oracle 1Z Oracle 9i: New Features for Administrators. Download Full Version : Oracle 1Z0-030 Oracle 9i: New Features for Administrators Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-030 QUESTION: 204 Which two statements regarding an external table are

More information

Let s Tune Oracle8 for NT

Let s Tune Oracle8 for NT Let s Tune Oracle8 for NT ECO March 20, 2000 Marlene Theriault Cahill Agenda Scope A Look at the Windows NT system About Oracle Services The NT Registry About CPUs, Memory, and Disks Configuring NT as

More information

Oracle9i DBA Fundamentals I

Oracle9i DBA Fundamentals I Oracle9i DBA Fundamentals I ii Oracle9i DBA Fundamentals I 1997-2003 Technology Framers, LLC. All rights reserved. No part of this material may be reproduced without the express written permission from

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

By default, the 9i instance will follow this sequence to determine its initialization parameters on most operating systems:

By default, the 9i instance will follow this sequence to determine its initialization parameters on most operating systems: ORACLE9I: KISS YOUR INIT.ORA GOODBYE! Dan Norris, norris@celeritas.com, Celeritas Technologies, LLC INTRODUCTION AND OVERVIEW Oracle9i has certainly changed the RDBMS world with all of its new features

More information

Learning Objectives : This chapter provides an introduction to performance tuning scenarios and its tools.

Learning Objectives : This chapter provides an introduction to performance tuning scenarios and its tools. Oracle Performance Tuning Oracle Performance Tuning DB Oracle Wait Category Wait AWR Cloud Controller Share Pool Tuning 12C Feature RAC Server Pool.1 New Feature in 12c.2.3 Basic Tuning Tools Learning

More information

Basi di Dati Complementi. Mainframe

Basi di Dati Complementi. Mainframe Basi di Dati Complementi 3.1. DBMS commerciali DB2-3.1.2 Db2 in ambiente mainframe Andrea Maurino 2007 2008 Mainframe 1 Mainframe Terminologia Mainframe Storage Management Subsystem (SMS) Is an automated

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

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

Oracle Database 11g : Performance Tuning DBA Release2

Oracle Database 11g : Performance Tuning DBA Release2 Oracle Database 11g : Performance Tuning DBA Release2 Target Audience : Technical Consultant/L2/L3 Support DBA/Developers Course Duration : 5 days Day 1: Basic Tuning Tools Monitoring tools overview Enterprise

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

Exam: 1Z Title : Oracle9i: Performance Tuning. Ver :

Exam: 1Z Title : Oracle9i: Performance Tuning. Ver : Exam: Title : Oracle9i: Performance Tuning Ver : 01.22.04 Section A contains 226 questions. Section B contains 60 questions. The total number of questions is 286. Answers to the unanswered questions will

More information

IT100: Oracle Administration

IT100: Oracle Administration IT100: Oracle Administration IT100 Rev.001 CMCT COURSE OUTLINE Page 1 of 8 Training Description: Introduction to Oracle Administration and Management is a five-day course designed to provide Oracle professionals

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 11g: Performance Tuning DBA Release 2

Oracle Database 11g: Performance Tuning DBA Release 2 Course Code: OC11PTDBAR2 Vendor: Oracle Course Overview Duration: 5 RRP: POA Oracle Database 11g: Performance Tuning DBA Release 2 Overview This course starts with an unknown database that requires tuning.

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

IT115: Oracle Database 12c Administration I

IT115: Oracle Database 12c Administration I IT115: Oracle Database 12c Administration I IT115 Rev.001 CMCT COURSE OUTLINE Page 1 of 12 Training Description: In this training, participants will focus on configuration on supported systems. Also, how

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

Oracle Database 11g: Performance Tuning DBA Release 2

Oracle Database 11g: Performance Tuning DBA Release 2 Oracle University Contact Us: +65 6501 2328 Oracle Database 11g: Performance Tuning DBA Release 2 Duration: 5 Days What you will learn This Oracle Database 11g Performance Tuning training starts with an

More information

Rampant TechPress. Oracle DBA made simple Oracle database administration techniques. Mike Ault

Rampant TechPress. Oracle DBA made simple Oracle database administration techniques. Mike Ault Rampant TechPress Oracle DBA made simple Oracle database administration techniques Mike Ault Oracle DBA made simple Oracle database administration techniques By Mike Ault Copyright 2003 by Rampant TechPress.

More information

CHAPTER 3 RECOVERY & CONCURRENCY ADVANCED DATABASE SYSTEMS. Assist. Prof. Dr. Volkan TUNALI

CHAPTER 3 RECOVERY & CONCURRENCY ADVANCED DATABASE SYSTEMS. Assist. Prof. Dr. Volkan TUNALI CHAPTER 3 RECOVERY & CONCURRENCY ADVANCED DATABASE SYSTEMS Assist. Prof. Dr. Volkan TUNALI PART 1 2 RECOVERY Topics 3 Introduction Transactions Transaction Log System Recovery Media Recovery Introduction

More information

Oracle Database 11g: Administration Workshop I

Oracle Database 11g: Administration Workshop I Oracle Database 11g: Administration Workshop I Student Guide D50102GC11 Edition 1.1 October 2008 D56326 Authors Maria Billings Deirdre Matishak Jim Spiller Priya Vennapusa Technical Contributors and Reviewers

More information

1z Oracle9i Performance Tuning. Version 19.0

1z Oracle9i Performance Tuning. Version 19.0 1z0-033 Oracle9i Performance Tuning Version 19.0 Important Note Please Read Carefully Study Tips This product will provide you questions and answers along with detailed explanations carefully compiled

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

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

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

More information

MySQL Architecture and Components Guide

MySQL Architecture and Components Guide Guide This book contains the following, MySQL Physical Architecture MySQL Logical Architecture Storage Engines overview SQL Query execution InnoDB Storage Engine MySQL 5.7 References: MySQL 5.7 Reference

More information

Oracle Storage Management: New Techniques and Choices

Oracle Storage Management: New Techniques and Choices Oracle Storage Management: New Techniques and Choices May We Suggest... Cell phones and pagers on vibrate or silent, please Issues in Oracle Storage Management Oracle I/O is a, uh, rich mixture of I/O

More information

Course Description. Audience. Prerequisites. At Course Completion. : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs

Course Description. Audience. Prerequisites. At Course Completion. : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs Module Title Duration : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs : 4 days Course Description This four-day instructor-led course provides students with the knowledge and skills to capitalize

More information

Oracle FLEXCUBE Private Banking May 2011

Oracle FLEXCUBE Private Banking May 2011 Oracle FLEXCUBE Private Banking May 2011 Database configuration parameters and Recommended Schedule Maintenance Oracle Part Number E51529-01 Document Control Date Version Description Author 30 th November

More information

How To Reduce Temp Tablespace Size In Oracle 11g

How To Reduce Temp Tablespace Size In Oracle 11g How To Reduce Temp Tablespace Size In Oracle 11g 12 How do I find used/free space in a TEMPORARY tablespace? One can manually increase or decrease the size of a datafile from Oracle 7.2 using. With an

More information

Create an Oracle8i Database in Windows

Create an Oracle8i Database in Windows The following instructions apply to Oracle 8i. This document assumes that you are familiar with the administration and use of Oracle and that you meet all Prerequisites. Please refer to the documentation

More information

A Examcollection.Premium.Exam.54q

A Examcollection.Premium.Exam.54q A2090-544.Examcollection.Premium.Exam.54q Number: A2090-544 Passing Score: 800 Time Limit: 120 min File Version: 32.2 http://www.gratisexam.com/ Exam Code: A2090-544 Exam Name: Assessment: DB2 9.7 Advanced

More information

Exam: 1Z Title : Oracle 9i: Database Fundamentals II. Ver :

Exam: 1Z Title : Oracle 9i: Database Fundamentals II. Ver : Exam: 1Z0-032 Title : Oracle 9i: Database Fundamentals II Ver : 08.02.04 Section A contains 196 questions. Section B contains 50 questions. Total number of questions are 246. Section A QUESTION 1 What

More information

PERFORMANCE TUNING TRAINING IN BANGALORE

PERFORMANCE TUNING TRAINING IN BANGALORE PERFORMANCE TUNING TRAINING IN BANGALORE TIB ACADEMY #5/3 BEML LAYOUT, VARATHUR MAIN ROAD KUNDALAHALLI GATE, BANGALORE 560066 PH: +91-9513332301/2302 WWW.TRAINININGBANGALORE.COM Oracle Database 11g: Performance

More information

IBM Americas Advanced Technical Support

IBM Americas Advanced Technical Support IBM Oracle Technical Brief Oracle Architecture and Tuning on AIX Damir Rubic IBM SAP & Oracle Solutions Advanced Technical Skills Version: 2.30 Date: 08 October 2012 ACKNOWLEDGEMENTS... 5 DISCLAIMERS...

More information