12/1/2023
How to set the default schema of a database in SQL Server
The following example changes the default schema of the user dbuser to dbo.
ALTER USER dbuser WITH DEFAULT_SCHEMA = dbo;