Use this reference to learn about the metadata available for Firebolt locations using the information schema.
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.
Column Name | Data Type | Description |
---|---|---|
location_name | TEXT | The name of the location. |
source | TEXT | The type of the external data source. Firebolt currently supports AMAZON_S3 and ICEBERG . |
url | TEXT | The data source URL. For Amazon S3, the format is s3://{bucket_name}/{path} . For Iceberg, this may be an S3 URL for file-based catalogs or an API endpoint for REST catalogs. |
description | TEXT | Optional metadata describing the location’s purpose. |
location_owner | TEXT | The owner of the location. |
created | TIMESTAMPTZ | The timestamp when the location was created. |
ddl | TEXT | The CREATE LOCATION statement used to create this location, with credentials masked for security. |
ddl
column contains the original CREATE LOCATION statement with credentials masked for security:
ddl
column is particularly useful for auditing and troubleshooting location configurations:
ddl
column contains the original CREATE LOCATION statement with all credential values replaced with ****
for security purposes.url
column may be NULL as the URL is specified within the catalog options.ddl
column preserves the original parameter names and structure used when the location was created.