ŞEMAYı AÇıKLAMA

Şunun için geçerlidir:evet olarak işaretlendi Databricks SQL denetimi yes Databricks Runtime olarak işaretlendi

Mevcut şemanın meta verilerini döndürür. Meta veri bilgileri şemanın adını, açıklamasını ve dosya sistemindeki konumunu içerir. İsteğe bağlı EXTENDED seçenek belirtilirse şema özellikleri de döndürülür.

ve DATABASE kullanımı birbirinin SCHEMA yerine kullanılabilir olsa da SCHEMA tercih edilir.

Sözdizimi

{ DESC | DESCRIBE } SCHEMA [ EXTENDED ] schema_name

Parametre

  • schema_name: Sistemdeki mevcut şemanın (şema) adı. Ad yoksa, bir özel durum oluşturulur.

Örnekler

-- Create employees SCHEMA
> CREATE SCHEMA employees COMMENT 'For software companies';

-- Describe employees SCHEMA.
-- Returns Database Name, Description and Root location of the filesystem
-- for the employees SCHEMA.
> DESCRIBE SCHEMA employees;
 database_description_item    database_description_value
 ------------------------- -----------------------------
             Database Name                     employees
               Description        For software companies
                  Location file:/you/Temp/employees.db

-- Create employees SCHEMA
> CREATE SCHEMA employees COMMENT 'For software companies';

-- Alter employees schema to set DBPROPERTIES
> ALTER SCHEMA employees SET DBPROPERTIES ('Create-by' = 'Kevin', 'Create-date' = '09/01/2019');

-- Describe employees SCHEMA with EXTENDED option to return additional schema properties
> DESCRIBE SCHEMA EXTENDED employees;
 database_description_item                    database_description_value
 ------------------------- ---------------------------------------------
             Database Name                                     employees
               Description                        For software companies
                  Location                 file:/you/Temp/employees.db
                Properties ((Create-by,kevin), (Create-date,09/01/2019))

-- Create deployment SCHEMA
> CREATE SCHEMA deployment COMMENT 'Deployment environment';

-- Describe deployment.
> DESCRIBE SCHEMA deployment;
 database_description_item database_description_value
 ------------------------- ------------------------------
             Database Name                     deployment
               Description         Deployment environment
                  Location file:/you/Temp/deployment.db