17.5 DB_SIGNATURE Function

The DB_SIGNATURE function computes the current database signature value.

Syntax

FUNCTION DB_SIGNATURE
    RETURN VARCHAR2;

Example

The following example prints the database signature.

begin
     apex_instance_admin.set_parameter (
         p_parameter => 'DB_SIGNATURE',
         p_value     => apex_instance_admin.db_signature );
end;