DROP DEFAULT SHADOW ALGORITHM

Description

The DROP DEFAULT SHADOW ALGORITHM syntax is used to drop default shadow algorithm for specified database

Syntax

  1. DropDefaultShadowAlgorithm ::=
  2. 'DROP' 'DEFAULT' 'SHADOW' 'ALGORITHM' ('FROM' databaseName)?
  3. databaseName ::=
  4. 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 default shadow algorithm for specified database
  1. DROP DEFAULT SHADOW ALGORITHM FROM test1;
  • Drop default shadow algorithm for current database
  1. DROP DEFAULT SHADOW ALGORITHM;

Reserved word

DROP, DEFAULT, SHODOW, ALGORITHM, FROM