WPRKSPACES - In September 2025, Snowflake introduced Workspaces, which combines the functionality of Worksheets, Notebooks, File Manager, Query History, Results / Output, and the Database Explorer into a new, integrated development environment.
Workspaces will be the new default editor and replace Worksheets.
SHOW SCHEMAS IN ACCOUNT - All schemas from all databases are shown (based on current role).
SHOW TABLES IN ACCOUNT - All tables from all databases are shown (based on current role).
After table creation, Snowflake made some changes to the SQL behind the scenes are,
- Snowflake converted the TEXT data type to VARCHAR
- Snowflake added a comma and digit to represent the number of decimals in each NUMBER column.
select count(*) as schemas_found, '3' as schemas_expectedfrom GARDEN_PLANTS.INFORMATION_SCHEMA.SCHEMATAwhere schema_name in ('A','AA','AAA');
