Retro Eye care Haitian Deep Dark Default

DROP DB_DISCOVERY RULE

Description

The DROP DB_DISCOVERY RULE syntax is used to drop database discovery rule for specified database

Syntax

DropDatabaseDiscoveryRule ::=
  'DROP' 'DB_DISCOVERY' 'RULE'  dbDiscoveryRuleName (',' dbDiscoveryRuleName)* ('FROM' databaseName)?

dbDiscoveryRuleName ::=
  identifier

databaseName ::=
  identifier

Supplement

  • When databaseName is not specified, the default is the currently used DATABASE. If DATABASE is not used, No database selected will be prompted.

Example

  • Drop mutiple database discovery rule for specified database
DROP DB_DISCOVERY RULE group_0, group_1 FROM discovery_db;
  • Drop single database discovery rule for current database
DROP DB_DISCOVERY RULE group_0;

Reserved word

DROP, DB_DISCOVERY, RULE, FROM