We're running SQL Server 2005 with BizTalk 2006.
In the Application Event Viewer, there's a recurring warning Event ID 208: [SQL Server Scheduled Job 'TrackedMessages_Copy_BizTalkMsgBoxDb' (0xA63DAFB99BCC5743A8B28374C371F803) - Status: Failed - Invoked on: 2007-03-27 09:24:00 - Message: The job failed. The Job was invoked by Schedule 7 (Schedule). The last step to run was step 1 (Purge).].
So, I took a look at the Log File History for TrackedMessages_Copy_BizTalkMsgBoxDb job under COBIZDEV-2K3-2 > SQL Server Agent > Jobs in SQL Server Management Studio.
The tracked message reads as follows: Executed as user: NT AUTHORITY\SYSTEM. Could not find server 'COBIZDEV-2K3-2' in sysservers. Execute sp_addlinkedserver to add the server to sysservers. [SQLSTATE 42000] [Error 7202]. The step failed.
The workaround seems to be running this statement in sp_addlinkedserver: exec sp_addlinkedserver 'COBIZDEV-2K3-2', 'sql server'
However, I cannot find ,and not one seems to be able to specify, where sp_linkedserver is, how to locate it or how to use it.
Any help is appreciated.
In the Application Event Viewer, there's a recurring warning Event ID 208: [SQL Server Scheduled Job 'TrackedMessages_Copy_BizTalkMsgBoxDb' (0xA63DAFB99BCC5743A8B28374C371F803) - Status: Failed - Invoked on: 2007-03-27 09:24:00 - Message: The job failed. The Job was invoked by Schedule 7 (Schedule). The last step to run was step 1 (Purge).].
So, I took a look at the Log File History for TrackedMessages_Copy_BizTalkMsgBoxDb job under COBIZDEV-2K3-2 > SQL Server Agent > Jobs in SQL Server Management Studio.
The tracked message reads as follows: Executed as user: NT AUTHORITY\SYSTEM. Could not find server 'COBIZDEV-2K3-2' in sysservers. Execute sp_addlinkedserver to add the server to sysservers. [SQLSTATE 42000] [Error 7202]. The step failed.
The workaround seems to be running this statement in sp_addlinkedserver: exec sp_addlinkedserver 'COBIZDEV-2K3-2', 'sql server'
However, I cannot find ,and not one seems to be able to specify, where sp_linkedserver is, how to locate it or how to use it.
Any help is appreciated.