drop blobspace argument: Drop a blobspace (SQL administration API)

Use the drop blobspace argument with the admin() or task() function to drop the specified blobspace.

Syntax


1  EXECUTE FUNCTION
1 admin
1 task
2  ( "drop blobspace"
2  , "blobspace"
2  ) ;
Element Description Key Considerations
blobspace The name of the blobspace to drop. Must be an existing blobspace.

Before you drop a blobspace, drop all tables that include a TEXT or BYTE column that references the blobspace.

Usage

This function is equivalent to the onspaces -d command.

Example

The following example drops the blobspace named blobspace3:

EXECUTE FUNCTION task("drop blobspace","blobspace3");