All the tables in my schema have a prefix of dbo. Now in my sql statements, I don\'t like using dbo.tablename all the time. Any workarounds or configuration changes?
just like this, if all your table are in dbo schema
use mydatabase go select * from mytable
if you have multiple databases you can do it too:
select * from mydatabase..mytable