1
Jun
realy easy:
select * from forum.dbo.tblauthor
select * from [database-name].[owner].[table]
Also useful to point out that if you are selecting from a database with - or other characters in the name then just use [:
select * from [rails-07-2].dbo.tblauthor
EASY!
0