Hi @gyorgyjelinek,
It appears that the behavior you are experiencing is due to the default schema selection mechanism in Unity Catalog. When a new SQL Editor tab is opened, the default catalog is correctly set to the Unity Catalog you specified. However, instead of defaulting to the 'default' schema, it defaults to the first schema in alphabetical order, which in your case is 'archive'.
This behavior is consistent with the current implementation of Unity Catalog in Databricks. Unfortunately, there is no direct setting available to enforce the 'default' schema as the default schema in the SQL Editor when using Unity Catalog. The system defaults to the first schema in alphabetical order if no specific schema is mentioned.
To work around this, you can explicitly specify the schema in your queries or set the schema at the beginning of your SQL sessions using the `USE SCHEMA` command. For example:
USE SCHEMA default;
This command can be run at the start of your SQL session to ensure that the 'default' schema is used for subsequent queries.
Or simply use full path to the table for example:
SELECT * FROM catalog.schema.table