| Oracle9i Supplied PL/SQL Packages and Types Reference Release 1 (9.0.1) Part Number A89852-02 |
|
UTL_RAW , 20 of 22
This function performs bitwise logical "or" of the values in RAW r1 with RAW r2 and returns the or'd result RAW.
If r1 and r2 differ in length, then the "or" operation is terminated after the last byte of the shorter of the two RAWs, and the unprocessed portion of the longer RAW is appended to the partial result. The result length equals the longer of the two input RAWs.
UTL_RAW.BIT_OR ( r1 IN RAW, r2 IN RAW) RETURN RAW;
pragma restrict_references(bit_or, WNDS, RNDS, WNPS, RNPS);
| Parameters | Description |
|---|---|
r1 |
|
r2 |
|
| Return | Description |
|---|---|
|
Containing the "or" of |
NULL |
Either |
|
|
![]() Copyright © 1996-2001, Oracle Corporation. All Rights Reserved. |
|