ORACLE 11g SQL PL/SQL Performance Enhancements Developers
ORACLE 11g SQL PL/SQL Performance Enhancements Developers
• Bind variables:
• Enhanced Security
• accumulate rows destined for a second table so that AFTER EACH ROW IS
you can periodically bulk-insert them [declaration_statement;]
BEGIN
• To avoid the mutating-table error (ORA-04091) execution_statement;
END AFTER EACH ROW;
• Can be defined on either a table or a view
• Only DML statements trigger compound triggers AFTER STATEMENT IS
[declaration_statement;]
BEGIN
execution_statement;
END AFTER STATEMENT;
END [trigger_name];
/
• Temporary purposes
At the instance level – Init parameter
optimizer_use_invisible_indexes = FALSE
UPDATE system_partitioned_tab
PARTITION (part_1) SET code =
'TWO' WHERE id = 2;
• Reference Partitioning id
code
NUMBER NOT NULL,
VARCHAR2(10) NOT NULL,
Session Details
QUESTIONS
&
ANSWERS