Append result from generator function to a table : Function Return « Stored Procedure Function « 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 » Stored Procedure Function » Function Return 
Append result from generator function to a table
    
SQL>
SQL>
SQL> create table gift(
  2   gift_id NUMBER,
  3   emp_id NUMBER,
  4   register_date DATE ,
  5   total_price NUMBER(7,2),
  6   DELIVER_DATE DATE,
  7   DELIVER_TIME VARCHAR2(7),
  8   payment VARCHAR2(2,
  9   EMP_NO NUMBER(3,0),
 10   DELIVER_NAME VARCHAR2(35),
 11   message VARCHAR2(100)
 12  )
 13  storage(initial 50m);

Table created.

SQL>
SQL> alter table gift
  2  add constraint gift_pk primary key(gift_id);

Table altered.

SQL>
SQL> analyze table gift compute statistics;

Table analyzed.

SQL>
SQL>
SQL> create or replace type gift_type as object (
  2   gift_id NUMBER,
  3   emp_id NUMBER,
  4   register_date DATE ,
  5   total_price NUMBER(7,2),
  6   DELIVER_DATE DATE,
  7   DELIVER_TIME VARCHAR2(7),
  8   payment VARCHAR2(2,
  9   EMP_NO NUMBER(3,0),
 10   DELIVER_NAME VARCHAR2(35),
 11   message VARCHAR2(100)
 12   );
 13  /

SQL>
SQL> create or replace type gift_table as table of gift_type;
  2  /

Type created.

SQL>
SQL> create or replace function gift_generator(p_num_rows in number)
  2     RETURN gift_table
  3  AS
  4      v_gift_table     gift_TABLE := gift_table();
  5  BEGIN
  6
  7      for i in 1..p_num_rows loop
  8          v_gift_table.EXTEND;
  9          v_gift_table(i:= gift_type(i,i,sysdate,0,sysdate,null,'CA',1,null,null ));
 10
 11      end loop;
 12
 13      return v_gift_table;
 14
 15  END;
 16  /

Function created.

SQL> show errors
No errors.
SQL>
SQL>
SQL> declare
  2      v_start  number;
  3      v_run1    number;
  4  begin
  5      v_start := dbms_utility.get_time;
  6      insert /*+APPEND */ into gift (select from table(gift_generator(100) ) );
  7      v_run1 := dbms_utility.get_time - v_start;
  8      dbms_output.put_line('no pipe '||v_run1);
  9  end;
 10  /
no pipe 5

PL/SQL procedure successfully completed.

SQL>
SQL>
SQL>
SQL> drop table gift;

Table dropped.

SQL>

   
    
    
    
  
Related examples in the same category
1. Return varchar2 value from function
2. Function return Integer
3. Return value from a function
4. Use function return value in select statement
5. Save the returning value from a procedure to a variable
6. RETURN statement.
7. Multiple RETURN Statements
8. Return a type
9. Concatenates two strings into one:
10. Return a varray from a function
11. We use user function in DML statements
12. This script demonstrates using a record type as a function return value
13. Use function to check passwords
14. Use user-defined function to combine and format columns
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.