SHOW CONNECTIONS
Se aplica a: Databricks SQL Databricks Runtime 13.3 LTS y versiones posteriores
Enumera todas las conexiones del sistema.
Sintaxis
SHOW CONNECTIONS
También, puede usar SERVERS
en lugar de CONNECTIONS
.
Parámetros
Ninguno
Devoluciones
Conjunto de resultados de conexiones con las columnas siguientes:
name STRING NOT NULL
: nombres de conexiones en el metastore.connection_type STRING NOT NULL
: el tipo de la conexión. Por ejemplo:postgresql
.created_at STRING NOT NULL
: la marca de tiempo de cuando se creó la conexión, en formatoISO 8601
.created_by STRING NOT NULL
: entidad de seguridad que creó la conexión.comment STRING
: un comentario opcional especificado por el usuario sobre una conexión.
Ejemplos
> SHOW CONNECTIONS;
name connection_type created_at created_by comment
------------------- --------------- ---------------------------- ------------- ---------------------
mysql_connection mysql 2022-01-01T00:00:00.000+0000 alf@melmak.et mysql connection
postgres_connection postgresql 2022-06-12T13:30:00.000+0000 alf@melmak.et postgresql connection