dbowner

Specify that called stored procedures should be prefixed with the owner name.

USYS$MSS_PARAMS dbowner="OwnerName"

USYS$MSS_PARAMS dbowner="dbo"

Arguments

OwnerName—If specified, the given name will be prefixed to all stored procedure names.

Description

Use this option to specify that called stored procedures should be prefixed with the owner name. For example, if USYS$MSS_PARAMS dbowner="dbo" is specified, then the stored procedure names will become:

call dbo.tablename_FET( ? )
call dbo.tablename_DEL( ? )
call dbo.tablename_UPD( ?,?,? )
call dbo.tablename_INS( ?,? )

If nothing is specified, then nothing will precede the stored procedure name.