DBMS_APPLICATION_INFO.SET_MODULE : dbms_application_info « System Packages « Oracle PL/SQL Tutorial

Oracle PL/SQL Tutorial
1. Introduction
2. Query Select
3. Set
4. Insert Update Delete
5. Sequences
6. Table
7. Table Joins
8. View
9. Index
10. SQL Data Types
11. Character String Functions
12. Aggregate Functions
13. Date Timestamp Functions
14. Numerical Math Functions
15. Conversion Functions
16. Analytical Functions
17. Miscellaneous Functions
18. Regular Expressions Functions
19. Statistical Functions
20. Linear Regression Functions
21. PL SQL Data Types
22. PL SQL Statements
23. PL SQL Operators
24. PL SQL Programming
25. Cursor
26. Collections
27. Function Procedure Packages
28. Trigger
29. SQL PLUS Session Environment
30. System Tables Data Dictionary
31. System Packages
32. Object Oriented
33. XML
34. Large Objects
35. Transaction
36. User Privilege
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL/SQL Tutorial » System Packages » dbms_application_info 
31. 2. 7. DBMS_APPLICATION_INFO.SET_MODULE
SQL>
SQL> CREATE TABLE employee
  2  (employee_id         NUMBER(7),
  3   last_name           VARCHAR2(25),
  4   first_name          VARCHAR2(25),
  5   userid              VARCHAR2(8),
  6   start_date          DATE,
  7   comments            VARCHAR2(255),
  8   manager_id          NUMBER(7),
  9   title               VARCHAR2(25),
 10   department_id       NUMBER(7),
 11   salary              NUMBER(112),
 12   commission_pct      NUMBER(42)
 13  );

Table created.

SQL>
SQL> INSERT INTO employee VALUES (1'V''Ben', 'cv',to_date('03-MAR-90 8:30', 'dd-mon-yy hh24:mi'),NULL, NULL, 'PRESIDENT', 502500, NULL);

row created.

SQL> INSERT INTO employee VALUES (2'N''Haidy', 'ln', '08-MAR-90', NULL,1'VP, OPERATIONS', 411450, NULL);

row created.

SQL> INSERT INTO employee VALUES (3'N''Molly', 'mn', '17-JUN-91',NULL, 1'VP, SALES', 311400, NULL);

row created.

SQL> INSERT INTO employee VALUES (4'S''Mark', 'mq', '07-APR-90',NULL, 1'VP, FINANCE', 101450, NULL);

row created.

SQL> INSERT INTO employee VALUES (5'R''AUDRY', 'ar', '04-MAR-90',NULL, 1'VP, ADMINISTRATION', 501550, NULL);

row created.

SQL> INSERT INTO employee VALUES (6'U''MOLLY', 'mu', '18-JAN-91',NULL, 2'WAREHOUSE MANAGER', 411200, NULL);

row created.

SQL> INSERT INTO employee VALUES (7'M''ROBERTA', 'rm', '14-MAY-90',NULL, 2'WAREHOUSE MANAGER', 411250, NULL);

row created.

SQL> INSERT INTO employee VALUES (8'B''BEN', 'ry', '07-APR-90', NULL, 2,'WAREHOUSE MANAGER', 411100, NULL);

row created.

SQL> INSERT INTO employee VALUES (9'C''Jane', 'ac', '09-FEB-92',NULL, 2'WAREHOUSE MANAGER', 411300, NULL);

row created.

SQL> INSERT INTO employee VALUES (10'H''Mart', 'mh', '27-FEB-91', NULL, 2,'WAREHOUSE MANAGER', 411307, NULL);

row created.

SQL>
SQL>
SQL> DECLARE
  2     CURSOR cur_emp_sal IS
  3        SELECT ROWID
  4        FROM   employee
  5        WHERE  salary > 1100;
  6     lv_counter_num PLS_INTEGER := 0;
  7  BEGIN
  8     FOR cur_emp_sal_rec IN cur_emp_sal LOOP
  9        lv_counter_num := lv_counter_num + 1;
 10        UPDATE employee
 11        SET    salary = salary + 10000
 12        WHERE  ROWID = cur_emp_sal_rec.ROWID;
 13        IF MOD(lv_counter_num,500THEN
 14           DBMS_APPLICATION_INFO.SET_MODULE(lv_counter_num, NULL);
 15           COMMIT;
 16        END IF;
 17     END LOOP;
 18     DBMS_APPLICATION_INFO.SET_MODULE(lv_counter_num, NULL);
 19  END;
 20  /

PL/SQL procedure successfully completed.

SQL>
SQL> drop table employee;

Table dropped.
31. 2. dbms_application_info
31. 2. 1. Read Changed Values and Display
31. 2. 2. Read Original Values and Display
31. 2. 3. desc v$session_longops
31. 2. 4. dbms_application_info.set_client_info to change client information
31. 2. 5. dbms_application_info.set_client_info and dbms_application_info.set_action
31. 2. 6. dbms_application_info.set_client_info
31. 2. 7. DBMS_APPLICATION_INFO.SET_MODULE
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.