list_schemas
Retrieve all schema names from a specified Snowflake database to explore database structure and organize data objects.
Instructions
List all schemas in a database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | Database name to list schemas from |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "Database name to list schemas from",
"type": "string"
}
},
"required": [
"database"
],
"type": "object"
}