Run an anonymous block that updates the number of book IN STOCK : Update Data « PL SQL « 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 » PL SQL » Update Data 
Run an anonymous block that updates the number of book IN STOCK
    
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> CREATE TABLE inventory (
  2    isbn         CHAR(10),
  3    status       VARCHAR2(25CHECK (status IN ('IN STOCK', 'BACKORDERED', 'FUTURE')),
  4    status_date  DATE,
  5    amount       NUMBER
  6  );



SQL>
SQL> INSERT INTO inventory (isbn, status, status_date, amount)VALUES ('1''BACKORDERED', TO_DATE('06-JUN-2004', 'DD-MON-YYYY'), 1000);



SQL> INSERT INTO inventory (isbn, status, status_date, amount)VALUES ('2''IN STOCK', NULL, 5000);



SQL> INSERT INTO inventory (isbn, status, status_date, amount)VALUES ('3''IN STOCK', NULL, 1000);



SQL>
SQL>
SQL> DECLARE
  2
  3     v_isbn INVENTORY.ISBN%TYPE;
  4     v_amount INVENTORY.AMOUNT%TYPE;
  5
  6     CURSOR inventory_cur IS SELECT isbn, amount FROM inventory
  7        WHERE status = 'IN STOCK'
  8        AND isbn IN (SELECT isbn FROM book)
  9        FOR UPDATE OF amount;
 10
 11  BEGIN
 12
 13     FOR y IN inventory_cur
 14     LOOP
 15        FETCH inventory_cur INTO v_isbn, v_amount;
 16        EXIT WHEN inventory_cur%NOTFOUND;
 17
 18        DBMS_OUTPUT.PUT_LINE(v_isbn||'Amount IN STOCK before: '||v_amount);
 19
 20        v_amount := v_amount + 50;
 21
 22        UPDATE inventory SET amount = v_amount WHERE CURRENT OF inventory_cur;
 23
 24        DBMS_OUTPUT.PUT_LINE(v_isbn||'Amount IN STOCK after: '||v_amount);
 25
 26     END LOOP;
 27
 28     COMMIT;
 29
 30  EXCEPTION
 31     WHEN OTHERS
 32     THEN
 33        DBMS_OUTPUT.PUT_LINE(SQLERRM);
 34        ROLLBACK;
 35  END;
 36  /



SQL> drop table book;

Table dropped.

   
    
    
    
  
Related examples in the same category
1. UPDATE statement can be used within PL/SQL programs to update a row or a set of rows
2. Select for update
3. Check row count being updating
4. Update with variable
5. Two UPDATE statements.
6. Check SQL%ROWCOUNT after updating
7. Exception handling for update statement
8. Update salary with stored procedure
9. Update table and return if success
10. Decrease salary with user procedure
11. Change price and output the result
12. Run an anonymous block that updates the number of pages for this book
13. Run the anonymous block to update the position column
14. Ajust price based on price range
15. Bundle several update and insert statements into one procedure
16. Use procedure to update table
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.