DOCUMENTATION
/
Getting Started
Guides
Developer
Reference
Releases
Tutorials
Snowflake Open Catalog
Status
  1. Overview
    • SQL data types reference
      • SQL command reference
          1. Query syntax
            • Query operators
              • General DDL
                • General DML
                  • All commands (alphabetical)
                    • Accounts
                      • Users, roles, & privileges
                        • Integrations
                          • Replication & failover
                            • Sessions
                              • Transactions
                                • Virtual warehouses & resource monitors
                                  • Databases, schemas, & shares
                                    • Tables, views, & sequences
                                      • Functions, procedures, & scripting
                                        • Streams & tasks
                                          • Classes & instances
                                            • Machine learning
                                              • Cortex Search Service
                                                • Listings
                                                  • Organization profiles
                                                    • Security
                                                      • Data Governance
                                                        • Privacy
                                                          • Data loading & unloading
                                                              1. Stage
                                                              2. CREATE STAGE
                                                                • ALTER STAGE
                                                                  • DROP STAGE
                                                                    • DESCRIBE STAGE
                                                                      • SHOW STAGES
                                                                        • File format
                                                                        • ALTER FILE FORMAT
                                                                          • CREATE FILE FORMAT
                                                                            • DESCRIBE FILE FORMAT
                                                                              • SHOW FILE FORMATS
                                                                                • DROP FILE FORMAT
                                                                                  • External volume
                                                                                  • CREATE EXTERNAL VOLUME
                                                                                    • ALTER EXTERNAL VOLUME
                                                                                      • DROP EXTERNAL VOLUME
                                                                                        • UNDROP EXTERNAL VOLUME
                                                                                          • SHOW EXTERNAL VOLUMES
                                                                                            • DESCRIBE EXTERNAL VOLUME
                                                                                              • Pipe
                                                                                              • ALTER PIPE
                                                                                                • CREATE PIPE
                                                                                                  • DESCRIBE PIPE
                                                                                                    • SHOW PIPE
                                                                                                      • DROP PIPE
                                                                                                        • Snowpipe Streaming
                                                                                                        • SHOW CHANNELS
                                                                                                          • Loading and unloading
                                                                                                          • COPY INTO
                                                                                                            • COPY INTO
                                                                                                              • File staging
                                                                                                                • Alerts
                                                                                                                  • Native Apps Framework
                                                                                                                    • Streamlit
                                                                                                                      • Notebook
                                                                                                                        • Snowpark Container Services
                                                                                                                          • Function and stored procedure reference
                                                                                                                            • Class reference
                                                                                                                              • Scripting reference
                                                                                                                                • General reference
                                                                                                                                  • API reference
                                                                                                                                    • ReferenceSQL command referenceData loading & unloadingSHOW EXTERNAL VOLUMES

                                                                                                                                      SHOW EXTERNAL VOLUMES¶

                                                                                                                                      Lists the external volumes in your account for which you have access privileges.

                                                                                                                                      The output returns external volume metadata and properties.

                                                                                                                                      See also:

                                                                                                                                      CREATE EXTERNAL VOLUME , DROP EXTERNAL VOLUME , ALTER EXTERNAL VOLUME , DESCRIBE EXTERNAL VOLUME

                                                                                                                                      Syntax¶

                                                                                                                                      SHOW EXTERNAL VOLUMES [ LIKE '' ]
                                                                                                                                      
                                                                                                                                      Copy

                                                                                                                                      Parameters¶

                                                                                                                                      LIKE 'pattern'

                                                                                                                                      Optionally filters the command output by object name. The filter uses case-insensitive pattern matching, with support for SQL wildcard characters (% and _).

                                                                                                                                      For example, the following patterns return the same results:

                                                                                                                                      ... LIKE '%testing%' ...
                                                                                                                                      ... LIKE '%TESTING%' ...

                                                                                                                                      . Default: No value (no filtering is applied to the output).

                                                                                                                                      Access control requirements¶

                                                                                                                                      A role used to execute this operation must have the following privileges at a minimum:

                                                                                                                                      Privilege

                                                                                                                                      Object

                                                                                                                                      Notes

                                                                                                                                      USAGE

                                                                                                                                      External volume

                                                                                                                                      To see a particular external volume in the output for SHOW EXTERNAL VOLUMES, a role must have the USAGE privilege on that external volume.

                                                                                                                                      For instructions on creating a custom role with a specified set of privileges, see Creating custom roles.

                                                                                                                                      For general information about roles and privilege grants for performing SQL actions on securable objects, see Overview of Access Control.

                                                                                                                                      Output¶

                                                                                                                                      The command output provides table properties and metadata in the following columns:

                                                                                                                                      Column

                                                                                                                                      Description

                                                                                                                                      name

                                                                                                                                      Name of the external volume.

                                                                                                                                      allow_writes

                                                                                                                                      Signifies whether Snowflake can write files to the storage location(s).

                                                                                                                                      comment

                                                                                                                                      Comment for the external volume.

                                                                                                                                      Usage notes¶

                                                                                                                                      • The command doesn’t require a running warehouse to execute.

                                                                                                                                      • The command only returns objects for which the current user’s current role has been granted at least one access privilege.

                                                                                                                                      • The MANAGE GRANTS access privilege implicitly allows its holder to see every object in the account. By default, only the account administrator (users with the ACCOUNTADMIN role) and security administrator (users with the SECURITYADMIN role) have the MANAGE GRANTS privilege.

                                                                                                                                      • To post-process the output of this command, you can use the RESULT_SCAN function, which treats the output as a table that can be queried. You can also use the pipe operator to query the output of this command.

                                                                                                                                      Examples¶

                                                                                                                                      Show all external volumes:

                                                                                                                                      SHOW EXTERNAL VOLUMES;
                                                                                                                                      
                                                                                                                                      Copy

                                                                                                                                      Show all the external volumes whose name starts with aws that you have privileges to view:

                                                                                                                                      SHOW EXTERNAL VOLUMES LIKE 'aws%';
                                                                                                                                      
                                                                                                                                      Copy

                                                                                                                                      Was this page helpful?

                                                                                                                                      Visit Snowflake
                                                                                                                                      Join the conversation
                                                                                                                                      Develop with Snowflake
                                                                                                                                      Share your feedback
                                                                                                                                      Read the latest on our blog
                                                                                                                                      Get your own certification
                                                                                                                                      Privacy NoticeSite Terms© 2025 Snowflake, Inc. All Rights Reserved.
                                                                                                                                      1. Syntax
                                                                                                                                      2. Parameters
                                                                                                                                      3. Access control requirements
                                                                                                                                      4. Output
                                                                                                                                      5. Usage notes
                                                                                                                                      6. Examples
                                                                                                                                Language: English
                                                                                                                                • English
                                                                                                                                • Français
                                                                                                                                • Deutsch
                                                                                                                                • 日本語
                                                                                                                                • 한국어
                                                                                                                                • Português