DROP SHADOW ALGORITHM

描述

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

语法定义

语法 铁路图

  1. DropShadowAlgorithm ::=
  2. 'DROP' 'SHADOW' 'ALGORITHM' ifExists? shadowAlgorithmName (',' shadowAlgorithmName)* ('FROM' databaseName)?
  3. ifExists ::=
  4. 'IF' 'EXISTS'
  5. shadowAlgorithmName ::=
  6. identifier
  7. databaseName ::=
  8. identifier

补充说明

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

示例

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

保留字

DROPSHADOWALGORITHMFROM

相关链接