Login or Sign Up to become a member!

EXPERTS, INFORMATION, IDEAS & KNOWLEDGE

Social bookmarker Add this

Fixing Cannot add, update, or delete a job that originated from an MSX Server Error after renaming a server

From Wiki

Jump to: navigation, search

Well this is one of those very friendly error messages that when you look at it you know immediately what is going on. Of course I am being sarcastic here. This happened to a client who was migrating their servers and backed up all the SQL Server 2000 Databases and restored them on the new machine they bought.

What happened is this, they named the new machine differently than the old machine. When you look at the jobs you can see them (and that’s about it). You can not delete, update or run these jobs. Unfortunately renaming the server was not an option for the client. I looked in the sysjobs table in the msdb database and found out that the name stored was the old servers name

  1. SELECT originating_server FROM msdb..sysjobs

I then updated the originating_server fields in the table with the new server name value and everything was fine after that. As far as I know this doesn't effect SQL server 7 since it stores (local) in the originating_server column


Contributed by: --SQLDenis 01:45, 25 June 2008 (GMT)

Part of SQL Server Admin Hacks

422 Rating: 2.3/5 (3 votes cast)