Update the emp table, converting emp names to uppercase : Update All « Insert Delete Update « Oracle PL / SQL

Oracle PL / SQL
1. Aggregate Functions
2. Analytical Functions
3. Char Functions
4. Constraints
5. Conversion Functions
6. Cursor
7. Data Type
8. Date Timezone
9. Hierarchical Query
10. Index
11. Insert Delete Update
12. Large Objects
13. Numeric Math Functions
14. Object Oriented Database
15. PL SQL
16. Regular Expressions
17. Report Column Page
18. Result Set
19. Select Query
20. Sequence
21. SQL Plus
22. Stored Procedure Function
23. Subquery
24. System Packages
25. System Tables Views
26. Table
27. Table Joins
28. Trigger
29. User Previliege
30. View
31. XML
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 Tutorial
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 » Insert Delete Update » Update All 
Update the emp table, converting emp names to uppercase
 
SQL> CREATE TABLE emp (
  2    id         NUMBER PRIMARY KEY,
  3    fname VARCHAR2(50),
  4    lname  VARCHAR2(50)
  5  );

Table created.

SQL>
SQL> INSERT INTO emp (id, fname, lname)VALUES (1'A''B');

row created.

SQL> INSERT INTO emp (id, fname, lname)VALUES (2'C''D');

row created.

SQL> INSERT INTO emp (id, fname, lname)VALUES (3'Enn', 'F');

row created.

SQL> INSERT INTO emp (id, fname, lname)VALUES (4'G''H');

row created.

SQL> INSERT INTO emp (id, fname, lname)VALUES (5'G''Z');

row created.

SQL>
SQL> SET SERVEROUTPUT ON
SQL>
SQL>
SQL> DECLARE
  2
  3     v_rowid ROWID;
  4     v_rowcount NUMBER := 0;
  5
  6     CURSOR emp_cur1 IS SELECT rowid FROM emp WHERE id > 50;
  7
  8     CURSOR emp_cur2 IS SELECT rowid FROM emp WHERE id > 50;
  9
 10  BEGIN
 11
 12     OPEN emp_cur1;
 13
 14     DELETE FROM emp WHERE id > 50;
 15
 16     OPEN emp_cur2;
 17
 18     
 19     FETCH emp_cur1 INTO v_rowid;
 20     IF emp_cur1%ROWCOUNT > 0
 21     THEN
 22        DBMS_OUTPUT.PUT_LINE('Cursor includes the deleted rows');
 23     ELSE
 24        DBMS_OUTPUT.PUT_LINE('Cursor does not include the deleted rows');
 25     END IF;
 26
 27     v_rowcount := 0;
 28     
 29     FETCH emp_cur2 INTO v_rowid;
 30     IF emp_cur2%ROWCOUNT > 0
 31     THEN
 32        DBMS_OUTPUT.PUT_LINE('Cursor includes the deleted rows');
 33     ELSE
 34        DBMS_OUTPUT.PUT_LINE('Cursor does not include the deleted rows');
 35     END IF;
 36
 37     CLOSE emp_cur1;
 38     CLOSE emp_cur2;
 39
 40     ROLLBACK;
 41
 42  EXCEPTION
 43     WHEN OTHERS
 44     THEN
 45        DBMS_OUTPUT.PUT_LINE(sqlerrm);
 46  END;
 47  /
Cursor does not include the deleted rows
Cursor does not include the deleted rows

PL/SQL procedure successfully completed.

SQL>
SQL> SET ESCAPE OFF
SQL>
SQL> drop table emp;

Table dropped.

SQL>

   
  
Related examples in the same category
1. Update command without condition
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.