DBMS_UTILITY v16
The DBMS_UTILITY
package provides support for the following utility programs. EDB Postgres Advanced Server's implementation of DBMS_UTILITY
is a partial implementation when compared to Oracle's version. Only the functions and procedures listed in the table are supported.
Function/procedure | Function or procedure | Return type | Description |
---|---|---|---|
ANALYZE_DATABASE(method [, estimate_rows [, estimate_percent [, method_opt ]]]) | Procedure | n/a | Analyze database tables. |
ANALYZE_PART_OBJECT(schema, object_name [, object_type [, command_type [, command_opt [, sample_clause ]]]]) | Procedure | n/a | Analyze a partitioned table. |
ANALYZE_SCHEMA(schema, method [, estimate_rows [, estimate_percent [, method_opt ]]]) | Procedure | n/a | Analyze schema tables. |
CANONICALIZE(name, canon_name OUT, canon_len) | Procedure | n/a | Canonicalize a string, e.g., strip off white space. |
COMMA_TO_TABLE(list, tablen OUT, tab OUT) | Procedure | n/a | Convert a comma-delimited list of names to a table of names. |
DB_VERSION(version OUT, compatibility OUT) | Procedure | n/a | Get the database version. |
EXEC_DDL_STATEMENT (parse_string) | Procedure | n/a | Execute a DDL statement. |
EXPAND_SQL_TEXT(input_sql_text, output_sql_text) | Function | TEXT | Returns expanded SQL references to view. |
FORMAT_CALL_STACK | Function | TEXT | Formats the current call stack. |
FORMAT_ERROR_BACKTRACE | Function | TEXT | Formats the current error call backtrace. |
FORMAT_ERROR_STACK | Function | TEXT | Get the exception name. |
GET_CPU_TIME | Function | NUMBER | Get the current CPU time. |
GET_DEPENDENCY(type, schema, name) | Procedure | n/a | Get objects that depend on the given object. |
GET_HASH_VALUE(name, base, hash_size) | Function | NUMBER | Compute a hash value. |
GET_PARAMETER_VALUE(parnam, intval OUT, strval OUT) | Procedure | BINARY_INTEGER | Get database initialization parameter settings. |
GET_TIME | Function | NUMBER | Get the current time. |
NAME_TOKENIZE(name, a OUT, b OUT, c OUT, dblink OUT, nextpos OUT) | Procedure | n/a | Parse the given name into its component parts. |
TABLE_TO_COMMA(tab, tablen OUT, list OUT) | Procedure | n/a | Convert a table of names to a comma-delimited list. |
The following table lists the public variables available in the DBMS_UTILITY
package.
Public variables | Data type | Value | Description |
---|---|---|---|
inv_error_on_restrictions | PLS_INTEGER | 1 | Used by the INVALIDATE procedure. |
lname_array | TABLE | For lists of long names. | |
uncl_array | TABLE | For lists of users and names. |
LNAME_ARRAY
The LNAME_ARRAY
is for storing lists of long names including fully qualified names.
UNCL_ARRAY
The UNCL_ARRAY
is for storing lists of users and names.
ANALYZE_DATABASE, ANALYZE SCHEMA and ANALYZE PART_OBJECT
The ANALYZE_DATABASE(), ANALYZE_SCHEMA() and ANALYZE_PART_OBJECT()
procedures gather statistics on tables in the database. When you execute the ANALYZE
statement, Postgres samples the data in a table and records distribution statistics in the pg_statistics system
table.
ANALYZE_DATABASE
, ANALYZE_SCHEMA
, and ANALYZE_PART_OBJECT
differ primarily in the number of tables that are processed:
ANALYZE_DATABASE
analyzes all tables in all schemas in the current database.ANALYZE_SCHEMA
analyzes all tables in a given schema (in the current database).ANALYZE_PART_OBJECT
analyzes a single table.
The syntax for the ANALYZE
commands are:
Parameters for ANALYZE_DATABASE
and ANALYZE_SCHEMA
method
Determines whether the ANALYZE
procedure populates the pg_statistics
table or removes entries from the pg_statistics
table. If you specify a method of DELETE
, the ANALYZE
procedure removes the relevant rows from pg_statistics
. If you specify a method of COMPUTE
or ESTIMATE
, the ANALYZE
procedure analyzes a table (or multiple tables) and records the distribution information in pg_statistics
. There's no difference between COMPUTE
and ESTIMATE
. Both methods execute the Postgres ANALYZE
statement. All other parameters are validated and then ignored.
estimate_rows
Number of rows upon which to base estimated statistics. One of estimate_rows
or estimate_percent
must be specified if the method is ESTIMATE
.
This argument is ignored but is included for compatibility.
estimate_percent
Percentage of rows upon which to base estimated statistics. One of estimate_rows
or estimate_percent
must be specified if the method is ESTIMATE
.
This argument is ignored but is included for compatibility.
method_opt
Object types to analyze. Any combination of the following:
This argument is ignored but is included for compatibility.
Parameters for ANALYZE_PART_OBJECT
schema
Name of the schema whose objects to analyze.
object_name
Name of the partitioned object to analyze.
object_type
Type of object to analyze. Valid values are: T
– table, I
– index.
This argument is ignored but is included for compatibility.
command_type
Type of analyze functionality to perform. Valid values are:
E
— Gather estimated statistics based on a specified number of rows or a percentage of rows in thesample_clause
clause.C
— Compute exact statistics.V
— Validate the structure and integrity of the partitions.This argument is ignored but is included for compatibility.
command_opt
For command_type
C
or E
, can be any combination of:
For command_type V
, can be CASCADE
if object_type
is T
.
This argument is ignored but is included for compatibility.
sample_clause
If command_type
is E
, contains the following clause to specify the number of rows or percentage of rows on which to base the estimate.
SAMPLE n { ROWS | PERCENT }
This argument is ignored but is included for compatibility.
CANONICALIZE
The CANONICALIZE
procedure performs the following operations on an input string:
- If the string isn't double quoted, verifies that it uses the characters of a legal identifier. If not, an exception is thrown. If the string is double quoted, all characters are allowed.
- If the string isn't double quoted and doesn't contain periods, uppercases all alphabetic characters and eliminates leading and trailing spaces.
- If the string is double quoted and doesn't contain periods, strips off the double quotes.
- If the string contains periods and no portion of the string is double quoted, uppercases each portion of the string and encloses each portion in double quotes.
- If the string contains periods and portions of the string are double quoted, returns:
- The double-quoted portions unchanged, including the double quotes
- The non-double-quoted portions uppercased and enclosed in double quotes.
Parameters
name
String to canonicalize.
canon_name
The canonicalized string.
canon_len
Number of bytes in name
to canonicalize starting from the first character.
Examples
This procedure applies the CANONICALIZE
procedure on its input parameter and displays the results.
COMMA_TO_TABLE
The COMMA_TO_TABLE
procedure converts a comma-delimited list of names into a table of names. Each entry in the list becomes a table entry. Format the names as valid identifiers.
Parameters
list
Comma-delimited list of names.
tablen
Number of entries in tab
.
tab
Table containing the individual names in list
.
LNAME_ARRAY
A DBMS_UTILITY LNAME_ARRAY
, as described in LNAME_ARRAY.
UNCL_ARRAY
A DBMS_UTILITY UNCL_ARRAY
, as described in UNCL_ARRAY.
Examples
This procedure uses the COMMA_TO_TABLE
procedure to convert a list of names to a table. It then displays the table entries.
DB_VERSION
The DB_VERSION
procedure returns the version number of the database.
Parameters
version
Database version number.
compatibility
Compatibility setting of the database (to be implementation-defined as to its meaning).
Examples
The following anonymous block displays the database version information.
EXEC_DDL_STATEMENT
EXEC_DDL_STATEMENT
executes a DDL
command.
Parameters
parse_string
The DDL command to execute.
Examples
The following anonymous block creates the job
table.
If the parse_string
doesn't include a valid DDL statement, EDB Postgres Advanced Server returns an error:
In this case, EDB Postgres Advanced Server's behavior differs from Oracle's. Oracle accepts the invalid parse_string
without complaint.
EXPAND_SQL_TEXT
The EXPAND_SQL_TEXT
function returns an expanded version of a given SQL query by replacing view references with its definition.
Parameters
input_sql_text
The SQL query to expand.
output_sql_text
The expanded version of the given SQL query.
Example
The following anonymous block returns an expanded version of the SQL query SELECT * from vemp
:
FORMAT_CALL_STACK
The FORMAT_CALL_STACK
function returns the formatted contents of the current call stack.
You can use this function in a stored procedure, function, or package to return the current call stack in a readable format. This function is useful for debugging.
FORMAT_ERROR_BACKTRACE
The FORMAT_ERROR_BACKTRACE
function returns the current error call stack, that is, function name and lines that lead up to the exception.
You can use this function in a stored procedure, function, or package to return the current error call backtrace in a readable format. This function is useful for debugging.
FORMAT_ERROR_STACK
The FORMAT_ERROR_STACK
function returns the current exception name.
You can use this function in a stored procedure, function, or package to return the current exception name. This function is useful for debugging.
Note
The output of the functions FORMAT_ERROR_STACK
and FORMAT_ERROR_BACKTRACE
is partially compatible with Oracle. However, it eases the migration from Oracle to EPAS.
GET_CPU_TIME
The GET_CPU_TIME
function returns the CPU time in hundredths of a second from some arbitrary point in time.
Parameters
cputime
Number of hundredths of a second of CPU time.
Examples
This SELECT
command retrieves the current CPU time, which is 603 hundredths of a second or .0603 seconds.
GET_DEPENDENCY
The GET_DEPENDENCY
procedure lists the objects that depend on the specified object. GET_DEPENDENCY
doesn't show dependencies for functions or procedures.
Parameters
type
The object type of name
. Valid values are INDEX
, PACKAGE
, PACKAGE BODY
, SEQUENCE
, TABLE
, TRIGGER
, TYPE
, and VIEW
.
schema
Name of the schema in which name
exists.
name
Name of the object for which to obtain dependencies.
Examples
The following anonymous block finds dependencies on the EMP
table:
GET_HASH_VALUE
The GET_HASH_VALUE
function computes a hash value for a given string.
Parameters
name
The string for which to compute a hash value.
base
Starting value at which to generate hash values.
hash_size
The number of hash values for the desired hash table.
hash
The generated hash value.
Examples
The following anonymous block creates a table of hash values using the ename
column of the emp
table and then displays the key along with the hash value. The hash values start at 100 with a maximum of 1024 distinct values.
GET_PARAMETER_VALUE
The GET_PARAMETER_VALUE
procedure retrieves database initialization parameter settings.
Parameters
parnam
Name of the parameter whose value to return. The parameters are listed in the pg_settings
system view.
intval
Value of an integer parameter or the length of strval
.
strval
Value of a string parameter.
status
Returns 0
if the parameter value is INTEGER
or BOOLEAN
. Returns 1
if the parameter value is a string.
Examples
The following anonymous block shows the values of two initialization parameters.
GET_TIME
The GET_TIME
function returns the current time in hundredths of a second.
Parameters
time
Number of hundredths of a second from the time when the program started.
Examples
This example shows calls to the GET_TIME
function.
NAME_TOKENIZE
The NAME_TOKENIZE
procedure parses a name into its component parts. Names without double quotes are uppercased. The double quotes are stripped from names with double quotes.
Parameters
name
String containing a name in the following format:
a[.b[.c]][@dblink ]
a
Returns the leftmost component.
b
Returns the second component, if any.
c
Returns the third component, if any.
dblink
Returns the database link name.
nextpos
Position of the last character parsed in name.
Examples
This stored procedure displays the returned parameter values of the NAME_TOKENIZE
procedure for various names.
Tokenize the name, emp
:
Tokenize the name, edb.list_emp
:
Tokenize the name, "edb"."Emp_Admin".update_emp_sal
:
Tokenize the name edb.emp@edb_dblink
:
TABLE_TO_COMMA
The TABLE_TO_COMMA
procedure converts table of names into a comma-delimited list of names. Each table entry becomes a list entry. Format the names as valid identifiers.
Parameters
tab
Table containing names.
LNAME_ARRAY
A DBMS_UTILITY LNAME_ARRAY
, as described in LNAME ARRAY.
UNCL_ARRAY
A DBMS_UTILITY UNCL_ARRAY
, as described UNCL_ARRAY.
tablen
Number of entries in list
.
list
Comma-delimited list of names from tab
.
Examples
This example first uses the COMMA_TO_TABLE
procedure to convert a comma-delimited list to a table. The TABLE_TO_COMMA
procedure then converts the table back to a comma-delimited list that it displays.
- On this page
- LNAME_ARRAY
- UNCL_ARRAY
- ANALYZE_DATABASE, ANALYZE SCHEMA and ANALYZE PART_OBJECT
- CANONICALIZE
- COMMA_TO_TABLE
- DB_VERSION
- EXEC_DDL_STATEMENT
- EXPAND_SQL_TEXT
- FORMAT_CALL_STACK
- FORMAT_ERROR_BACKTRACE
- FORMAT_ERROR_STACK
- GET_CPU_TIME
- GET_DEPENDENCY
- GET_HASH_VALUE
- GET_PARAMETER_VALUE
- GET_TIME
- NAME_TOKENIZE
- TABLE_TO_COMMA