diff --git a/2332.pdf b/2332.pdf new file mode 100644 index 0000000..7e5a0a2 Binary files /dev/null and b/2332.pdf differ diff --git a/2333.pdf b/2333.pdf new file mode 100644 index 0000000..848aaac Binary files /dev/null and b/2333.pdf differ diff --git a/2351.zip b/2351.zip new file mode 100644 index 0000000..d7a0ce4 Binary files /dev/null and b/2351.zip differ diff --git a/2421.html b/2421.html new file mode 100644 index 0000000..ab3d971 --- /dev/null +++ b/2421.html @@ -0,0 +1,555 @@ + + + + + + + + + +Errata for 582-3 Asleson (corrected in the second printing) + + + + + + + +
+ +

Errata 530-0 Kyte (corrected in the 2nd printing)

+ +

Updated 11/21/06

+ +

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Page

+
+

Original Sentence

+
+

Corrected Sentence

+
+

xxxii

+
+

you can have SELECT on V$STATNAME, + V$MYSTAT and V$LATCH granted directly to you

+
+

 

+

you must have select on v_$statname, v_$mystat, v_$latch, and v_$timer granted + directly to you

+
+

38

+
+

I had fallen into the trap of thinking “I + know all about databases,” because I had worked with SQL/DS, DB2, Ingres, + Sybase, Informix, SQLBase, Oracle, and others.

+
+

I had fallen into the trap of thinking “I + know all about databases,” because I had worked with SQL/DS, DB2, Ingress, + Sybase, Informix, SQLBase, Oracle, and others.

+
+

89

+
+

A traditional cooked file system is usable + by only one computer is a clustered environment.

+
+

A traditional cooked file system is usable + by only one computer in a clustered environment.

+
+

124

+
+

You can “turn it on" in your session + via the ALTER SESSION command or at the system level via the ALTER SESSION + command.

+
+

You can “turn it on" in your session + via the ALTER SESSION command or at the system level via the ALTER SYSTEM + command.

+
+

159

+
+

*Figure 5.2 contains 3 instances of the + number 5in small boxes*

+
+

*The number 5 should be replaced with the + letter S in all 3 boxes*

+
+

169

+
+

Theys come from having that many fewer PGAs + allocated. Each dedicated/shared server has a PGA.

+
+

They come from having that many fewer PGAs allocated. Each dedicated/shared server has a PGA.

+
+

185

+
+

After all, I had been using databases for + quite a while and was considered something of an expert in this field (in + addition to Sybase, SQL Server, and Informix, I had used Ingress, DB2, Gupta SQLBase, and a variety of other databases).

+
+

After all, I had been using databases for + quite a while and was considered something of an expert in this field (in + addition to Sybase, SQL Server, and Informix, I had used Ingres, DB2, Gupta SQLBase, and a variety of other databases).

+
+

490

+
+

between 0 bytes (for NULL) and 22 bytes

+
+

between 0 bytes (for trailing NULL + columns) and 22 bytes

+
+

646

+
+

we have job_queue_processes set to + 0....

+
+

we have job_queue_processes + set to 8

+
+

649

+
+

Chapter + 15: Data Loading and Unloading This first half of this chapter focuses on

+
+

Chapter + 15: Data Loading and Unloading This first half of this chapter focuses on

+
+ +

 

+ + + + + +
+

SPECIAL NOTE FROM AUTHOR:

+

 

+

Big_Table

+

For examples throughout this book, I use a table called BIG_TABLE. Depending on which + system I use, this table has between one record and four million records and + varies in size from 200MB to 800MB. In all cases, the table structure is the + same.

+

To create BIG_TABLE, I wrote a script that does the following:

+

    *    Creates an empty + table based on ALL_OBJECTS. This dictionary view is used to populate the BIG_TABLE.

+

    *    Makes this table NOLOGGING. This is optional. I + did it for performance. Using NOLOGGING mode for a test table is safe; you won't use it in a + production system, so features like Oracle Data Guard will not be enabled.

+

    *    Populates the + table by seeding it with the contents of ALL_OBJECTS and then iteratively inserting into itself, + approximately doubling its size on each iteration.

+

    *    Creates a primary + key constraint on the table.

+

    *    Gathers + statistics.

+

    *    Displays the + number of rows in the table.

+

To build the BIG_TABLE table, you can run + the following script at the SQL*Plus prompt and pass in the number of rows you + want in the table. The script will stop when it hits that number of rows.

+
+ +

 

+ +
+ + + + diff --git a/9781590595305.jpg b/9781590595305.jpg new file mode 100644 index 0000000..497e573 Binary files /dev/null and b/9781590595305.jpg differ diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..7f604d1 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,27 @@ +Freeware License, some rights reserved + +Copyright (c) 2005 Thomas Kyte + +Permission is hereby granted, free of charge, to anyone obtaining a copy +of this software and associated documentation files (the "Software"), +to work with the Software within the limits of freeware distribution and fair use. +This includes the rights to use, copy, and modify the Software for personal use. +Users are also allowed and encouraged to submit corrections and modifications +to the Software for the benefit of other users. + +It is not allowed to reuse, modify, or redistribute the Software for +commercial use in any way, or for a user’s educational materials such as books +or blog articles without prior permission from the copyright holder. + +The above copyright notice and this permission notice need to be included +in all copies or substantial portions of the software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS OR APRESS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + diff --git a/README.md b/README.md new file mode 100644 index 0000000..4eb6ec8 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +#Apress Source Code + +This repository accompanies [*Expert Oracle Database Architecture*](http://www.apress.com/9781590595305) by Thomas Kyte (Apress, 2005). + +[comment]: #cover +![Cover image](9781590595305.jpg) + +Download the files as a zip using the green button, or clone the repository to your machine using Git. + +##Releases + +Release v1.0 corresponds to the code in the published book, without corrections or updates. + +##Contributions + +See the file Contributing.md for more information on how you can contribute to this repository. diff --git a/contributing.md b/contributing.md new file mode 100644 index 0000000..f6005ad --- /dev/null +++ b/contributing.md @@ -0,0 +1,14 @@ +# Contributing to Apress Source Code + +Copyright for Apress source code belongs to the author(s). However, under fair use you are encouraged to fork and contribute minor corrections and updates for the benefit of the author(s) and other readers. + +## How to Contribute + +1. Make sure you have a GitHub account. +2. Fork the repository for the relevant book. +3. Create a new branch on which to make your change, e.g. +`git checkout -b my_code_contribution` +4. Commit your change. Include a commit message describing the correction. Please note that if your commit message is not clear, the correction will not be accepted. +5. Submit a pull request. + +Thank you for your contribution! \ No newline at end of file