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

Size: px
Start display at page:

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

Transcription

1 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 USERS MANAGEMENT NET 8 (SQL * NET ) ENHANCES OPEN NETWORK CONNECTION TO SERVER TO AVOID O.S. RESTRICTIONS FOR NO. OF SESSIONS THROUGH MULTIPLEXING, CONNECTION POOLING AND CONCENTRATION OF APPLICATION REQUESTS AUTOMATED PROTECTED PARALLEL PROCESSING ENHANCEMENTS PARALLEL QUERY ENHANCEMENTS INTRA-PARTITION PARALLELISM INTER-PARTITION PARTION-AWARE PARALLEL SERVER ENHANCEMENTS NCA ARCHITECTURE MULTI THREADED ARCHITECTURE CLIENT SERVER ARCHITECTURE DATA BASE MANAGEMENT & SECURITY SERVER-MANAGED BACKUP & RECOVERY INCREMENTAL BACKUPS POINT IN TIME RECOVERY OF INDIVIDUAL TABLESPACES PASSWORD MANAGEMENT DISTRIBUTED DATABASES REPLICATION ENHANCEMENTS DISTRIBUTED SECURITY DOMAINS HETEROGENOUS DATA ACCESS OBJECT ORIENTED TECHNOLOGY OBJECT ORIENTED DATABASES CREATE OR REPLACE TYPE SALES.PART_TYPE AS OBJECT ( ID INTEGER DESCRIPTION VARCHAR(50) ON_HAND INTEGER RECORD POINT INTEGER MEMBER FUNCTION PART_ID ( DESCR IN VARCHAR ) RETURN INTEGER ) ; OBJECT TYPES, CLASSES AND OBJECTS ATTRIBUTES AND METHODS ORDER_PART PART_TYPE Attributes PARTS ID _ON_ DESCRIPTION HAND ON_HAND REORDER_POINT Methods ORACLE SOFTWARE STRUCTURES DATABASE SERVER AND DATABASE INSTANCE COMMONLY REFERRED AS DATA BASE INSTANCE IS COLLECTION OF SERVER SIDE PROCESS AND MEMORY AREAS THAT ORACLE USES Oracle database instance Background server processes Memory areas Shared global area buffer cache Shared pool OBJECT VIEWS An object type (a class) has attributes to describe the corresponding object, as well as methods that allow applications to work with objects of the class. SERVER STARTUP AND SHUT DOWN 1) START AN INSTANCE 2) MOUNTING 3) OPEN THE DATABASE AFTER SERVER START UP NOW THE DATABASE IS AVAILABLE FOR USERS SHUTDOWN DISMOUNT SHUT DOWN THE INSTANCE SERVER CRASHES ABNORMAL SERVER SHUT DOWN KILLING OF ONE OR MORE BACKGROUND PROCESS BY O.S. OPERATION ORACLE 8 HAS AUTOMATIC RECOVERY FEATURES SERVER SIDE BACKGROUND PROCESSES Data files Transaction log DBWR PARALLEL SERVER OPTION AND HIGH AVAILABILITY MULTIPLE DATABASE INSTANCES RUNNING ON DIFFERENT NODES, MOUNT AND OPEN THE SAME ORACLE DATABASE IN PARALLEL CKPT PMON LGWR SERVER CONNECTION USERS CAN WORK WITH THE DATABASE THROUGH ANY INSTANCE THAT IS MOUNTED TO THE DATABASE AFTER AN ORACLE INSTANCE IS UP AND RUNNING YOU CAN ESTABLISH A CONNECTION WITH THE SERVER TO PERFORM DATABASE WORK SMON Other server processes ARCH Archeived transaction log DISTINCT VERSUS MULTITHREADED BACKGROUND PROCESSES

2 CLIENT SERVER PROCESS ARCHITECTURE DEDICATED SERVER ARCHITECTURE Dedicated s Instance NETWORK MULTITHREADED SERVER Instance SINGLE-TASK SERVER PROCESS ARCHITECTURE DUMB TERMINAL Single Task Instance Dispatcher Shared Access Code Client Code Request and response queues A host-based system uses a single-task server process architecture MEMORY AREAS AND DATA CACHING CACHE HITS ( GETS ) CACHE MISS CACHE RELOAD ( DATA AGED ) CACHING ALGORITHMS - MOST RECENTLY USED MRU/LRU BUFFER CACHE Instance Foreground Memory Cache Cache miss or reload causes disk access Buffer Cache Cache hit does not create disk access File on disk DBWR Blocks age from cache back to disk To cache data intelligently, an application uses a caching algorithm that maximizes cache hits and minimizes cache mises and cache reloads. Foreground server processes read data into an Oracle instance s buffer cache to perform database work. Eventually, the DBWR background process writes dirty data blocks form the buffer cache back to the database s data files. YOU CAN INCREASE THE BUFFER CACHE SIZE THE SHARED POOL

3 THE SHARED POOL ORACLE NET8 AS SQL*NET LIBRARY CACHE AND SHARED SQL THE DICTIONARY CACHE SHARED POOL SIZE SGA PGA SORT AREAS TEMPORARY WORK SPACE Instance Shared Pool Foreground CONNECTION POOLING MULTIPLEXING TNS LISTENER WEB LISTENER Client Net 8 on the Client Protocol Adapter Network Net 8 on the Library Cache UPDATE... Dictionary Cache UPDATE... TNS Layer UPDATE... NET Layer An instance s shared pool contains two memory areas: the library cache and the dictionary cache. Net 8 makes the network between the clients and servers of an application transparent CONNECTION POOLING MULTIPLEXING TNS Connection TNS Connection Idle Host OS Idle Network Transport Idle Connection pooling allows database sessions to use a set number of physical TNS connections and reduce network overhead. Multiplexing many network connections into a single physical network transport to reduce the operating system overhead. TNS LISTENER WEB LISTENER TNS ADDRESSING TNS NAMES.ORA - THE TNS NAMES.ORA CONFIGURATION FILE RESIDES ON BOTH CLIENTS AND SERVERS IN AN ORACLE NETWORK. SQLINET.ORA - THE SQLNET.ORA CONFIGURATION FILE RESIDES ON BOTH CLIENTS AND SERVERS IN AN ORACLE NETWORK. SQLNET.OPRA CONTAINS SPECIAL CONFIGURATION PARAMETERS THAT CONFIGURE A SQL *NET CONNECTION FROM A CLIENT OR SERVER TO ANOTHER ORACLE SERVICE IN A NETWORK. MULTIPLE NETWORK AND MULTIPLE PROTOCOL INTERCHANGES Client UPDATE... TCP/IP network Hop Interchange IPX/SPX network LISTENER.ORA - THE LISTENER.ORA CONFIGURATION FILE RESIDES ONLY ON SERVERS THAT RUN A TNS LISTENER PROCESS. LISTENER.ORA CONFIGURES ONE OR MORE TNS LISTENER PROCESSES. THE FILE DESCRIBES THE NAMES, ADDRESSES, AND DATABASES THAT CORRESPOND TO ONE OR MORE LISTENER PROCESSES. MultiProtocol Interchanges can join different network communities to create one large TNS network that supports client/server applications.

4 UNIQUE DATA STORAGE FOR MULTIMEDIA DATA DATA PARTITIONING Row Row Row BFILE data managed by the server s file system Non-partitioned CUSTOMERS table Partitioned CUSTOMERS table AL,AK,AZ,AR,CA,CO,CT,DC,DE,FL,GA Non-LOB data stored together in a tablespace LOB data stored separately from other row data, but inside database Customers for all states HI,IA,ID,IL,IN,KS,KY,LA,MA,MD,ME MI,MN,MS,MO,MT,NC,ND,NE,NH,NJ NM,NV,NY,OH,OK,OR,PA,PR,RI Locators point to LOB and BFILE data locations s file system SC,SD,TN,TX,UT,VA,VT,WA,WI,WV,WY space space Distributing the storage of primary table data and related multimedia data to different physical locations to reduce disk contention. Oracle8 supports the partitioning of table rows by range. BLOCK THRESHOLDS PCTFREE = 10 PCTUSED = 40 PCTFREE = 10 PCTUSED reached, block put back on free list PCTFREE = 10 PCTUSED = 40 PCTFREE = 10 Space reserved for row updates PCTFREE reached, block taken off free list TABLE SPACES TABLESPACE IS A LOGICAL ORGANISATION OF DATA WITHIN AN ORACLE DATA BASE THAT CORRESPOND TO ONE OR MORE PHYSICAL DATA FILES Data Files PCTUSED = 40 PCTUSED = 40 Oracle removes a data block from a free list when it becomes PCTFREE full. ORACLE returns the block to a free list when it becomes PCTUSED full. CREATE TABLE SALES.ORDERS (.COLUMN SPECIFICATIONS ) PCTFREE 20 PCTUSED 60 ; TRANSACTION ENTRIES spaces INTRANS MAXTRANS SETTINGS DEFAULTS FOR OBJECT STORAGE Each tablespace in an Oracle database physically stores its data in one or more associated data files. WHEN YOU CREATE A NEW DATABASE OBJECT SUCH AS TABLE OR AN INDEX, ORACLE STORES THE DATABASE OBJECT WITHIN THE TABLESPACE OF YOUR CHOICE IF NO INDICATION OF TABLESPACE CHOICE, IT STORES THE OBJECT IN YOUR ACCOUNT DEFAULT TABLESPACE spaces Datafiles SYSTEM TABLE SPACE EVERY ORACLE DATABASE HAS ATLEAST ONE TABLESPACE WHEN YOU CREATE A NEW ORACLE DATABASE, YOU MUST INDICATE THE NAMES THE SIZES OTHER CHARACTERISTICS OF DATA FILES THAT MAKE UP THE PHYSICAL STORAGE FOR THE SYSTEM TABLESPACE ORACLE USES THE SYSTEM TABLESPACE FOR : DATA DICTIONARY SOURCE & COMPILED CODE OF PL/SQL VIEWS, OBJECT TYPE SPECIFICATIONS OTHER TABLESPACES SYSTEM space TEMP space ROLLBACK space ACCOUNTING space ACCOUNTING_INDEX space MANUFACTURING space MANUFACTURING_INDEX space

5 DATA FILES A TABLESPACE S NUMBER OF DATA FILES USE OF DATA FILE SPACE COALESCING FREE SPACE IN A TABLESPACES DATA FILES space space Coalesce space YOU CAN ADD ONE OR MORE NEW DATA FILE REMAINS CONSTANT YOU CAN MANUALLY RESIZE ONE OR MORE OF THE EXISTING DATA FILES IN THE TABLESPACE YOU CAN CONFIGURE ONE OR MORE OF THE DATA FILES IN THE TABLE SPACE TO AUTOMATICALLY EXTEND WHEN THE TABLESPACE BECOMES FULL AND REQUIRES MORE SPACE ON LINE & OFF LINE DATA FILES CONTROL FILES Free space Used space DATA FILE SIZE IN GENERAL THE SIZE OF DATA FILE REMAINS CONSTANT CONTROL FILES INCLUDE THE NAME OF DATABASE AS WELL AS THE NAMES AND LOCATION OF ALL FILES ASSOCIATED WITH THE DATABASE CONTROL FILES ALSO KEEPS TRACK OF INTERNAL SYSTEM INFORMATION TO LOG THE CURRENT PHYSICAL STATE OF THE SYSTEM, INCLUDING INFORMATION ABOUT TABLESPACES, DATA FILES AND SYSTEM BACKUPS SEGMENTS, EXTENTS & DATA BLOCKS ROLL BACK SEGMENTS DATA & INDEX SEGMENTS Data Block TEMPORARY SEGMENTS TEMPORARY TABLESPACES Data Segment Extents Transaction UPDATE sales.customers SET zipcode = WHERE id = 1; Rollback Segment Log old zipcode in rollback segment Transaction UPDATE sales.customers SET zipcode = WHERE id = 1; ROLLBACK; Rollback Segment THE SYSTEM ROLL BACK SEGMENT MULTIPLE ROLLBACK SEGMENT ON LINE & OFF LINE ROLLBACK SEGMENTS PUBLIC & PRIVATE ROLLBACK SEGMENT Restore old zipcode from rollback segment OBJECT STORAGE SETTINGS TABLESPACE PLACEMENT CREATE TABLE ROLLBACK SEGMENT rbseg_10 TABLE SPACE rbseg IF YOU DO NOT MENTION TABLESPACE SPECIFICATION, ORACLE CREATES THE SEGMENT IN THE SYSTEM TABLESPACE EXTENT SETTINGS CREATE TABLE SALES.CUSTOMERS (.COLUMN SPECIFICATIONS.) STORAGE ( INITIAL 500K NEXT 500K MINEXTENTS 1 MAXEXTENTS 10 PCTINCREASE 50 ); DATA BLOCK SETTINGS FREE LIST SETTINGS CREATE TABLE SALES.CUSTOMER_NAME ON SALES.CUSTOMER ( LASTNAME, FIRSTNAME ) STORAGE (..OTHER STORAGE OPTIONS.. ) FREELIST GROUP2 FREELIST 2 ); DATA BLOCKS DATA BLOCK ALLOCATION DATA BLOCK AVAILBILITY & FREE LIST Free List Free List Free List Data Block Data Block Data Block INSERTs... DELETEs... A data block going on an off and object s free list, depending on how full it is

6 ROW CHAINING & DATA BLOCK SIZE Parallel Processing Data Blocks Chained row Rows fit in a single block Storing pieces of a row in a chain that spans multiple data blocks Parallel Processors - The database query is divided into logical components that can be run on MP. Oracle Parallel query option uses this. In Recent years, MP - Multi Processors SMP - Symmetrical Multi Processors MPP - Massively Parallel Processors Parallel Processing Parallel Option - Even a full table scan can be distributed among separate s Parallel Option - Creates a real time copy of the oracle instance and database on one or more file servers, or nodes of a network. Hot Stand-by real time copy Distributed Option - Joining two or more remote DBs Data Replication Option 64-bit option INTRODUCTION TO PARALLEL PROCESSING UNIPROCESSOR VERSUS MULTIPROCESSOR COMPUTERS COMPUTER SPLITS ONE JOB INTO SUBTASKS AND THEN PROCESS THEM IN PARALLEL USING MULTIPROCESSORS TO REDUCE COMPLETION TIME SHARED MEMORY SYSTEMS Shared Memory Shared Disks A Shared Memory System Tightly coupled processors SHARED DISK SYSTEMS SHARED NOTHING SYSTEMS Private Memory Distributed lock manager Private Memory Private Memory Private Memory Private Memory Private Memory Shared Disks A Shared Disk System Private Disks A Shared Nothing System

7 PROCESSING SQL IN PARALLEL PARALLEL SQL PROCESSING SERIAL PROCESSING SELECT column1, column2 FROM table1, table2 WHERE columnx = columny ORDER BY column1 SELECT column1, column2 FROM table1, table2 WHERE columnx = columny ORDER BY column1 1 2 Join Results One processor performs all work A SQL request executed on a multiprocessor computer using serial processing rather than parallel processing Idle s Slow completion time 1 Join Results 2 All processors share the workload Fast completion time A SQL request executed on a multiprocessor computer using parallel processing PARALLEL SQL PROCESSING ARCHITECTURE DATA PARTITIONING AND PARALLEL SQL PROCESSING SELECT... coordinator Other queries SELECT * FROM orders ORDER BY ord_id ORDERS servers 6 Disk I/O bottleneck shows completion time Pool of available query servers Oracle s parallel processing architecture Results Parallel SQL processing without partitioned data create pipelined parallelism. SELECT * FROM orders ORDER BY ord_id Partitioned ORDERS ORACLE S PARALLEL SERVER OPTION - MULTIPLE INSTANCES FOR HIGH AVAILABILITY WHAT IS PARALLEL DATABASE ACCESS? Applications instance instance Applications 12 Results Parallel SQL processing can perform best when you partition large tables and indexes Fast completion time Oracle database A Parallel server allows multiple instances of Oracle to access the same database concurrently.

8 SHARED DATABASE ACCESS MECHANISM ORACLE S CONCURRENCY AND CONSISTENCY MECHANISMS THREE Cs CONTENTION - CONTENTION HAPPENS WHEN TWO USERS TRY TO ACCESS SIMULTANEOUSLY THE SAME RESOURCE SUCH AS A FILE OR A PRINTER CONCURRENCY - CONCURRENCY HAPPENS WHEN MULTIPLE USERS CAN ACCESS THE SAME RESOURCE AS THOUGH EACH USER HAS ACCESS TO THE RESOURCE IN ISOLATION. CONCURRENCY IS HIGH WHEN A USER NOTICES NO APPARENT WAIT TO ACCESS THE SHARED RESOURCE. CONVERSELY, CONCURRENCY IS LOW WHEN A USER MUST WAIT A NOTICEABLE PERIODS OF TIME TO ACCESS THE SHARED RESOURCE. CONSISTENCY - CONSISTENCY HAPPENS WHEN A USER ACCESSES A SHARED RESOURCE AND THE RESOURCE EXHIBITS THE SAME CHARACTERISTICS AMONG OPERATIONS ORACLE S LOCKING MECHANISM AUTOMATIC AND EXPLICIT LOCKING LOCK LEVELS SHARED LOCKS SHARED LOCK ON A DATABASE RESOURCE GIVES A TRANSACTION SHARED ACCESS TO THE RESOURCE SHARED LOCK ALLOW FOR HIGH DEGREES OF TRANSACTION CONCURRECY Transaction 1 Shared lock Exclusive lock Exclusive lock Row # 1 Row # 2 Row # 3 Row # 4 Row # 5 Row # 6 Row # 7. Transaction 2 Shared lock Exclusive lock Exclusive lock Shared and exclusive locks allow for more and less concurrency among database operations. DML LOCKS ROW LOCKS UPDATE SALES.CUSTOMERS SET.. WHERE LAST_NAME = ELISON SELECT * FROM SALES.CUSTOMERS WHERE ZIPCODE = FOR UPDATE NOWAIT; TABLE LOCKS LOCK TABLE CUSTOMERS IN EXCLUSIVE MODE NOWAIT; DEAD LOCKS Transaction 1 Transaction 2 DDL LOCKS DEADLOCK RESOLUTION LOCK ESCALATION QUERIES AND LOCKING EXCLUSIVE DDL LOCKS SHARED DDL LOCKS PARSE LOCKS INTERNAL LATCHES MULTIVERSIONING Has lock Waiting for lock Row # 1 Row # 2. Waiting for lock Has lock SYSTEM CHANGE NUMBER Two transactions in a deadlock CONTROLLING DATABASE ACCESS USERS MANAGEMENT AND AUTHENTICATION USERS AUTHENTICATION PASSWORD AUTHENTICATION OPERATING SYSTEM AUTHENTICATION GLOBAL USERS AUTHENTICATION A USERS S DEFAULT TABLESPACE A USERS S TEMPORARY TABLESPACE LOCKED AND UNLOCKED USER ACCOUNTS PRIVILLEGE MANAGEMENT SYSTEM PRIVILEGES OBJECT PRIVILEGES GRANTING AND REVOKING PRIVILEGES PRIVILEGE MANAGEMENT WITH ROLES PRE-DEFINED DATABASE ROLES ENABLES AND DISABLES ROLES DEFAULT ROLES ROLE AUTHENTICATION RESOURCE LIMITATION TABLESPACE QUOTAS RESOURCE LIMIT PROFILES TIME LOGICAL DISK I/O PER SESSION CONCURRENT DATABASE SESSIONS MAX. CONNECT TIME USERS ACCOUNT MANAGEMENT NO.OF CONSEQUITIVE FAILED CONNECTION ATTEMPTS TO ALLOW BEFORE ORACLE LOCKS THE ACCOUNT THE LIFE TIME OF THE ACCOUNT S PASSWORD NO, OF TIMES PASSWORD MUST BE CHANGED THE DEFAULT PROFILE DATABASE AUDITING SELECTIVE AUDITING AUDIT RECORDS AND THE AUDIT TRAIL

9 CONTROLLING DATABASE ACCESS USERS MANAGEMENT AND AUTHENTICATION USERS AUTHENTICATION PASSWORD AUTHENTICATION OPERATING SYSTEM AUTHENTICATION GLOBAL USERS AUTHENTICATION A USERS S DEFAULT TABLESPACES SYSTEM TABLESPACE A USERS S TEMPORARY TABLESPACES SYSTEM TABLESPACE LOCKED AND UNLOCKED USER ACCOUNTS USER LEAVE ORGANISATION AUTOMATICALLY LOCKED ONCE PASSWORD EXPIRED PRIVILLEGE MANAGEMENT CONNECTION TO AN ORACLE DATABASE CREATE SESSION SYSTEM PRIVILEGE CREATE TABLE DELETE OBJECT SYSTEM PRIVILEGES USER THE ABILITY TO PERFORM SOME TYPE OF SYSTEM - WIDE OPERATION THERE ARE 100 PRIVILEGES OBJECT PRIVILEGES USER THE ABILITY TO PERFORM A SPECIFIC TYPE OF OPERATION ON A SPECIFIC DATABASE OBJECTS SUCH AS TABLE, VIEW OR STORED PROCEDURES ETC. INSERT, EXECUTE, SELECT, UPDATE, DELETE GRANTING AND REVOKING PRIVILEGES PRIVILEGE MANAGEMENT WITH ROLES PRE - DEFINED DATABASE ROLES CONNECT, RESOURCE, DBA, SELECT_CATALOG_ROLE DELETE_CATALOG_ROLE USER DEFINED ROLES SQL STATEMENT ORIENTED RESOURCE LIMITATION TABLESPACE QUOTAS USER CANNOT CREATE OBJECTS IN A TABLESPAEC UNLESS THE USER HAS A QUOTA FOR THE TABLESPACE RESOURCE LIMIT PROFILES TIME LOGICAL DISK I/O PER SESSION CONCURRENT DATABASE SESSIONS MAX. CONNECT TIME USERS ACCOUNT MANAGEMENT DATABASE AUDITING NO. OF CONSEQUITIVE CONNECTION ATTEMPTS TO ALLOW BEFORE ORACLE LOCKS THE ACCOUNT THE LIFE TIME OF THE ACCOUNT S PASSWORD NO. OF TIMES PASSWORD MUST BE CHANGED THE DEFAULT PROFILE SELECTIVE AUDITING AUDIT RECORDS AND THE AUDIT TRAIL

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

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

The Oracle DBMS Architecture: A Technical Introduction

The Oracle DBMS Architecture: A Technical Introduction 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

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

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

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

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

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

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

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

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

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

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

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 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL:

Oracle 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: A. Introduction Course Objectives, Course Agenda and Appendixes Used in this Course Overview of Oracle 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

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 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 1Z0-235 Exam Questions & Answers

Oracle 1Z0-235 Exam Questions & Answers Oracle 1Z0-235 Exam Questions & Answers Number: 1z0-235 Passing Score: 800 Time Limit: 120 min File Version: 26.5 http://www.gratisexam.com/ Oracle 1Z0-235 Exam Questions & Answers Exam Name: Oracle 11i

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 12c R2: Administration Workshop Ed 3 NEW

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

More information

Oracle Database 12c R2: Administration Workshop Ed 3

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

More information

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

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

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

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

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

NonStop SQL/MX DBS. Concepts and Architecture. Frans Jongma, NonStop Advanced Technology Center

NonStop SQL/MX DBS. Concepts and Architecture. Frans Jongma, NonStop Advanced Technology Center NonStop SQL/MX DBS Concepts and Architecture Frans Jongma, NonStop Advanced Technology Center Agenda Definitions Multi-tenant database What defines a database What defines an instance High level overview

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-9 7 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training

More information

Exam Name: Oracle 11i Applications DBA: Fundamentals I Exam Type Oracle Exam Code: 1z0-235 Total Questions: 108

Exam Name: Oracle 11i Applications DBA: Fundamentals I Exam Type Oracle Exam Code: 1z0-235 Total Questions: 108 Question: 1 You receive the following error while connecting to an Oracle9i database instance: ORA-12523 TNS:listener could not find instance appropriate for the client connection Which action would be

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

Course: Oracle Database 12c R2: Administration Workshop Ed 3

Course: Oracle Database 12c R2: Administration Workshop Ed 3 Course: Oracle Database 12c R2: Administration Workshop Ed 3 The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with a firm foundation in administration of an Oracle

More information

Call: Oracle 11g DBA Course Content:35-40hours Course Outline

Call: Oracle 11g DBA Course Content:35-40hours Course Outline Oracle 11g DBA Course Content:35-40hours Course Outline INTRODUCTION TO ORACLE DBA What is DBA? Why a Company needs a DBA? Roles & Responsibilities of DBA Oracle Architecture Physical and Logical Phase

More information

ORACLE DBA I. Exploring Oracle Database Architecture

ORACLE DBA I. Exploring Oracle Database Architecture ORACLE DBA I Exploring Oracle Database Architecture Introducing Oracle Database Relation Database Models Oracle SQL and PL/SQL Oracle Database Server Architecture Connecting to Oracle Databases Oracle

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

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

Mobile : ( India )

Mobile : ( India ) ORACLE DBA COURSE CONTENT : - INTRODUCTION TO ORACLE DBA What is DBA? Why a Company needs a DBA? Roles & Responsibilities of DBA Oracle Architecture Physical and Logical Phase of Database Types of files(control

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

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

Question: 1 Identify three components of an Oracle instance for which you can change the size dynamically. (Choose three.)

Question: 1 Identify three components of an Oracle instance for which you can change the size dynamically. (Choose three.) Question: 1 Identify three components of an Oracle instance for which you can change the size dynamically. (Choose three.) A. Java Pool B. Large Pool C. Shared Pool D. Redo Log Buffer E. Database Buffer

More information

Topics - System Administration for Glovia

Topics - System Administration for Glovia Topics - System Administration for Glovia 1. Network Architecture Sample Network 2. glovia.com Technology Architecture Application Server Database Server Web Server 3. Operating System Architecture High

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 - Oracle Database 12c R2: Administration Workshop Ed 3

Oracle - Oracle Database 12c R2: Administration Workshop Ed 3 Oracle - Oracle Database 12c R2: Administration Workshop Ed 3 Code: Lengt h: URL: 12cDB-A 5 days View Online The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with

More information

Oracle Database 11g: Administration Workshop I

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

More information

Oracle Database 12c: Administration Workshop Ed 2 NEW

Oracle Database 12c: Administration Workshop Ed 2 NEW Oracle Database 12c: Administration Workshop Ed 2 NEW Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about the Oracle Database architecture. You will

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 Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led

Oracle Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led Oracle Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led Certification: Oracle Database 12c Administrator Certified Associate Exam: Oracle Database 12c: Installation and Administration

More information

CHAPTER. Oracle Database 11g Architecture Options

CHAPTER. Oracle Database 11g Architecture Options CHAPTER 1 Oracle Database 11g Architecture Options 3 4 Part I: Critical Database Concepts Oracle Database 11g is a significant upgrade from prior releases of Oracle. New features give developers, database

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

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

Security Mechanisms I. Key Slide. Key Slide. Security Mechanisms III. Security Mechanisms II

Security Mechanisms I. Key Slide. Key Slide. Security Mechanisms III. Security Mechanisms II Database Facilities One of the main benefits from centralising the implementation data model of a DBMS is that a number of critical facilities can be programmed once against this model and thus be available

More information

Oracle Database 12c: Administration Workshop Ed 2

Oracle Database 12c: Administration Workshop Ed 2 Oracle University Contact Us: +40 21 3678820 Oracle Database 12c: Administration Workshop Ed 2 Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about

More information

Oracle Exam 1z0-062 Oracle Database 12c: Installation and Administration Version: 6.0 [ Total Questions: 166 ]

Oracle Exam 1z0-062 Oracle Database 12c: Installation and Administration Version: 6.0 [ Total Questions: 166 ] s@lm@n Oracle Exam 1z0-062 Oracle Database 12c: Installation and Administration Version: 6.0 [ Total Questions: 166 ] Question No : 1 Examine the parameters for your database instance: NAMETYPE VALUE --------------------------

More information

Oracle Database 12c: Administration Workshop Ed 2

Oracle Database 12c: Administration Workshop Ed 2 Oracle Database 12c: Administration Workshop Ed 2 Duration 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about the Oracle Database architecture. You will discover

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

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

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

Tuesday, April 6, Inside SQL Server

Tuesday, April 6, Inside SQL Server Inside SQL Server Thank you Goals What happens when a query runs? What each component does How to observe what s going on Delicious SQL Cake Delicious SQL Cake Delicious SQL Cake Delicious SQL Cake Delicious

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

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

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

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

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

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

ExamMagic.com. Exam : 1Z : Oracle Database 10g: Administration I. Ver : 7.0

ExamMagic.com. Exam : 1Z : Oracle Database 10g: Administration I. Ver : 7.0 ExamMagic.com Exam : 1Z0-042 Title : Oracle Database 10g: Administration I Ver : 7.0 WWW.ExamMa gic.com - 1: You executed the following command to back up the control file: ALTER DATABASE BACKUP CONTROLFILE

More information

<Insert Picture Here> DBA Best Practices: A Primer on Managing Oracle Databases

<Insert Picture Here> DBA Best Practices: A Primer on Managing Oracle Databases DBA Best Practices: A Primer on Managing Oracle Databases Mughees A. Minhas Sr. Director of Product Management Database and Systems Management The following is intended to outline

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 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 1Z Upgrade to Oracle Database 12c. Download Full Version :

Oracle 1Z Upgrade to Oracle Database 12c. Download Full Version : Oracle 1Z0-060 Upgrade to Oracle Database 12c Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-060 QUESTION: 141 Which statement is true about Enterprise Manager (EM) express in

More information

Exam : 1Z Title : Oracle Database 10g: Administration I. Ver :

Exam : 1Z Title : Oracle Database 10g: Administration I. Ver : Exam : 1Z0-042 Title : Oracle Database 10g: Administration I Ver : 06.03.08 QUESTION 1: You executed the following command to back up the control file: ALTER DATABASE BACKUP CONTROLFILE TO TRACE; What

More information

Short Summary of DB2 V4 Through V6 Changes

Short Summary of DB2 V4 Through V6 Changes IN THIS CHAPTER DB2 Version 6 Features DB2 Version 5 Features DB2 Version 4 Features Short Summary of DB2 V4 Through V6 Changes This appendix provides short checklists of features for the most recent versions

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

5. Single-row function

5. Single-row function 1. 2. Introduction Oracle 11g Oracle 11g Application Server Oracle database Relational and Object Relational Database Management system Oracle internet platform System Development Life cycle 3. Writing

More information

supporting Oracle products. An OCA credential is available for several of today s most in -demand technology job roles. OCA & OCP Requirement

supporting Oracle products. An OCA credential is available for several of today s most in -demand technology job roles. OCA & OCP Requirement https://workforce.oracle.com Computer Point Nepal is only authorized center of Oracle as an Oracle Workforce Development Partner Program under Oracle University in Nepal to deliver Official Oracle Trainings.

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

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

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

Analyzing a Statspack Report

Analyzing a Statspack Report Analyzing a Statspack Report A guide to the detail sections of the Statspack report Wait Events Quick Reference Guide Introduction Executing Snapshots Load Profile Section Top 5 Timed Events Section Resolving

More information

Software Development & Education Center

Software Development & Education Center Software Development & Education Center Oracle 10g Database Administrator What you will learn Oracle 10g Database Administration Workshop 1 This course is your first step towards success as an Oracle professional,

More information

Outline. Database Tuning. Ideal Transaction. Concurrency Tuning Goals. Concurrency Tuning. Nikolaus Augsten. Lock Tuning. Unit 8 WS 2013/2014

Outline. Database Tuning. Ideal Transaction. Concurrency Tuning Goals. Concurrency Tuning. Nikolaus Augsten. Lock Tuning. Unit 8 WS 2013/2014 Outline Database Tuning Nikolaus Augsten University of Salzburg Department of Computer Science Database Group 1 Unit 8 WS 2013/2014 Adapted from Database Tuning by Dennis Shasha and Philippe Bonnet. Nikolaus

More information

Oracle 1Z Oracle Database 12c - Installation and Administration. Download Full version :

Oracle 1Z Oracle Database 12c - Installation and Administration. Download Full version : Oracle 1Z0-062 Oracle Database 12c - Installation and Administration Download Full version : https://killexams.com/pass4sure/exam-detail/1z0-062 QUESTION: 42 In your database, you want to ensure that idle

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

Enterprise Manager: Scalable Oracle Management

Enterprise Manager: Scalable Oracle Management Session id:xxxxx Enterprise Manager: Scalable Oracle John Kennedy System Products, Server Technologies, Oracle Corporation Enterprise Manager 10G Database Oracle World 2003 Agenda Enterprise Manager 10G

More information

SQL Server DBA Course Content

SQL Server DBA Course Content 1 SQL Server DBA Course Content SQL Server Versions and Editions Features of SQL Server Differentiate the SQL Server and Oracle Services of SQL Server Tools of SQL server SQL Server Installation SQL server

More information

Lock Tuning. Concurrency Control Goals. Trade-off between correctness and performance. Correctness goals. Performance goals.

Lock Tuning. Concurrency Control Goals. Trade-off between correctness and performance. Correctness goals. Performance goals. Lock Tuning Concurrency Control Goals Performance goals Reduce blocking One transaction waits for another to release its locks Avoid deadlocks Transactions are waiting for each other to release their locks

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

Oracle 1Z0-031 Exam Questions & Answers

Oracle 1Z0-031 Exam Questions & Answers Oracle 1Z0-031 Exam Questions & Answers Number: 1z0-031 Passing Score: 600 Time Limit: 105 min File Version: 10.2 http://www.gratisexam.com/ Oracle 1Z0-031 Exam Questions & Answers Exam Name: orcacle9i

More information

Course 40045A: Microsoft SQL Server for Oracle DBAs

Course 40045A: Microsoft SQL Server for Oracle DBAs Skip to main content Course 40045A: Microsoft SQL Server for Oracle DBAs - Course details Course Outline Module 1: Database and Instance This module provides an understanding of the two major components

More information

Oracle.ActualTests.1Z0-026.v by.Ramon.126q

Oracle.ActualTests.1Z0-026.v by.Ramon.126q Oracle.ActualTests.1Z0-026.v2009-03-19.by.Ramon.126q Number: 1Z0-026 Passing Score: 800 Time Limit: 120 min File Version: 22.4 http://www.gratisexam.com/ Oracle 1z0-026 Exam Exam Name: Network Administration

More information

SQL (Structured Query Language)

SQL (Structured Query Language) Dear Student, Based upon your enquiry we are pleased to send you the course curriculum for Oracle DBA 11g SQL (Structured Query Language) Software Installation (Environment Setup for Oracle on Window10)

More information

Database Management and Tuning

Database Management and Tuning Database Management and Tuning Concurrency Tuning Johann Gamper Free University of Bozen-Bolzano Faculty of Computer Science IDSE Unit 8 May 10, 2012 Acknowledgements: The slides are provided by Nikolaus

More information

Oracle Database 12c Administration Workshop

Oracle Database 12c Administration Workshop Oracle Database 12c Administration Workshop Course information Days : 5 Total lessons : 18 Suggested Prerequisites : Oracle Database : SQL Fundamentals I Training includes : Experienced trainer(s) Pre-test

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