Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1418386
  • 博文数量: 239
  • 博客积分: 5909
  • 博客等级: 大校
  • 技术积分: 2715
  • 用 户 组: 普通用户
  • 注册时间: 2010-07-24 20:19
文章分类

全部博文(239)

文章存档

2014年(4)

2013年(22)

2012年(140)

2011年(14)

2010年(59)

我的朋友

分类: Oracle

2012-12-26 14:47:48


点击(此处)折叠或打开

  1. Supplemental Logging

  2. Redo log files are generally used for instance recovery and media recovery. The data needed for such operations is automatically recorded in the redo log files. However, a redo-based application may require that additional columns be logged in the redo log files. The process of logging these additional columns is called supplemental logging.

  3. By default, Oracle Database does not provide any supplemental logging, which means that by default LogMiner is not usable. Therefore, you must enable at least minimal supplemental logging before generating log files which will be analyzed by LogMiner.

  4. The following are examples of situations in which additional columns may be needed:

  5. An application that applies reconstructed SQL statements to a different database must identify the update statement by a set of columns that uniquely identify the row (for example, a primary key), not by the ROWID shown in the reconstructed SQL returned by the V$LOGMNR_CONTENTS view, because the ROWID of one database will be different and therefore meaningless in another database.

  6. An application may require that the before-image of the whole row be logged, not just the modified columns, so that tracking of row changes is more efficient.

  7. A supplemental log group is the set of additional columns to be logged when supplemental logging is enabled. There are two types of supplemental log groups that determine when columns in the log group are logged:

  8. Unconditional supplemental log groups: The before-images of specified columns are logged any time a row is updated, regardless of whether the update affected any of the specified columns. This is sometimes referred to as an ALWAYS log group.

  9. Conditional supplemental log groups: The before-images of all specified columns are logged only if at least one of the columns in the log group is updated.

  10. Supplemental log groups can be system-generated or user-defined.

  11. In addition to the two types of supplemental logging, there are two levels of supplemental logging, as described in the following sections:

  12. Database-Level Supplemental Logging

  13. Table-Level Supplemental Logging

  14. See Also:
  15. Querying Views for Supplemental Logging Settings

  16. Database-Level Supplemental Logging

  17. There are two types of database-level supplemental logging: minimal supplemental logging and identification key logging, as described in the following sections. Minimal supplemental logging does not impose significant overhead on the database generating the redo log files. However, enabling database-wide identification key logging can impose overhead on the database generating the redo log files. Oracle recommends that you at least enable minimal supplemental logging for LogMiner.
  18. Minimal Supplemental Logging

  19. Minimal supplemental logging logs the minimal amount of information needed for LogMiner to identify, group, and merge the redo operations associated with DML changes. It ensures that LogMiner (and any product building on LogMiner technology) has sufficient information to support chained rows and various storage arrangements, such as cluster tables and index-organized tables. To enable minimal supplemental logging, execute the following SQL statement:

  20. ALTER DATABASE ADD SUPPLEMENTAL LOG DATA;

  21. Note:
  22. In Oracle Database release 9.0.1, minimal supplemental logging was the default behavior in LogMiner. In release 9.2 and later, the default is no supplemental logging. Supplemental logging must be specifically enabled.
  23. Database-Level Identification Key Logging

  24. Identification key logging is necessary when redo log files will not be mined at the source database instance, for example, when the redo log files will be mined at a logical standby database.

  25. Using database identification key logging, you can enable database-wide before-image logging for all updates by specifying one or more of the following options to the SQL ALTER DATABASE ADD SUPPLEMENTAL LOG statement:

  26. ALL system-generated unconditional supplemental log group

  27. This option specifies that when a row is updated, all columns of that row (except for LOBs, LONGS, and ADTs) are placed in the redo log file.

  28. To enable all column logging at the database level, execute the following statement:

  29. SQL> ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (ALL) COLUMNS;

  30. PRIMARY KEY system-generated unconditional supplemental log group

  31. This option causes the database to place all columns of a row's primary key in the redo log file whenever a row containing a primary key is updated (even if no value in the primary key has changed).

  32. If a table does not have a primary key, but has one or more non-null unique index key constraints or index keys, then one of the unique index keys is chosen for logging as a means of uniquely identifying the row being updated.

  33. If the table has neither a primary key nor a non-null unique index key, then all columns except LONG and LOB are supplementally logged; this is equivalent to specifying ALL supplemental logging for that row. Therefore, Oracle recommends that when you use database-level primary key supplemental logging, all or most tables be defined to have primary or unique index keys.

  34. To enable primary key logging at the database level, execute the following statement:

  35. SQL> ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (PRIMARY KEY) COLUMNS;

  36. UNIQUE system-generated conditional supplemental log group

  37. This option causes the database to place all columns of a row's composite unique key or bitmap index in the redo log file if any column belonging to the composite unique key or bitmap index is modified. The unique key can be due to either a unique constraint or a unique index.

  38. To enable unique index key and bitmap index logging at the database level, execute the following statement:

  39. SQL> ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (UNIQUE) COLUMNS;

  40. FOREIGN KEY system-generated conditional supplemental log group

  41. This option causes the database to place all columns of a row's foreign key in the redo log file if any column belonging to the foreign key is modified.

  42. To enable foreign key logging at the database level, execute the following SQL statement:

  43. ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (FOREIGN KEY) COLUMNS;

  44. Note:
  45. Regardless of whether identification key logging is enabled, the SQL statements returned by LogMiner always contain the ROWID clause. You can filter out the ROWID clause by using the NO_ROWID_IN_STMT option to the DBMS_LOGMNR.START_LOGMNR procedure call. See Formatting Reconstructed SQL Statements for Re-execution for details.

  46. Keep the following in mind when you use identification key logging:

  47. If the database is open when you enable identification key logging, all DML cursors in the cursor cache are invalidated. This can affect performance until the cursor cache is repopulated.

  48. When you enable identification key logging at the database level, minimal supplemental logging is enabled implicitly.

  49. Supplemental logging statements are cumulative. If you issue the following SQL statements, both primary key and unique key supplemental logging is enabled:

  50. ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (PRIMARY KEY) COLUMNS;
  51. ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (UNIQUE) COLUMNS;

  52. Disabling Database-Level Supplemental Logging

  53. You disable database-level supplemental logging using the SQL ALTER DATABASE statement with the DROP SUPPLEMENTAL LOGGING clause. You can drop supplemental logging attributes incrementally. For example, suppose you issued the following SQL statements, in the following order:

  54. ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (PRIMARY KEY) COLUMNS;
  55. ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (UNIQUE) COLUMNS;
  56. ALTER DATABASE DROP SUPPLEMENTAL LOG DATA (PRIMARY KEY) COLUMNS;
  57. ALTER DATABASE DROP SUPPLEMENTAL LOG DATA;

  58. The statements would have the following effects:

  59. After the first statement, primary key supplemental logging is enabled.

  60. After the second statement, primary key and unique key supplemental logging are enabled.

  61. After the third statement, only unique key supplemental logging is enabled.

  62. After the fourth statement, all supplemental logging is not disabled. The following error is returned: ORA-32589: unable to drop minimal supplemental logging.

  63. To disable all database supplemental logging, you must first disable any identification key logging that has been enabled, then disable minimal supplemental logging. The following example shows the correct order:

  64. ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (PRIMARY KEY) COLUMNS;
  65. ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (UNIQUE) COLUMNS;
  66. ALTER DATABASE DROP SUPPLEMENTAL LOG DATA (PRIMARY KEY) COLUMNS;
  67. ALTER DATABASE DROP SUPPLEMENTAL LOG DATA (UNIQUE) COLUMNS;
  68. ALTER DATABASE DROP SUPPLEMENTAL LOG DATA;

  69. Dropping minimal supplemental log data is allowed only if no other variant of database-level supplemental logging is enabled.
  70. Table-Level Supplemental Logging

  71. Table-level supplemental logging specifies, at the table level, which columns are to be supplementally logged. You can use identification key logging or user-defined conditional and unconditional supplemental log groups to log supplemental information, as described in the following sections.
  72. Table-Level Identification Key Logging

  73. Identification key logging at the table level offers the same options as those provided at the database level: all, primary key, foreign key, and unique key. However, when you specify identification key logging at the table level, only the specified table is affected. For example, if you enter the following SQL statement (specifying database-level supplemental logging), then whenever a column in any database table is changed, the entire row containing that column (except columns for LOBs, LONGs, and ADTs) will be placed in the redo log file:

  74. ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (ALL) COLUMNS;

  75. However, if you enter the following SQL statement (specifying table-level supplemental logging) instead, then only when a column in the employees table is changed will the entire row (except for LOB, LONGs, and ADTs) of the table be placed in the redo log file. If a column changes in the departments table, only the changed column will be placed in the redo log file.

  76. ALTER TABLE HR.EMPLOYEES ADD SUPPLEMENTAL LOG DATA (ALL) COLUMNS;

  77. Keep the following in mind when you use table-level identification key logging:

  78. If the database is open when you enable identification key logging on a table, all DML cursors for that table in the cursor cache are invalidated. This can affect performance until the cursor cache is repopulated.

  79. Supplemental logging statements are cumulative. If you issue the following SQL statements, both primary key and unique index key table-level supplemental logging is enabled:

  80. ALTER TABLE HR.EMPLOYEES
  81. ADD SUPPLEMENTAL LOG DATA (PRIMARY KEY) COLUMNS;
  82. ALTER TABLE HR.EMPLOYEES
  83. ADD SUPPLEMENTAL LOG DATA (UNIQUE) COLUMNS;

  84. See Database-Level Identification Key Logging for a description of each of the identification key logging options.
  85. Table-Level User-Defined Supplemental Log Groups

  86. In addition to table-level identification key logging, Oracle supports user-defined supplemental log groups. With user-defined supplemental log groups, you can specify which columns are supplementally logged. You can specify conditional or unconditional log groups, as follows:

  87. User-defined unconditional log groups

  88. To enable supplemental logging that uses user-defined unconditional log groups, use the ALWAYS clause as shown in the following example:

  89. ALTER TABLE HR.EMPLOYEES
  90. ADD SUPPLEMENTAL LOG GROUP emp_parttime (EMPLOYEE_ID, LAST_NAME,
  91. DEPARTMENT_ID) ALWAYS;

  92. This creates a log group named emp_parttime on the hr.employees table that consists of the columns employee_id, last_name, and department_id. These columns will be logged every time an UPDATE statement is executed on the hr.employees table, regardless of whether the update affected these columns. (If you want to have the entire row image logged any time an update was made, use table-level ALL identification key logging, as described previously).

  93. Note:
  94. LOB, LONG, and ADT columns cannot be supplementally logged.

  95. User-defined conditional supplemental log groups

  96. To enable supplemental logging that uses user-defined conditional log groups, omit the ALWAYS clause from the SQL ALTER TABLE statement, as shown in the following example:

  97. ALTER TABLE HR.EMPLOYEES
  98. ADD SUPPLEMENTAL LOG GROUP emp_fulltime (EMPLOYEE_ID, LAST_NAME,
  99. DEPARTMENT_ID);

  100. This creates a log group named emp_fulltime on table hr.employees. Just like the previous example, it consists of the columns employee_id, last_name, and department_id. But because the ALWAYS clause was omitted, before-images of the columns will be logged only if at least one of the columns is updated.

  101. For both unconditional and conditional user-defined supplemental log groups, you can explicitly specify that a column in the log group be excluded from supplemental logging by specifying the NO LOG option. When you specify a log group and use the NO LOG option, you must specify at least one column in the log group without the NO LOG option, as shown in the following example:

  102. ALTER TABLE HR.EMPLOYEES
  103. ADD SUPPLEMENTAL LOG GROUP emp_parttime(
  104. DEPARTMENT_ID NO LOG, EMPLOYEE_ID);

  105. This enables you to associate this column with other columns in the named supplemental log group such that any modification to the NO LOG column causes the other columns in the supplemental log group to be placed in the redo log file. This might be useful, for example, if you want to log certain columns in a group if a LONG column changes. You cannot supplementally log the LONG column itself; however, you can use changes to that column to trigger supplemental logging of other columns in the same row.
  106. Usage Notes for User-Defined Supplemental Log Groups

  107. Keep the following in mind when you specify user-defined supplemental log groups:

  108. A column can belong to more than one supplemental log group. However, the before-image of the columns gets logged only once.

  109. If you specify the same columns to be logged both conditionally and unconditionally, the columns are logged unconditionally.

转自 Oracle官方文档


阅读(4006) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~