Share via


modRemoveAllObjects

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Removes all workflow objects associated with a user table. Exists in the workflow-enabled database.

 [@TableName =] 'name', 
[@TableID =] 'id', 
[@KeepPermissions =] 'keep_perm'

Parameters

  • [@TableName =] 'name'
    Name of the table.
  • [@TableID =] 'id'
    Table ID. Can be used interchangeably with the table name.
  • [@KeepPermissions =] 'keep_perm'
    When True, the associated workflow tables are not removed. When False, the associated tables are dropped.

Example

The following example removes all workflow objects from the Category table:

EXEC modRemoveAllObjects 'Category'

See Also

Stored Procedures | Workflow Application Infrastructure | ModSystem Database Tables | Workflow-Enabled Database Tables | Views