Assigning different queries to the same cursor variable : Introduction « Cursor « 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 » Cursor » Introduction 
25. 1. 9. Assigning different queries to the same cursor variable
SQL>
SQL>
SQL>
SQL> create table product(
  2     product_id number(4)     not null,
  3     product_description varchar2(20not null
  4  );

Table created.

SQL>
SQL> insert into product values (1,'Java');

row created.

SQL> insert into product values (2,'Oracle');

row created.

SQL> insert into product values (3,'C#');

row created.

SQL> insert into product values (4,'Javascript');

row created.

SQL> insert into product values (5,'Python');

row created.

SQL>
SQL>
SQL> create table company(
  2     product_id        number(4)    not null,
  3     company_id          NUMBER(8)    not null,
  4     company_short_name  varchar2(30not null,
  5     company_long_name   varchar2(60)
  6  );

Table created.

SQL> insert into company values(1,1001,'A Inc.','Long Name A Inc.');

row created.

SQL> insert into company values(1,1002,'B Inc.','Long Name B Inc.');

row created.

SQL> insert into company values(1,1003,'C Inc.','Long Name C Inc.');

row created.

SQL> insert into company values(2,1004,'D Inc.','Long Name D Inc.');

row created.

SQL> insert into company values(2,1005,'E Inc.','Long Name E Inc.');

row created.

SQL> insert into company values(2,1006,'F Inc.','Long Name F Inc.');

row created.

SQL>
SQL>
SQL> create table org_company_site(
  2     company_id number(8not null,
  3     site_no number(4not null
  4  );

Table created.

SQL> insert into org_company_site values (1001,1);

row created.

SQL> insert into org_company_site values (1002,2);

row created.

SQL> insert into org_company_site values (1003,3);

row created.

SQL> insert into org_company_site values (1004,1);

row created.

SQL> insert into org_company_site values (1004,2);

row created.

SQL> insert into org_company_site values (1004,3);

row created.

SQL> insert into org_company_site values (1005,1);

row created.

SQL> insert into org_company_site values (1005,4);

row created.

SQL> insert into org_company_site values (1005,5);

row created.

SQL> insert into org_company_site values (1006,1);

row created.

SQL>
SQL>
SQL> CREATE OR REPLACE PROCEDURE p_print_report(p_report_no NUMBER,p_title VARCHAR2)
  2  IS
  3    TYPE rc IS REF CURSOR;
  4    refCursorValue rc;
  5    v_product_description VARCHAR2(20);
  6    v_company_short_name VARCHAR2(30);
  7  BEGIN
  8    IF (p_report_no =1)THEN
  9      OPEN refCursorValue FOR SELECT h.product_description,o.company_short_name
 10                    FROM company o,product h
 11                    WHERE o.product_id =h.product_id
 12                    AND (SELECT count(os.site_no)
 13                             FROM org_company_site os
 14                             WHERE os.company_id =o.company_id);
 15    ELSIF (p_report_no =2)THEN
 16      OPEN refCursorValue FOR SELECT h.product_description,o.company_short_name
 17                    FROM company o,product h
 18                    WHERE o.product_id =h.product_id
 19                    AND NOT EXISTS
 20                        (SELECT *
 21                         FROM company o1
 22                         WHERE o1.company_id =o.company_id
 23                         AND o1.product_id =);
 24    END IF;
 25    dbms_output.put_line(p_title);
 26    dbms_output.put_line(rpad('-',length(p_title),'-'));
 27    dbms_output.put_line(rpad('Hierarchy',20,' ')||' '||rpad('Description',30,' '));
 28    dbms_output.put_line(rpad('-',20,'-')||' '||rpad('-',30,'-'));
 29    LOOP
 30      FETCH refCursorValue INTO v_product_description,v_company_short_name;
 31      EXIT WHEN refCursorValue%NOTFOUND;
 32      dbms_output.put_line(rpad(v_product_description,20,' ')||' '||
 33      rpad(v_company_short_name,30,' '));
 34    END LOOP;
 35    CLOSE refCursorValue;
 36  END p_print_report;
 37  /

Procedure created.

SQL>
SQL>
SQL> drop table org_company_site;

Table dropped.

SQL>
SQL> drop table company;

Table dropped.

SQL>
SQL> drop table product;

Table dropped.

SQL>
SQL>
25. 1. Introduction
25. 1. 1. Cursors
25. 1. 2. First Cursor Example
25. 1. 3. An example of opening the cursorValue cursor
25. 1. 4. OPEN Cursor for fetching
25. 1. 5. A Cursor for counting
25. 1. 6. To prepare the comma-separated list
25. 1. 7. Create a cursor for update
25. 1. 8. An example of cursor variable assignment
25. 1. 9. Assigning different queries to the same cursor variable
25. 1. 10. Cursor to reference whole table
25. 1. 11. select first row to a cursor
25. 1. 12. Nested cursor
25. 1. 13. Cursor performance
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.