Generate Random number : Packages « 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 » Packages 
27. 10. 19. Generate Random number
SQL> REM 05-RAND.SQL
SQL> REM This file contains the code for the Random package in
SQL> REM Chapter of "Oracle PL/SQL Programming".  It illustrates
SQL> REM package initialization.
SQL>
SQL> REM This is version 1.0 of this file, updated 2/18/96.
SQL> REM Comments and questions should go to Scott Urman at
SQL> REM surman@us.oracle.com.
SQL>
SQL>
SQL> CREATE OR REPLACE PACKAGE Random AS
  2  /* Random number generator.  Uses the same algorithm as the
  3     rand() function in C. */
  4
  5    -- Used to change the seed.  From a given seed, the same
  6    -- sequence of random numbers will be generated.
  7    PROCEDURE ChangeSeed(p_NewSeed IN NUMBER);
  8
  9    -- Returns a random integer between and 32767.
 10    FUNCTION Rand RETURN NUMBER;
 11    --PRAGMA RESTRICT_REFERENCES(rand, WNDS );
 12
 13    -- Same as Rand, but with a procedural interface.
 14    PROCEDURE GetRand(p_RandomNumber OUT NUMBER);
 15
 16    -- Returns a random integer between and p_MaxVal.
 17    FUNCTION RandMax(p_MaxVal IN NUMBERRETURN NUMBER;
 18   -- PRAGMA RESTRICT_REFERENCES(RandMax, WNDS);
 19
 20    -- Same as RandMax, but with a procedural interface.
 21    PROCEDURE GetRandMax(p_RandomNumber OUT NUMBER,
 22                         p_MaxVal IN NUMBER);
 23  END Random;
 24  /

Package created.

SQL>
SQL> CREATE OR REPLACE PACKAGE BODY Random AS
  2
  3    /* Used for calculating the next number. */
  4    v_Multiplier  CONSTANT NUMBER := 22695477;
  5    v_Increment   CONSTANT NUMBER := 1;
  6
  7    /* Seed used to generate random sequence. */
  8    v_Seed        number := 1;
  9
 10    PROCEDURE ChangeSeed(p_NewSeed IN NUMBERIS
 11    BEGIN
 12      v_Seed := p_NewSeed;
 13    END ChangeSeed;
 14
 15    FUNCTION Rand RETURN NUMBER IS
 16    BEGIN
 17      v_Seed := MOD(v_Multiplier * v_Seed + v_Increment,
 18                    (** 32));
 19      RETURN BITAND(v_Seed/(** 16)32767);
 20    END Rand;
 21
 22    PROCEDURE GetRand(p_RandomNumber OUT NUMBERIS
 23    BEGIN
 24      -- Simply call Rand and return the value.
 25      p_RandomNumber := Rand;
 26    END GetRand;
 27
 28    FUNCTION RandMax(p_MaxVal IN NUMBERRETURN NUMBER IS
 29    BEGIN
 30      RETURN MOD(Rand, p_MaxVal1;
 31    END RandMax;
 32
 33    PROCEDURE GetRandMax(p_RandomNumber OUT NUMBER,
 34                         p_MaxVal IN NUMBERIS
 35    BEGIN
 36      -- Simply call RandMax and return the value.
 37      p_RandomNumber := RandMax(p_MaxVal);
 38    END GetRandMax;
 39
 40  BEGIN
 41    /* Package initialization.  Initialize the seed to the current
 42       time in seconds. */
 43    ChangeSeed(TO_NUMBER(TO_CHAR(SYSDATE, 'SSSSS')));
 44  END Random;
 45  /

Package body created.

SQL>
27. 10. Packages
27. 10. 1. Packages
27. 10. 2. Private Versus Public Package Objects
27. 10. 3. Package State
27. 10. 4. Recompiling Packages
27. 10. 5. All packages can be recompiled by using the Oracle utility dbms_utility:
27. 10. 6. Creating a Package Specification
27. 10. 7. Creating a Package Body
27. 10. 8. Creating Packages and call its functions
27. 10. 9. Calling Functions and Procedures in a Package
27. 10. 10. A Package Specification and its body
27. 10. 11. Overloading Packaged Subprograms
27. 10. 12. Calls procedure in a package
27. 10. 13. Dropping a Package
27. 10. 14. Calling a Cursor Declared in a Different Package
27. 10. 15. Reference fields and methods in package
27. 10. 16. Controlling access to packages
27. 10. 17. Globals Stored in a Package
27. 10. 18. A Subtypes Example
27. 10. 19. Generate Random number
27. 10. 20. Crosss reference between two packages
27. 10. 21. package RECURSION
27. 10. 22. Using RESTRICT_REFERENCES in a Package
27. 10. 23. PLS-00452: Subprogram 'GETNAME' violates its associated pragma
27. 10. 24. Dynamically create packages
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.