Gokhan Atil's Technology Blog

How To Find Storage Occupied by Each Internal Stage in Snowflake?

The account usage view has two views related to stages: STAGES and STAGE_STORAGE_USAGE_HISTORY. The STAGES view helps list all the stages defined in your account but does not show how much storage each stage consumes. The STAGE_STORAGE_USAGE_HISTORY view shows the total usage of all stages but doesn’t show detailed use.

I wrote the following script to list the internal stages (and their occupied storage) in all available databases:

Here is the step-by-step explanation of the above script: