Retro Eye care Haitian Deep Dark Default

IMPORT DATABASE CONFIGURATION

Description

The IMPORT DATABASE CONFIGURATION syntax is used to import YAML configuration to specified database.

Syntax

ExportDatabaseConfiguration ::=
  'IMPORT' 'DATABASE' 'CONFIGURATION' 'FROM' 'FILE' filePath ('TO' databaseName)?

databaseName ::=
  identifier

filePath ::=
  string

Supplement

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

  • The IMPORT DATABASE CONFIGURATION syntax only supports import operations on empty database.

Example

  • Import the configuration in YAML into the specified database
IMPORT DATABASE CONFIGURATION FROM FILE "/xxx/config_test1.yaml" TO test1;
  • Import the configuration in YAML into the current database
IMPORT DATABASE CONFIGURATION FROM FILE "/xxx/config_test1.yaml";

Reserved word

IMPORT, DATABASE, CONFIGURATION, FROM, FILE, TO