GET_IN_DB_UTIL_VERSION - Perceptive Content Database IN_DB_UTIL Package for Oracle Server - Foundation 24.1 - Foundation 24.1 - Ready - Perceptive Content - external

Perceptive Content Database IN_DB_UTIL Package for Oracle Server

Platform
Perceptive Content
Product
Perceptive Content Database IN_DB_UTIL Package for Oracle Server
Release
Foundation 24.1
License

The GET_IN_DB_UTIL_VERSION function returns the current version number for the IN_DB_UTIL package.

Parameter Description
PKG_VERSION Type: RETURN
Datatype VARCHAR2(16)
Default Value: 4.2.0
Description Returns the current version of the IN_DB_UTIL package.

Examples

SELECT IN_DB_UTIL.GET_IN_DB_UTIL_VERSION FROM DUAL;  

GET_IN_DB_UTIL_VERSION 
---------------------- 
4.2.0 
SET SERVEROUTPUT ON;  

DECLARE V_INDBUTIL_VERSION VARCHAR2(16) := IN_DB_UTIL.GET_IN_DB_UTIL_VERSION; 
BEGIN   
   DBMS_OUTPUT.PUT_LINE(CHR(10)||V_INDBUTIL_VERSION); 
END; 
/  

4.2.0