RemoveExportDefinition
Purpose
Removes a user-defined export width definition.
Syntax
where:
Syntax element … |
Specifies … |
SYSLIB |
the name of the database where the stored procedure is located. |
export_definition_name |
an existing user-defined export definition name. You cannot specify 'Expected', 'Compatibility', or 'Maximum'. |
result_message |
the output message of the stored procedure. |
Authorization
You must have EXECUTE privileges on the stored procedure or on the SYSLIB database.
Argument Types
Expressions passed to this procedure must have the following data types:
You can also pass arguments with data types that can be converted to the above types using Teradata Database implicit data type conversion rules.
Usage Notes
To delete an existing user-defined export width definition, call the RemoveExportDefinition stored procedure with the following arguments:
RemoveExportDefinition deletes the specified export width definition from the DBC.ExportWidth table.
Note: You cannot specify 'Expected', 'Compatibility', or 'Maximum' for export_definition_name. In addition, you cannot delete an export width definition if it is assigned to a user.
Example
The following statement deletes the user-defined export width definition named MyExportWidth.
CALL SYSLIB.RemoveExportDefinition('MyExportWidth',msg);