Have an issue with a production job running against linked server - the user is part of the production team, so when they log-in to SQL Server, their credentials run against the respective production team and schema is run against dbo - and that is working fine, however, there is a particular job which references a lookup table from another server - where the schema owner changes to the users personal credentials, rather than dbo.
Secondly, the linked server object (Server Objects > Linked Server) has dropped the provider string details - it was setup as follows:
EXEC sp_addlinkedserver
@server='
@srvproduct='',
@provider='SQLNCLI',
@provstr = 'Provider=SQLNCLI;Data Source=
but now only the server name and provider (OLE DB) details remain?
Is there something i'm missing from the SQL side, or is this a hop/Kerberos issue?