|
Errata:
Page 341
In the Create Database statement, the filepath is
missing a /
Also,
"To add an extra redo log thread:
ALTER DATABASE ADD LOGFILE THREAD 2
GROUP 4 ('u01/oracle/redo/file4a',
'u02/oracle/redo/file4a') size 50M,
GROUP 5 ('u01/oracle/redo/file5a',
'u02/oracle/redo/file5a', size 50M,
GROUP 6 ('u01/oracle/redo/file6a',
'u02/oracle/redo/file6a') size 50M"
There are two errors here:
1.) the path to the redo logs should begin with /u01 and /u02
respectively and not
u01 and u02.
2.) the second member of each group should be suffixed with a
"b" and not an "a",
e.g) /u02/oracle/redo/file4b, /u02/oracle/redo/file5b, and
/u02/oracle/redo/file6b.
Page 419
SELECT
INST_ID,
EVENT,
P1 FILE_NUMBER,
P2 BLOCK_NUMBER,
WAIT_TIME
FROM
V$SESSION_WAIT
WHERE
EVENT IN ('buffer busy global cr', 'global cache busy', 'buffer
busy global cache');
Should be:
SELECT
INST_ID,
EVENT,
P1 FILE_NUMBER,
P2 BLOCK_NUMBER,
WAIT_TIME
FROM
GV$SESSION_WAIT
WHERE
EVENT IN ('buffer busy global cr', 'global cache busy', 'buffer
busy global cache');
This book covers Oracle10g RAC,
Oracle RAC,
Oracle10g Real
Application Clusters and
Oracle Real
Application Clusters. |