I'm using the following statement to access tables in a remote SQL Server.
select IC.* from
openrowset('SQLOLEDB','CONNELLY7';'Hahs_IMRU_CAxF';'wallyworld',
'SELECT *
FROM Client') IC
The message returned is:
Login failed for user 'Hahs_IMRU_CAxF'. Reason: Not associated with a trusted SQL Server connection.
I have the user setup on CONNELLY7 with dbo.owner role permissions.
So is this related to the server I am making the call from OR have I duffed the user setup on CONNELLY7.
Thanks
select IC.* from
openrowset('SQLOLEDB','CONNELLY7';'Hahs_IMRU_CAxF';'wallyworld',
'SELECT *
FROM Client') IC
The message returned is:
Login failed for user 'Hahs_IMRU_CAxF'. Reason: Not associated with a trusted SQL Server connection.
I have the user setup on CONNELLY7 with dbo.owner role permissions.
So is this related to the server I am making the call from OR have I duffed the user setup on CONNELLY7.
Thanks