Overview
By default, when a DML statement fails the whole statement is rolled back, regardless of how many rows were processed successfully before the error was detected. In the past, the only way around this problem was to process each row individually, preferably with a bulk operation using a FORALL loop with the SAVE EXCEPTIONS clause. In Oracle 10g Database Release 2, the DML error logging feature has been introduced to solve this problem. Adding the appropriate LOG ERRORS clause on to most INSERT, UPDATE, MERGE and DELETE statements enables the operations to complete, regardless of errors. This article presents an overview of the DML error logging functionality, with examples of each type of DML statement.
Syntax
The syntax for the error logging clause is the same for INSERT, UPDATE, MERGE and DELETE statements.
LOG ERRORS [INTO [schema.]table] [('simple_expression')] [REJECT LIMIT integer|UNLIMITED]
The optional INTO clause allows you to specify the name of the error logging table. If you omit this clause, the the first 25 characters of the base table name are used along with the "ERR$_" prefix.
The simple_expression is used to specify a tag that makes the errors easier to identify. This might be a string or any function whose result is converted to a string.
The REJECT LIMIT is used to specify the maximum number of errors before the statement fails. The default value is 0 and the maximum values is the keyword UNLIMITED. For parallel DML operations, the reject limit is applied to each parallel server.
Restrictions
The DML error logging functionality is not invoked when:
Direct-path INSERT or MERGE operations raise unique constraint or index violations.
UPDATE or MERGE operations raise a unique constraint or index violation.
In addition, the tracking of errors in LONG, LOB and object types is not supported, although a table containing these columns can be the target of error logging.
Column values that are too large
Constraint violations (NOT NULL, unique, referential, and check constraints)
Errors raised during trigger execution
Errors resulting from type conversion between a column in a subquery and the corresponding column of the table
Partition mapping errors
Certain MERGE operation errors (ORA-30926: Unable to get a stable set of rows for MERGE operation.)
Some errors are not logged, and cause the DML operation to terminate and roll back. For a list of these errors and for other DML logging restrictions, see the discussion of the error_logging_clause in the INSERT section of Oracle Database SQL Language Reference.
http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_9014.htm#SQLRF01604
CREATE_ERROR_LOG Procedure
This procedure creates the error logging table needed to use the DML error logging capability.LONG, CLOB, BLOB, BFILE, and ADT datatypes are not supported in the columns.
Syntax
DBMS_ERRLOG.CREATE_ERROR_LOG (
dml_table_name IN VARCHAR2,
err_log_table_name IN VARCHAR2 := NULL,
err_log_table_owner IN VARCHAR2 := NULL,
err_log_table_space IN VARCHAR2 := NULL,
skip_unsupported IN BOOLEAN := FALSE);
Table 52-2 CREATE_ERROR_LOG Procedure Parameters
|
Description |
|
The name of the DML table to base the error logging table on. The name can be fully qualified ( for example, component is enclosed in double quotes, it will not be upper cased. |
|
The name of the error logging table you will create.The default is the first 25 characters in the name of the DML table prefixed with following:
|
|
The name of the owner of the error logging table. You can specify the owner in connected user is used. |
|
The tablespace the error logging table will be created in. If not specified, the default tablespace for the user owning the DML error logging table will be used. |
|
When set to error logging will be skipped over and not added to the error logging table.When set to type will cause the procedure to terminate.The default is false |
|
Error Logging Table Format
The error logging table consists of two parts:
A mandatory set of columns that describe the error. For example, one column contains the Oracle error number.
Table 18-1 lists these error description columns.
An optional set of columns that contain data from the row that caused the error. The column names match the column names from the table being inserted into (the "DML table").The number of columns in this part of the error logging table can be zero, one, or more, up to the number of columns in the DML table. If a column exists in the error logging table that has the same name as a column in the DML table, the corresponding data from the offending row being inserted is written to this error logging table column. If a DML table column does not have a corresponding column in the error logging table, the column is not logged. If the error logging table contains a column with a name that does not match a DML table column, the column is ignored.
Because type conversion errors are one type of error that might occur, the data types of the optional columns in the error logging table must be types that can capture any value without data loss or conversion errors. (If the optional log columns were of the same types as the DML table columns, capturing the problematic data into the log could suffer the same data conversion problem that caused the error.) The database makes a best effort to log a meaningful value for data that causes conversion errors. If a value cannot be derived, NULL is logged for the column. An error on insertion into the error logging table causes the statement to terminate.
Table 18-2 lists the recommended error logging table column data types to use for each data type from the DML table. These recommended data types are used when you create the error logging table automatically with the DBMS_ERRLOG package.
|
|
Oracle error number |
|
|
Oracle error message text |
|
|
Rowid of the row in error (for update and delete) |
|
|
Type of operation: insert ( |
|
|
Value of the tag supplied by the user in the error logging clause |
Table 18-2 Error Logging Table Column Data Types
NUMBER |
VARCHAR2(4000) |
Able to log conversion errors |
CHAR/VARCHAR2(n) |
VARCHAR2(4000) |
Logs any value without information loss |
NCHAR/NVARCHAR2(n) |
NVARCHAR2(4000) |
Logs any value without information loss |
DATE/TIMESTAMP |
VARCHAR2(4000) |
Logs any value without information loss. Converts to character format with the default date/time format mask |
RAW |
RAW(2000) |
Logs any value without information loss |
ROWID |
UROWID |
Logs any rowid type |
LONG/LOB |
Not supported | |
User-defined types | Not supported |
Sample Schema
This following code creates and populates the tables necessary to run the example code in this article.
-- Create and populate a source table.
CREATE TABLE source (
id NUMBER(10) NOT NULL,
code VARCHAR2(10),
description VARCHAR2(50),
CONSTRAINT source_pk PRIMARY KEY (id)
);
DECLARE
TYPE t_tab IS TABLE OF source%ROWTYPE;
l_tab t_tab := t_tab();
BEGIN
FOR i IN 1 .. 100000 LOOP
l_tab.extend;
l_tab(l_tab.last).id := i;
l_tab(l_tab.last).code := TO_CHAR(i);
l_tab(l_tab.last).description := 'Description for ' || TO_CHAR(i);
END LOOP;
-- For a possible error condition.
l_tab(1000).code := NULL;
l_tab(10000).code := NULL;
FORALL i IN l_tab.first .. l_tab.last
INSERT INTO source VALUES l_tab(i);
COMMIT;
END;
/
EXEC DBMS_STATS.gather_table_stats(USER, 'source', cascade => TRUE);
-- Create a destination table.
CREATE TABLE dest (
id NUMBER(10) NOT NULL,
code VARCHAR2(10) NOT NULL,
description VARCHAR2(50),
CONSTRAINT dest_pk PRIMARY KEY (id)
);
-- Create a dependant of the destination table.
CREATE TABLE dest_child (
id NUMBER,
dest_id NUMBER,
CONSTRAINT child_pk PRIMARY KEY (id),
CONSTRAINT dest_child_dest_fk FOREIGN KEY (dest_id) REFERENCES dest(id)
);
Notice that the CODE column is optional in the SOURCE table and mandatory in the DEST table.
Once the basic tables are in place we can create a table to hold the DML error logs for the DEST. A log table must be created for every base table that requires the DML error logging functionality. This can be done manually or with the CREATE_ERROR_LOG procedure in the DBMS_ERRLOG package, as shown below.
-- Create the error logging table.
BEGIN
DBMS_ERRLOG.create_error_log (dml_table_name => 'dest');
END;
/
PL/SQL procedure successfully completed.
The owner, name and tablespace of the log table can be specified, but by default it is created in the current schema, in the default tablespace with a name that matches the first 25 characters of the base table with the "ERR$_" prefix.
SELECT owner, table_name, tablespace_name
FROM all_tables
WHERE owner = 'TEST';
OWNER TABLE_NAME TABLESPACE_NAME
------------------------------ ------------------------------ ------------------------------
TEST DEST USERS
TEST DEST_CHILD USERS
TEST ERR$_DEST USERS
TEST SOURCE USERS
4 rows selected.
The structure of the log table includes maximum length and datatype independent versions of all available columns from the base table, as seen below.
SQL> DESC err$_dest
Name Null? Type
--------------------------------- -------- --------------
ORA_ERR_NUMBER$ NUMBER
ORA_ERR_MESG$ VARCHAR2(2000)
ORA_ERR_ROWID$ ROWID
ORA_ERR_OPTYP$ VARCHAR2(2)
ORA_ERR_TAG$ VARCHAR2(2000)
ID VARCHAR2(4000)
CODE VARCHAR2(4000)
DESCRIPTION VARCHAR2(4000)
Insert
When we built the sample schema we noted that the CODE column is optional in the SOURCE table, but mandatory in th DEST table. When we populated the SOURCE table we set the code to NULL for two of the rows. If we try to copy the data from the SOURCE table to the DEST table we get the following result.
INSERT INTO dest
SELECT *
FROM source;
SELECT *
*
ERROR at line 2:
ORA-01400: cannot insert NULL into ("TEST"."DEST"."CODE")
The failure causes the whole insert to roll back, regardless of how many rows were inserted successfully. Adding the DML error logging clause allows us to complete the insert of the valid rows.
INSERT INTO dest
SELECT *
FROM source
LOG ERRORS INTO err$_dest ('INSERT') REJECT LIMIT UNLIMITED;
99998 rows created.
The rows that failed during the insert are stored in the ERR$_DEST table, along with the reason for the failure.
COLUMN ora_err_mesg$ FORMAT A70
SELECT ora_err_number$, ora_err_mesg$
FROM err$_dest
WHERE ora_err_tag$ = 'INSERT';
ORA_ERR_NUMBER$ ORA_ERR_MESG$
--------------- ---------------------------------------------------------
1400 ORA-01400: cannot insert NULL into ("TEST"."DEST"."CODE")
1400 ORA-01400: cannot insert NULL into ("TEST"."DEST"."CODE")
2 rows selected.
Update
The following code attempts to update the CODE column for 10 rows, setting it to itself for 8 rows and to the value NULL for 2 rows.
UPDATE dest
SET code = DECODE(id, 9, NULL, 10, NULL, code)
WHERE id BETWEEN 1 AND 10;
*
ERROR at line 2:
ORA-01407: cannot update ("TEST"."DEST"."CODE") to NULL
As expected, the statement fails because the CODE column is mandatory. Adding the DML error logging clause allows us to complete the update of the valid rows.
UPDATE dest
SET code = DECODE(id, 9, NULL, 10, NULL, code)
WHERE id BETWEEN 1 AND 10
LOG ERRORS INTO err$_dest ('UPDATE') REJECT LIMIT UNLIMITED;
8 rows updated.
The rows that failed during the update are stored in the ERR$_DEST table, along with the reason for the failure.
COLUMN ora_err_mesg$ FORMAT A70
SELECT ora_err_number$, ora_err_mesg$
FROM err$_dest
WHERE ora_err_tag$ = 'UPDATE';
ORA_ERR_NUMBER$ ORA_ERR_MESG$
--------------- ---------------------------------------------------------
1400 ORA-01400: cannot insert NULL into ("TEST"."DEST"."CODE")
1400 ORA-01400: cannot insert NULL into ("TEST"."DEST"."CODE")
2 rows selected.
Merge
The following code deletes some of the rows from the DEST table, then attempts to merge the data from the SOURCE table into the DEST table.
DELETE FROM dest
WHERE id > 50000;
MERGE INTO dest a
USING source b
ON (a.id = b.id)
WHEN MATCHED THEN
UPDATE SET a.code = b.code,
a.description = b.description
WHEN NOT MATCHED THEN
INSERT (id, code, description)
VALUES (b.id, b.code, b.description);
*
ERROR at line 9:
ORA-01400: cannot insert NULL into ("TEST"."DEST"."CODE")
As expected, the merge operation fails and rolls back. Adding the DML error logging clause allows the merge operation to complete.
MERGE INTO dest a
USING source b
ON (a.id = b.id)
WHEN MATCHED THEN
UPDATE SET a.code = b.code,
a.description = b.description
WHEN NOT MATCHED THEN
INSERT (id, code, description)
VALUES (b.id, b.code, b.description)
LOG ERRORS INTO err$_dest ('MERGE') REJECT LIMIT UNLIMITED;
99998 rows merged.
The rows that failed during the update are stored in the ERR$_DEST table, along with the reason for the failure.
COLUMN ora_err_mesg$ FORMAT A70
SELECT ora_err_number$, ora_err_mesg$
FROM err$_dest
WHERE ora_err_tag$ = 'MERGE';
ORA_ERR_NUMBER$ ORA_ERR_MESG$
--------------- ---------------------------------------------------------
1400 ORA-01400: cannot insert NULL into ("TEST"."DEST"."CODE")
1400 ORA-01400: cannot insert NULL into ("TEST"."DEST"."CODE")
2 rows selected.
Delete
The DEST_CHILD table has a foreign key to the DEST table, so if we add some data to it would would expect an error if we tried to delete the parent rows from the DEST table.
INSERT INTO dest_child (id, dest_id) VALUES (1, 100);
INSERT INTO dest_child (id, dest_id) VALUES (2, 101);
With the child data in place we ca attempt to delete th data from the DEST table.
DELETE FROM dest;
*
ERROR at line 1:
ORA-02292: integrity constraint (TEST.DEST_CHILD_DEST_FK) violated - child record found
As expected, the delete operation fails. Adding the DML error logging clause allows the delete operation to complete.
DELETE FROM dest
LOG ERRORS INTO err$_dest ('DELETE') REJECT LIMIT UNLIMITED;
99996 rows deleted.
The rows that failed during the delete operation are stored in the ERR$_DEST table, along with the reason for the failure.
COLUMN ora_err_mesg$ FORMAT A69
SELECT ora_err_number$, ora_err_mesg$
FROM err$_dest
WHERE ora_err_tag$ = 'DELETE';
ORA_ERR_NUMBER$ ORA_ERR_MESG$
--------------- ---------------------------------------------------------------------
2292 ORA-02292: integrity constraint (TEST.DEST_CHILD_DEST_FK) violated -
child record found
2292 ORA-02292: integrity constraint (TEST.DEST_CHILD_DEST_FK) violated -
child record found
2 rows selected.
参考至:http://docs.oracle.com/cd/B28359_01/server.111/b28310/tables004.htm#ADMIN11638
http://docs.oracle.com/cd/B28359_01/appdev.111/b28419/d_errlog.htm#ARPLS680
http://www.oracle-base.com/articles/10g/dml-error-logging-10gr2.php
本文原创,转载请注明处处、作者
如有错误,欢迎指正
邮箱:czmcj@163.com
相关推荐
### Oracle® Database 10g Release 2 (10.2) SQL Reference #### 概述 Oracle Database 10g Release 2 (10.2) 是一款由 Oracle 公司开发的企业级数据库管理系统。它包含了众多重要的特性和改进,以支持更高效的...
Oracle Database 10g是甲骨文公司发布的一款企业级数据库管理系统,它的全名是Oracle Database 10g Release 2,简称Oracle 10g。这个版本在当时以其先进的特性和强大的性能优化,赢得了广大数据库管理员(DBA)和...
《Oracle Database SQL Reference (10G Release 1)》是Oracle公司发布的关于10G版本数据库系统的SQL语言参考手册,对于理解和使用Oracle数据库系统进行数据管理具有极高的价值。这份文档详细介绍了SQL在Oracle 10G...
- **2005年7月**:Oracle 10g Release 2版发布。 - **2007年7月**:Oracle 11g Release 1版发布。 #### 二、Oracle 11g概述 ##### 2.1 Oracle 11g Release 1 (11.1) - **发布时间**:2007年7月。 - **主要特点**:...
Oracle Database 10g Administration Workshop 是一套针对Oracle数据库10g版本的管理实践教程,旨在帮助管理员深入理解和掌握Oracle数据库的管理和维护技能。这个压缩包包含两个部分:I.1和I.2,分别可能涵盖了不同...
《Oracle Database 10g OCP Certification All-in-One Exam Guide》是专为想要获取Oracle Certified Professional(OCP)认证的数据库管理员所准备的一本全面指南。这本书深入浅出地介绍了Oracle Database 10g的核心...
### Oracle Database 10g SQL Fundamentals I - 学生指南 #### 一、概述 本学生指南旨在为学习者提供Oracle Database 10g SQL基础的全面介绍。Oracle Database 10g作为一款功能强大的关系型数据库管理系统,被广泛...
《Oracle Database 应用开发者指南:基础篇 10g Release 2(10.2)》是一份详尽的文档,旨在为那些希望利用Oracle数据库进行应用开发的专业人士提供全面的技术指导。此文档由Oracle公司发布,版本号为B14251-01,...
2. SQL支持:Oracle 10g全面支持SQL标准,包括SQL DDL(数据定义语言)用于创建和修改数据库对象,DML(数据操纵语言)用于插入、更新和删除数据,以及SQL PL/SQL编程语言,用于编写存储过程和触发器。 3. 性能优化...
1Z0-047、1Z0-043和1Z0-042是Oracle认证考试中的代码,它们分别代表了Oracle Database 10g: Administration II、Oracle Database 10g: New Features for Administrators以及Oracle Database 10g: Installation and ...
Oracle Database SQL Language Reference 11g Release 2 (11.2) 是Oracle数据库的官方文档,主要讲述了Oracle 11g Release 2版本中SQL语言的使用方法。这份指南为数据库管理员、开发人员提供了一个全面的参考手册,...
Oracle Database 10g是Oracle公司推出的一款关系型数据库管理系统,是企业级数据管理的重要工具。本教程聚焦于Oracle 10g的基础知识,旨在帮助初学者理解和掌握数据库管理的基本概念、操作及应用。通过配套的PPT和...
综上所述,《Oracle Database 10g 性能调优技巧与技术》一书涵盖了 Oracle 10g 数据库性能调优的多个方面,包括架构理解、SQL 查询优化、内存管理、索引使用与优化、等待事件分析、并行查询与并行 DML、数据库参数...
Oracle 10g OCP(Oracle Certified Professional)是Oracle公司为数据库管理员提供的专业认证,它证明了持证者在管理Oracle 10g数据库系统方面具备高级技能和知识。这个题库是准备Oracle 10g OCP考试的重要资源,...
3. **SQL与PL/SQL**:详细解释了SQL语言在Oracle 10g中的使用,包括DML(数据操作语言)、DDL(数据定义语言)和DCL(数据控制语言);PL/SQL是Oracle的编程语言,用于编写存储过程、函数、触发器等,这部分会介绍其...
通过学习这本Oracle_Database 10g SQL Fundamentals I中文教材,读者将具备使用SQL语言操作Oracle数据库的基本技能,为进一步深入学习Oracle数据库的其他高级特性奠定基础。同时,繁体中文的设置使得中国用户可以更...
SQL是用于查询和操作数据库的标准语言,在Oracle 10g中,支持标准SQL语句,如SELECT、INSERT、UPDATE、DELETE,以及更复杂的DML和DDL操作。PL/SQL是Oracle特有的过程化语言,可以创建存储过程、函数、触发器等,增强...
Oracle10g数据库是Oracle公司推出的数据库管理系统,它在企业级数据存储和管理领域具有广泛的应用。本教程《Oracle10g数据库基础教程》由孙凤栋主编,旨在为初学者提供全面、深入的Oracle数据库知识。教程内容涵盖...
Oracle 10G,全称为Oracle Database 10g,是Oracle公司发布的一个重要数据库管理系统版本,首次引入了许多创新技术,如自动管理、网格计算、实时应用集群等,为企业的数据管理和业务运行提供了更高效、安全的解决...