Oracle 10g Database Administrator: Implementation and Administration

Slides:



Advertisements
Similar presentations
ITEC474 INTRODUCTION.
Advertisements

Distributed Data Processing
Chapter 20 Oracle Secure Backup.
2 Copyright © 2005, Oracle. All rights reserved. Installing the Oracle Database Software.
Lecture-7/ T. Nouf Almujally
Acknowledgments Byron Bush, Scott S. Hilpert and Lee, JeongKyu
Overview of Database Administrator (DBA) Tools
Oracle9i Database Administrator: Implementation and Administration 1 Chapter 2 Overview of Database Administrator (DBA) Tools.
Introduction to DBA.
Chapter 9 Chapter 9: Managing Groups, Folders, Files, and Object Security.
Client/Server Databases and the Oracle 10g Relational Database
70-290: MCSE Guide to Managing a Microsoft Windows Server 2003 Environment Chapter 1: Introduction to Windows Server 2003.
Systems Architecture, Fourth Edition1 Internet and Distributed Application Services Chapter 13.
Advanced Databases Basic Database Administration Guide to Oracle 10g 1.
2 Copyright © 2009, Oracle. All rights reserved. Installing your Oracle Software.
A Guide to Oracle9i1 Introduction to Oracle9i Database Administration Chapter 11.
Oracle Database Administration. Rana Almurshed 2 course objective After completing this course you should be able to: install, create and administrate.
MCTS Guide to Microsoft Windows Server 2008 Network Infrastructure Configuration Chapter 11 Managing and Monitoring a Windows Server 2008 Network.
9 Copyright © Oracle Corporation, All rights reserved. Oracle Recovery Manager Overview and Configuration.
MCTS Guide to Microsoft Windows Server 2008 Network Infrastructure Configuration Chapter 7 Configuring File Services in Windows Server 2008.
Passage Three Introduction to Microsoft SQL Server 2000.
Understanding and Managing WebSphere V5
Dynamics AX Technical Overview Application Architecture Dynamics AX Technical Overview.
Module 16: Software Maintenance Using Windows Server Update Services.
1 Copyright © 2009, Oracle. All rights reserved. Exploring the Oracle Database Architecture.
Hands-On Microsoft Windows Server 2008 Chapter 1 Introduction to Windows Server 2008.
IT – DBMS Concepts Relational Database Theory.
M ODULE 2 D ATABASE I NSTALLATION AND C ONFIGURATION Section 1: DBMS Installation 1 ITEC 450 Fall 2012.
Hands-On Microsoft Windows Server 2008 Chapter 1 Introduction to Windows Server 2008.
CHAPTER 2 Implementing a Database. Introduction to Creating Databases After you’ve installed the Oracle software, the next logical step is to create a.
Guide to Linux Installation and Administration, 2e 1 Chapter 9 Preparing for Emergencies.
Oracle on Windows Server Introduction to Oracle10g on Microsoft Windows Server.
Oracle10g RAC Service Architecture Overview of Real Application Cluster Ready Services, Nodeapps, and User Defined Services.
■ Decide on the local database name, and which domain will contain this database. These names are set in the initialization parameters DB_NAME and DB_DOMAIN.
Module 7: Fundamentals of Administering Windows Server 2008.
11 MANAGING AND DISTRIBUTING SOFTWARE BY USING GROUP POLICY Chapter 5.
1 SQL Server 2000 Administration Kashef Mughal MSB.
Oracle 10g Database Administrator: Implementation and Administration Chapter 2 Tools and Architecture.
A Guide to Oracle9i1 Database Instance startup and shutdown.
10/23/2015ISYS366 - Installation1 ISYS366 Installation.
Oracle 10g Database Administrator: Implementation and Administration Chapter 1 Oracle Architecture Overview.
1 Introduction to Oracle Chapter 1. 2 Before Databases Information was kept in files: Each field describes one piece of information about student Fields.
11 CLUSTERING AND AVAILABILITY Chapter 11. Chapter 11: CLUSTERING AND AVAILABILITY2 OVERVIEW  Describe the clustering capabilities of Microsoft Windows.
Mark E. Fuller Senior Principal Instructor Oracle University Oracle Corporation.
1 Chapter Overview Planning to Install SQL Server 2000 Deciding SQL Server 2000 Setup Configuration Options Running the SQL Server 2000 Setup Program Using.
Deploying Software with Group Policy Chapter Twelve.
Week 2 Lecture 1 Creating an Oracle Instance. Learning Objectives  Learn the steps for creating a database  Understand the prerequisites for creating.
Microsoft Windows XP Professional MCSE Exam
Week 1 Lecture 1 Oracle Architecture Overview. Learning Objectives Learn about Oracle9i architecture and key Oracle9i software components Discover differences.
Oracle Applications 11i Concepts II Brian Hitchcock OCP 11i DBA -- OCP 10g DBA Sun Microsystems Brian Hitchcock.
CHAPTER 1 Installing the Oracle Binaries. Introduction to Managing and Safeguarding Your Organization’s Data Efficiently installing Oracle software Create.
2 Copyright © 2006, Oracle. All rights reserved. Configuring Recovery Manager.
Oracle Architecture - Structure. Oracle Architecture - Structure The Oracle Server architecture 1. Structures are well-defined objects that store the.
Fundamentals of Information Systems, Sixth Edition Chapter 3 Database Systems, Data Centers, and Business Intelligence.
Introduction to Core Database Concepts Getting started with Databases and Structure Query Language (SQL)
I NTRODUCTION OF W EEK 2  Assignment Discussion  Due this week:  1-1 (Exam Proctor): everyone including in TLC  1-2 (SQL Review): review SQL  Review.
1 Copyright © 2008, Oracle. All rights reserved. Repository Basics.
Oracle 10g Administration Oracle Server Introduction Copyright ©2006, Custom Training Institute.
Oracle 10g Administration Database Architecture, Creation and Interfaces Copyright ©2006, Custom Training Institute.
Unit 2 Preparing the Database Environment.
Business System Development
Client/Server Databases and the Oracle 10g Relational Database
Creating an Oracle Database
Objectives Differentiate between the different editions of Windows Server 2003 Explain Windows Server 2003 network models and server roles Identify concepts.
Oracle Solaris Zones Study Purpose Only
Introduction of Week 3 Assignment Discussion
Installing the Oracle Database Software
Oracle Architecture Overview
Database administration
Presentation transcript:

Oracle 10g Database Administrator: Implementation and Administration Chapter 1 Oracle Architecture Overview

Objectives Learn about Oracle10g architecture and key Oracle10g software components Look at the ORACLASS database used in exercises throughout the book Discover differences between Oracle10g client and server installation options Learn how to use the Oracle Universal Installer Examine why to use OFA (Optimal Flexible Architecture) Oracle 10g Database Administrator: Implementation and Administration

Introduction to Oracle10g Architecture The Oracle10g RDBMS software suite includes everything you need to build/maintain a relational DB The basic software: Runs the database engine Manages the data storage for all information in the database Provides tools to manage users, tables, data integrity, backups, and basic data entry Includes additional tools and utilities that help monitor the performance and security of the database Oracle 10g Database Administrator: Implementation and Administration

Key Components of the Oracle10g OEM Oracle 10g Database Administrator: Implementation and Administration

Key Components of Oracle10g (continued) Oracle 10g Database Administrator: Implementation and Administration

Running the Database When you install an Oracle10g DB, you install the software components, create DB files to store your data, and start a set of background processes that allocate memory and handle database activities Oracle defines a DB as the collection of operating system files that store your data Database server: combination of DB software, a DB (the files), and DB instance (the SGA and the background processes) Single-instance server (typical configuration) Multiple-instance server Clustered servers Oracle 10g Database Administrator: Implementation and Administration

Running the Database (continued) Oracle 10g Database Administrator: Implementation and Administration

Running the Database (continued) Oracle 10g Database Administrator: Implementation and Administration

Running the Database (continued) Oracle 10g Database Administrator: Implementation and Administration

Running the Database (continued) When an application that uses the DB is run, it creates a user process that controls the connection to the database process On the DB side, the process that interacts with the user process is called a server process Two basic methods to connect these processes: Dedicated server: connects one user process with one server process Predefined DBs created on installation are configured in dedicated server mode Shared Servers: a minimal number of database server processes are shared with multiple connections, between an application and the DB Oracle 10g Database Administrator: Implementation and Administration

Some Optional Additions to Oracle10g Optional features requiring additional license fees: Oracle Partitioning Oracle Clusterware Oracle Spatial Oracle Data Mining Oracle COM Automation Feature Oracle Database Extensions for .NET Oracle Advanced Security Oracle Label Security Oracle Online Analytical Processing (OLAP) Services Oracle 10g Database Administrator: Implementation and Administration

Introduction to ORACLASS Database Main features: Enterprise Edition software User: CLASSMATE, password: CLASSPASS Initially owns no tables or other objects Required script instructions are included in each chapter Includes standard users SYSTEM and SYS Global Globe is a national newspaper chain and you have been hired to design and build its database You are starting from scratch Oracle 10g Database Administrator: Implementation and Administration

Overview of Oracle10g Installation Options Multi-tier (or n-tier) means that the data, processing, and user interfaces are divided into separate areas that are fairly independent of one another Oracle 10g Database Administrator: Implementation and Administration

Overview of Oracle10g Installation Options (continued) Oracle 10g Database Administrator: Implementation and Administration

Comparing Server-Side Installation Options Enterprise Edition: includes all major components Enables multiple users to connect concurrently Optimized for high data volume is common Supports multiple DB instances and replication Standard Edition: provides basic support for multi-user database applications on a smaller scale than that of the Enterprise Edition Cannot be upgraded with database features Personal Edition: single-user access to DB instance Two primary uses: programming and deployment Stress that this book primarily covers the Enterprise Edition of the server-side installation. Oracle 10g Database Administrator: Implementation and Administration

Comparing Client-Side Installation Options Client-side installations facilitate user access to a remote Oracle10g database Oracle Net Services component on the client side handles communication with remote database Four variations, including: Administrator: provides user management tools, including Enterprise Manager, to provide remote management of multiple databases Runtime: intended primarily for programmers who are developing applications on their own client machines while using a remote database as the connection to the database Oracle 10g Database Administrator: Implementation and Administration

The Oracle Universal Installer Keeps records on your previous installation activity If you install upgrades/enhancements later, it skips redundant subcomponents Enables you to view/uninstall components and subcomponents currently Does not allow you to remove a subcomponent that is still required by installed components Oracle 10g Database Administrator: Implementation and Administration

The Oracle Universal Installer (continued) Oracle 10g Database Administrator: Implementation and Administration

Oracle Home Oracle 10g Database Administrator: Implementation and Administration

Oracle Home (continued) Installer lets you install several versions of Oracle software on a single machine by setting up a separate directory structure for each version and its software components SILENT MODE installation enables you to run an installation without any human intervention setup.exe -responseFile <filename> -silent runInstaller -responseFile <filename> -silent Installer can also be used to install applications that you write by preparing an installation script with the optional Oracle package called the Software Packager Oracle 10g Database Administrator: Implementation and Administration

Description of Optimal Flexible Architecture (OFA) Provides standards to improve performance by: Spreading I/O functions across separate devices by separating data from software Improving performance by separating products into distinct directories that can be located on separate devices to reduce bottlenecks Speeding up administrative tasks, such as backups, by using naming standards for file types Improving detection and prevention of fragmentation in datafiles by using naming standards that quickly identify which tablespace and datafile are associated with one another Oracle 10g Database Administrator: Implementation and Administration

Directory Structure Standards SW and DB storage files are under ORACLE_BASE C:\oracle\product\10.2.0 /app/oracle/product/10.2.0 Directories found under ORACLE_BASE: Admin/<database name> db_1 client_1 oradata/<database name> flash_recovery_area DB files allow for division by function and by either database instance or software release number Oracle 10g Database Administrator: Implementation and Administration

Directory Structure Standards (continued) Path to Oracle software is called ORACLE_HOME containing Oracle binaries Defined as a variable within your system E.g. ORACLE_HOME/bin/runnit.exe Each installation has its own ORACLE_HOME Examples: /app/oracle/product/10.2.0/db 1 C:\oracle\product\10.2.0\db 1 c:\oracle\product\10.2.0\client 1 Contains a bin directory that holds most of the executables Oracle 10g Database Administrator: Implementation and Administration

Directory Structure Standards (continued) Oracle 10g Database Administrator: Implementation and Administration

File Naming Standards Oracle 10g Database Administrator: Implementation and Administration

Installing Oracle Software Oracle 10g Database Administrator: Implementation and Administration

Installing Oracle Software (continued) Oracle 10g Database Administrator: Implementation and Administration

Installing Oracle Software (continued) Oracle 10g Database Administrator: Implementation and Administration

Installing Oracle Software (continued) Oracle 10g Database Administrator: Implementation and Administration

Installing Oracle Software (continued) Oracle 10g Database Administrator: Implementation and Administration

Summary The core Oracle10g RDBMS software includes a suite of products The basic installation includes many components and subcomponents The key components of Oracle10g RDBMS software are: Oracle10g database, Oracle Net Services, Java/Web support and tools, Enterprise Manager, SQL*Plus, utilities, and pre-compilers Additional add-on options to Oracle10g can help increase database functionality and add more tools to the basic tool set provided by the basic version Oracle 10g Database Administrator: Implementation and Administration

Summary (continued) A database instance is made up of the memory area (SGA) and the background processes started on a computer A database server contains a database instance and the database files that store the database data A database server can contain a single instance, multiple instances, or can be a combination of multiple servers, called a cluster or grid of computers Some key optional components are Oracle Spatial, Oracle Partitioning, Oracle Real Application Clusters, Oracle Data Mining, Oracle Advanced Security, Oracle Label Security, and Oracle OLAP services Oracle 10g Database Administrator: Implementation and Administration

Summary (continued) The most complete and robust installation option for the server side is the Enterprise Edition Other choices: Standard Edition and Personal Edition On the client side, you can install the Administrator option or the Runtime option The ORACLASS database is provided for running exercises throughout this book A running case project develops a database system for a fictional newspaper chain called Global Globe Oracle 10g Database Administrator: Implementation and Administration

Summary (continued) Multi-tier (n-tier) architecture separates different levels of software components The client-side installation option runs remote applications or remote DBA tasks The server-side installation option runs a DB server The client-side installation option has a number of paths: Administrator, Runtime, a custom install, and InstantClient Oracle Universal Installer is a user-friendly interface for installing/uninstalling Oracle products Oracle 10g Database Administrator: Implementation and Administration

Summary (continued) The Oracle Home Selector feature of the Universal Installer enables the installation of multiple versions of Oracle software on one computer The Silent Install option pre-builds and runs an installation without any human intervention Optimal Flexible Architecture (OFA) defines standard names for directory structures, database files, control files, and redo log files OFA uses the ORACLE_BASE variable to define the root location for all Oracle subdirectories, including Pradata and ORACLE_HOME Oracle 10g Database Administrator: Implementation and Administration