复古 护眼 海天 深邃 暗黑 默认

DROP SHADOW ALGORITHM

描述

DROP SHADOW ALGORITHM 语法用于为指定逻辑库删除影子库压测算法

语法定义

DropShadowAlgorithm ::=
  'DROP' 'SHADOW' 'ALGORITHM' ifExists? shadowAlgorithmName (',' shadowAlgorithmName)* ('FROM' databaseName)?

ifExists ::=
  'IF' 'EXISTS'

shadowAlgorithmName ::=
  identifier

databaseName ::=
  identifier

补充说明

  • 未指定 databaseName 时,默认是当前使用的 DATABASE。 如果也未使用 DATABASE 则会提示 No database selected
  • ifExists 子句用于避免 shadow algorithm not exists 错误。

示例

  • 为指定数据库删除多个影子库压测算法
DROP SHADOW ALGORITHM shadow_rule_t_order_sql_hint_0, shadow_rule_t_order_item_sql_hint_0 FROM shadow_db;
  • 为当前数据库删除单个影子库压测算法
DROP SHADOW ALGORITHM shadow_rule_t_order_sql_hint_0;
  • 使用 ifExists 子句删除影子库压测算法
DROP SHADOW ALGORITHM IF EXISTS shadow_rule_t_order_sql_hint_0;

保留字

DROPSHADOWALGORITHMFROM

相关链接