The DROP DEFAULT SHADOW ALGORITHM
syntax is used to drop default shadow algorithm for specified database
DropDefaultShadowAlgorithm ::=
'DROP' 'DEFAULT' 'SHADOW' 'ALGORITHM' ifExists? ('FROM' databaseName)?
ifExists ::=
'IF' 'EXISTS'
databaseName ::=
identifier
ifExists
clause used for avoid Default shadow algorithm not exists
error.DROP DEFAULT SHADOW ALGORITHM FROM shadow_db;
DROP DEFAULT SHADOW ALGORITHM;
ifExists
clauseDROP DEFAULT SHADOW ALGORITHM IF EXISTS;
DROP
, DEFAULT
, SHODOW
, ALGORITHM
, FROM