Is there a way to set the schema for a query so that in the rest of the query I can refer to tables just by their name without prepending them with a schema name?
For instance, I would like to do something like this:
Use [schemaName]
select * from [tableName]
as opposed to this:
select * from [schemaName].[tableName]