DROP DISKSTORE
October 18, 2021 ยท View on GitHub
Removes a disk store configuration from the SnappyData cluster.
DROP DISKSTORE [ IF EXISTS ] store-name
IF EXISTS
Include the IF EXISTS clause to execute the statement only if the specified disk store exists in SnappyData.
store-name
User-defined name of the disk store configuration that you want to remove. The available names are stored in the SYSDISKSTORES system table.
Example
This command removes the disk store "STORE1" from the cluster:
DROP DISKSTORE store1;
Related Topics