pdb_get_procedure_parms

Description

Returns a list of input parameters for procedures in the current database at the primary data server.

NoteThis command is available only for Oracle and Microsoft SQL Server.

Syntax

pdb_get_procedure_parms [ownername, procname [, paramname]]

Parameters

ownername

The user name of the owner of the procedure specified in procname. This option can be delimited with quote characters to specify character case.

procname

The name of the procedure in the current database for which information is returned. This option can be delimited with quote characters to specify character case.

paramname

The name of the input parameter for which information is returned. This option can be delimited with quote characters to specify character case.

Examples

Example 1

pdb_get_procedure_parms

This command returns a list of all of the input parameters for all of the procedures in the current database.

Example 2

pdb_get_procedure_parms bob, sp_foo

This command returns a list of all of the input parameters for the procedure named sp_foo, owned by the user “bob” in the current database.

Example 3

pdb_get_procedure_parms bob, sp_foo, foo_count

This command returns information about the input parameter foo_count for the procedure sp_foo, owned by the user “bob” in the current database.

Usage

Note(For Oracle and Microsoft SQL Server) Results from these commands are from the Replication Agent System database (RASD). (For UDB) Results from these commands are directly from the primary database.

See also

pdb_get_columns, pdb_get_databases, pdb_get_primary_keys, pdb_get_procedures, pdb_get_tables