Performance improvement of NOCOPY : NOCOPY « Function Procedure Packages « 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 » Function Procedure Packages » NOCOPY 
27. 18. 3. Performance improvement of NOCOPY
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> CREATE OR REPLACE PACKAGE myPackage
  2  is
  3    type arr is varray(100000)of product%ROWTYPE;
  4    procedure p1(ip1 IN OUT arr);
  5    procedure p2(ip1 IN OUT NOCOPY arr);
  6    FUNCTION get_time RETURN NUMBER;
  7  END myPackage;
  8  /

Package created.

SQL>
SQL> show errors
No errors.
SQL>
SQL> CREATE OR REPLACE PACKAGE BODY myPackage
  2  is
  3    PROCEDURE p1(ip1 IN OUT arr)
  4    IS
  5    BEGIN
  6      NULL;
  7    END;
  8    PROCEDURE p2(ip1 IN OUT NOCOPY arr)
  9    IS
 10    BEGIN
 11      NULL;
 12    END;
 13    FUNCTION get_time RETURN NUMBER
 14    IS
 15    BEGIN
 16      RETURN (dbms_utility.get_time);
 17    EXCEPTION WHEN OTHERS THEN
 18      RAISE_APPLICATION_ERROR(-20010,SQLERRM);
 19    END get_time;
 20  END myPackage;
 21  /

Package body created.

SQL>
SQL> show errors
No errors.
SQL>
SQL>
SQL> declare
  2    arr1 myPackage.arr :=myPackage.arr(null);
  3    cur_t1 number;
  4    cur_t2 number;
  5    cur_t3 number;
  6  begin
  7    select * into arr1(1)from product where product_id =1;
  8
  9
 10    arr1.extend(99999,1);
 11    cur_t1 :=myPackage.get_time;
 12    myPackage.p1(arr1);
 13    cur_t2 :=myPackage.get_time;
 14    myPackage.p2(arr1);
 15    cur_t3 :=myPackage.get_time;
 16
 17    dbms_output.put_line('Without NOCOPY '||to_char((cur_t2-cur_t1)/100));
 18    dbms_output.put_line('With NOCOPY '||to_char((cur_t3-cur_t2)/100));
 19  end;
 20  /
Without NOCOPY .17
With NOCOPY 0

PL/SQL procedure successfully completed.

SQL>
SQL> drop table product;

Table dropped.

SQL>
SQL>
27. 18. NOCOPY
27. 18. 1. You can pass variables by reference, even in PL/SQL
27. 18. 2. The hint NOCOPY is applicable only to OUT and IN OUT types of variables
27. 18. 3. Performance improvement of NOCOPY
27. 18. 4. IN OUT NOCOPY
27. 18. 5. The behavior of NOCOPY.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.