You will need to set up a linked server (in Enterprise Manager) and then you can query a remote database:
select *
from [remote_server].[database_name].[owner].[table_name]
If you fully qualify it with the remote server name then you can use it as you would any other database.
Jeremy