DROP RESOURCE MONITOR¶

Removes the specified resource monitor from the system.

See also:

CREATE RESOURCE MONITOR , ALTER RESOURCE MONITOR , SHOW RESOURCE MONITORS

Syntax¶

DROP RESOURCE MONITOR [ IF EXISTS ] <name>
Copy

Parameters¶

name

Specifies the identifier for the resource monitor to drop. If the identifier contains spaces or special characters, the entire string must be enclosed in double quotes. Identifiers enclosed in double quotes are also case-sensitive.

Usage Notes¶

  • Dropped resource monitors cannot be recovered; they must be recreated.

  • Dropping a resource monitor immediately enables resuming any assigned warehouses that have been suspended due to the monitor reaching its monthly threshold.

    For more information, see Working with resource monitors.

Examples¶

Drop resource monitor my_rm, but don’t raise an error if the resource monitor doesn’t exist:

DROP RESOURCE MONITOR IF EXISTS my_rm;
Copy