Test cursor attributes with an implicit cursor : Implicit Cursor « Cursor « Oracle PL / SQL

Home
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
Oracle PL / SQL » Cursor » Implicit Cursor 




Test cursor attributes with an implicit cursor
  
SQL>
SQL> CREATE TABLE book (
  2    isbn      CHAR(10PRIMARY KEY,
  3    category  VARCHAR2(20),
  4    title     VARCHAR2(100),
  5    num_pages NUMBER,
  6    price     NUMBER,
  7    copyright NUMBER(4),
  8    emp1   NUMBER,
  9    emp2   NUMBER,
 10    emp3   NUMBER
 11  );

Table created.

SQL>
SQL> INSERT INTO book (isbn, category, title, num_pages, price, copyright, emp1, emp2, emp3)
  2             VALUES ('1''Database', 'Oracle', 56339.992009123);

row created.

SQL> INSERT INTO book (isbn, category, title, num_pages, price, copyright, emp1, emp2)
  2             VALUES ('2''Database', 'MySQL', 76544.99200945);

row created.

SQL> INSERT INTO book (isbn, category, title, num_pages, price, copyright, emp1, emp2, emp3)
  2             VALUES ('3''Database', 'SQL Server', 40439.992001678);

row created.

SQL>
SQL> SET SERVEROUTPUT ON ESCAPE OFF
SQL>
SQL>
SQL> BEGIN
  2     DBMS_OUTPUT.ENABLE(1000000);
  3     UPDATE book SET price = price * .90 WHERE isbn = '1';
  4
  5     DBMS_OUTPUT.PUT_LINE(SQL%ROWCOUNT||' rows updated');
  6
  7     IF SQL%NOTFOUND
  8     THEN
  9        DBMS_OUTPUT.PUT_LINE('Unable to update isbn 1');
 10     END IF;
 11
 12     COMMIT;
 13
 14  EXCEPTION
 15     WHEN OTHERS
 16        THEN
 17        DBMS_OUTPUT.PUT_LINE(SQLERRM);
 18  END;
 19  /
rows updated

PL/SQL procedure successfully completed.

SQL>
SQL> drop table book;

Table dropped.

   
    
  














Related examples in the same category
1.Use implicit cursor
2.Implicit cursors: SQL%FOUND returns TRUE if SQL statement found one or more records
3.use for loop cursor
4.Implicit Cursors: sql%rowcount
5.Cursor for loop
6.Reference implicit in insert statement
7.use cursor attributes on the implicit SQL cursor.
8.Implicit cursor by for loop
9.Use implicit or explicit cursor to insert 50000 rows to a table
10.Use passed in value with creating a cursor
11.Write an implicit cursor in a FOR loop and use the data
12.explicit cursor with cursor variable
13.for data in ( select * from tableName )
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.