23 lines
400 B
Markdown
23 lines
400 B
Markdown
|
---
|
||
|
mapped_pages:
|
||
|
- https://www.elastic.co/guide/en/elasticsearch/reference/current/sql-syntax-show-catalogs.html
|
||
|
---
|
||
|
|
||
|
# SHOW CATALOGS [sql-syntax-show-catalogs]
|
||
|
|
||
|
```sql
|
||
|
SHOW CATALOGS
|
||
|
```
|
||
|
|
||
|
**Description**: List the available catalogs and their types.
|
||
|
|
||
|
```sql
|
||
|
SHOW CATALOGS;
|
||
|
|
||
|
name | type
|
||
|
------------------+---------------
|
||
|
javaRestTest |local
|
||
|
my_remote_cluster |remote
|
||
|
```
|
||
|
|