Skip to main content
You can use the information_schema.locations view to return information about each location in your Firebolt account. The view contains one row for each location. Use a SELECT query to return information about each location as shown in the example below. For a comprehensive guide to LOCATION objects including concepts, usage patterns, and best practices, see LOCATION objects.

Columns in information_schema.locations

Each row has the following columns with information about each location:

Examples

View all locations

The following query returns information about all locations in your account:

View locations by source type

You can filter locations by their source type:

View location DDL statements

The ddl column contains the original CREATE LOCATION statement with credentials masked for security:
Example output:

Find locations by owner

Audit and troubleshooting with DDL

The ddl column is particularly useful for auditing and troubleshooting location configurations:

Notes

  • All identifiers are case-insensitive unless enclosed in double-quotes.
  • The ddl column contains the original CREATE LOCATION statement with all credential values replaced with **** for security purposes.
  • For Iceberg locations using Databricks Unity catalogs, the url column may be NULL as the URL is specified within the catalog options.
  • The ddl column preserves the original parameter names and structure used when the location was created.
  • For more information about object identifiers, see Object identifiers.