I'm trying to select from a few tables in different servers using SQL Server 2008. This is the script I'm using:
exec sp_addlinkedserver @server = '192.168.5.208'
select * from [192.168.5.208].[hrm2].[dbo].tb_mt_pim
but it doesn't work. It returns a message
'Login failed. The login is from an untrusted domain and cannot be used with windows authentication'
Can someone tell me why?