SET_CONFIGURATION_TAG

The SET_CONFIGURATION_TAG function sets a value of a configuration tag. If the tag doesn't exist, a new tag is created.

SET_CONFIGURATION_TAG Function

DBMS_DG.SET_CONFIGURATION_TAG (
     config_name          IN VARCHAR2,
     tag_name             IN VARCHAR2,
     value                IN VARCHAR2,
     severity             OUT BINARY_INTEGER)
RETURN BINARY_INTEGER;

Parameters

Parameter Description
config_name

The name of a configuration file. NULL for local configuration.

tag_name

The name of a tag.

value

The value for the tag.

Usage Notes

  • This function returns a binary integer, an Oracle error number indicating whether the operation was successful.

Return Values

Error Description
severity

The severity associated with the status returned by this function.