Oracle8i Parallel Server Administration, Deployment, and Performance Release 2 (8.1.6) Part Number A76970-01 |
|
This manual describes the administrative and deployment tasks for the Oracle Parallel Server. You should read this book after you have completed the procedures in the Oracle8i Parallel Server Setup and Configuration Guide. You should also have read Oracle8i Parallel Server Concepts.
This manual prepares you to implement parallel processing by describing the administrative procedures to follow after installing Oracle Parallel Server. It also advises you how to develop and deploy applications, as well as how to tune them. Information in this manual applies to Oracle Parallel Server as it runs on all operating systems. Where necessary, this manual refers to platform-specific documentation.
See Also:
You can also use the Oracle8i Parallel Server Documentation Online Roadmap to help you use the online Oracle Parallel Server Documentation set. |
This book is new for Oracle8i. Oracle8i introduces Cache Fusion, a feature that reduces the overhead of resolving read/write conflicts caused by inter-instance contention. This greatly enhances performance as well as Oracle Parallel Server scalability.
See Also:
Oracle8i Parallel Server Concepts for information on feature changes from one release of Oracle Parallel Server to another. |
Release 8.1.5 introduced the first phase of cache fusion.
Release 2 (8.1.6) introduces further enhancements to cache fusion as well as the Primary/Secondary instance feature. There are also several new performance statistics.
This manual is written for database administrators and application developers who work with Oracle Parallel Server.
This book presents Oracle Parallel Server administration, deployment, and performance in five parts. It begins with the fundamental administration of Oracle Parallel Server and then presents application and database design and deployment for Parallel Server. The last parts of the book present performance tuning as well as maintenance topics, such as backup and recovery.
The following describes the five parts of this book.
Chapter 1, "Parameter Files and Oracle Parallel Server-Specific Parameters" |
This chapter describes the parameter files and Oracle Parallel Server-specific parameters. |
Chapter 2, "Parallel Execution in Oracle Parallel Server Environments" |
This chapter describes parallel execution as used within Oracle Parallel Server environments. |
Chapter 3, "Oracle Parallel Server Database Creation Issues" |
This chapter describes Oracle Parallel Server database creation issues. The information in this chapter is supplemental to the information in the Oracle8i Parallel Server Setup and Configuration Guide. |
This chapter describes the basic administrative procedures for instance management. |
This chapter describes analysis and partitioning for Oracle Parallel Server environments. |
|
This chapter describes Oracle Parallel Server database design issues such as block and extent operations, contention reduction, and locking strategies. |
|
Chapter 7, "Planning the Use of PCM and Non-PCM Instance Locks" |
This chapter explains how to use and maintain both PCM and non-PCM locking resources. |
This chapter explains how to improve performance by using free list groups to partition data. |
|
This chapter describes how to set instance locks within Oracle Parallel Server environments. |
|
This chapter explains how to plan and manage the use of locks and resources to optimize performance. |
This chapter presents general tuning recommendations. |
|
Chapter 12, "Tuning Oracle Parallel Server and Inter-Instance Performance" |
This chapter describes how to monitor and tune inter-instance performance issues. |
This chapter describes the procedures for backing up Oracle Parallel Server databases. |
|
This chapter describes the procedures for recovering Oracle Parallel Server databases. |
Before reading this manual, you should read Oracle8i Parallel Server Concepts and the Oracle8i Parallel Server Setup and Configuration Guide.
You can also read the following manuals for more information:
This section explains the conventions used in this manual including the following:
This section explains the conventions used within the text:
Uppercase text is used to call attention to command keywords, object names, parameters, filenames, and so on.
For example, "If you create a private rollback segment, the name must be included in the ROLLBACK_SEGMENTS parameter of the parameter file."
Italicized words within text are book titles or emphasized words.
The syntax diagrams and notation in this manual show the syntax for SQL commands, functions, hints, and other elements. This section tells you how to read syntax diagrams and examples and write SQL statements based on them.
Keywords are words that have special meanings in the SQL language. In the syntax diagrams in this manual, keywords appear in uppercase. You must use keywords in your SQL statements exactly as they appear in the syntax diagram, except that they can be either uppercase or lowercase. For example, you must use the CREATE keyword to begin your CREATE TABLE statements just as it appears in the CREATE TABLE syntax diagram.
Parameters act as place holders in syntax diagrams. They appear in lowercase. Parameters are usually names of database objects, Oracle datatype names, or expressions. When you see a parameter in a syntax diagram, substitute an object or expression of the appropriate type in your SQL statement. For example, to write a CREATE TABLE statement, use the name of the table you want to create, such as EMP, in place of the table parameter in the syntax diagram. (Note that parameter names appear in italics in the text.)
This list shows parameters that appear in the syntax diagrams in this manual and examples of the values you might substitute for them in your statements:
SQL and SQL*Plus commands and statements appear separated from the text of paragraphs in a monospaced font. For example:
INSERT INTO emp (empno, ename) VALUES (1000, 'SMITH'); ALTER TABLESPACE users ADD DATAFILE 'users2.ora' SIZE 50K;
Example statements may include punctuation, such as commas or quotation marks. All punctuation in example statements is required. All example statements terminate with a semicolon (;). Depending on the application, a semicolon or other terminator may or may not be required to end a statement.
Uppercase words in example statements indicate the keywords within Oracle SQL. When you issue statements, however, keywords are not case sensitive.
Lowercase words in example statements indicate words supplied only for the context of the example. For example, lowercase words may indicate the name of a table, column, or file.
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|