Home > error 14274 > error 14274 sql server 2000

Error 14274 Sql Server 2000

log in tour help Tour Start here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more sp_add_jobserver about hiring developers or posting ads with us Database Administrators Questions Tags Users Badges Unanswered sp_delete_job Ask Question _ Database Administrators Stack Exchange is a question and answer site for database professionals who wish to improve their database skills and sp_dropserver learn from others in the community. Join them; it only takes a minute: Sign up Here's how it works: Anybody can ask a question Anybody can answer The best answers are voted up and rise to the top Can't do any changes to a job in SQL 2000 up vote 1 down vote favorite I have a job in my SQL 2000 server, this job is used to execute a DTS, i want to change the schedule of this job. but every time i try to change of delete or stop this job i get the error message ERROR 14274: Cannot add, update, or delete a job (or its steps or schedules) that originated from an MSX server. The job was not saved. i have a system shutdown coming up in the weekend and i cant stop this job... sql-server-2000 jobs share|improve this question edited May 31 '12 at 12:18 Leigh Riffel 18.4k1053127 asked May 31 '12 at 7:30 AmmarR 1,94921225 add a comment| 1 Answer 1 active oldest votes up vote 0 down vote accepted It sounds like you might be facing this issue ... http://support.microsoft.com/kb/281642 After the Windows server name been changed, when trying to update or delete the jobs previously created in a SQL Server 2000 instance, you may receive the following error message: Error 14274: Cannot add, update, or delete a job (or its steps or schedules) that originated from an MSX server. The job was not saved. Here are the suggested steps to workaround the issue ... The best way to handle this problem after the rename process is to follow these steps: Rename the server back to the original name. Script out all of the jobs and then delete them. Rename the server to the new name. Add back the jobs by running the script generated from step 2. Additionally you can find more discussion/suggestions here ... http://blog.sqlauthority.com/2006/12/20/sql-server-fix-error-14274-cannot-add-update-or-delete-a-job-or-its-steps-or-schedules-that-originated-from-an-msx-server-the-job-was-not-saved/ share|improve this answer answered May 31 '12 at 7:39 Justin Jenkins 33115 Thanks, i just applied the script "update sysjobs set originating_server = 'thenewservername';" and it worked, i didnt want to change my

log in tour help Tour Start here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Database Administrators Questions Tags Users Badges Unanswered Ask Question _ Database Administrators Stack Exchange is a question and answer site for database professionals who wish to improve their database skills and learn from others in the community. Join them; it only takes a minute: Sign up Here's how it works: Anybody can ask a question Anybody can answer The best answers are voted up and http://dba.stackexchange.com/questions/18612/cant-do-any-changes-to-a-job-in-sql-2000 rise to the top Can't do any changes to a job in SQL 2000 up vote 1 down vote favorite I have a job in my SQL 2000 server, this job is used to execute a DTS, i want to change the schedule of this job. but every time i try to change of delete or stop this job i get the error message ERROR 14274: Cannot add, update, or delete a job (or its http://dba.stackexchange.com/questions/18612/cant-do-any-changes-to-a-job-in-sql-2000 steps or schedules) that originated from an MSX server. The job was not saved. i have a system shutdown coming up in the weekend and i cant stop this job... sql-server-2000 jobs share|improve this question edited May 31 '12 at 12:18 Leigh Riffel 18.4k1053127 asked May 31 '12 at 7:30 AmmarR 1,94921225 add a comment| 1 Answer 1 active oldest votes up vote 0 down vote accepted It sounds like you might be facing this issue ... http://support.microsoft.com/kb/281642 After the Windows server name been changed, when trying to update or delete the jobs previously created in a SQL Server 2000 instance, you may receive the following error message: Error 14274: Cannot add, update, or delete a job (or its steps or schedules) that originated from an MSX server. The job was not saved. Here are the suggested steps to workaround the issue ... The best way to handle this problem after the rename process is to follow these steps: Rename the server back to the original name. Script out all of the jobs and then delete them. Rename the server to the new name. Add back the jobs by running the script generated from step 2. Additionally you can find more discussion/suggestions here ... http://blog.sqlauthority.com/2006/12/20/sql-server-fix-error-14274-cannot-add-update-or-delete-a-job-or-its-steps-or-schedules-that-originated-from-an-msx-server-the-job-was-not-saved/ share|improve this answer answered May 31 '12 at 7:39 Justin Jenkins 33115 Thanks, i just applied the

SQL Server experts to answer whatever question you can come up with. Our new SQL Server http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=186495 Forums are live! Come on over! We've restricted the ability to http://www.sqlbackuprestore.com/error14274.htm create new threads on these forums. SQL Server Forums Profile | ActiveTopics | Members | Search | ForumFAQ Register Now and get your question answered! Username: Password: Save Password Forgot your Password? All Forums SQL Server 2008 Forums Transact-SQL (2008) Cannot add, update, or delete a job error 14274 (or its steps Reply to Topic Printer Friendly Author Topic rosetulip Starting Member 15 Posts Posted-06/28/2013: 23:58:43 I have a trouble to merge two jobs into a master script file by sharing the same globalization declaration. If I run separately, it works fine.The two jobs are testdbname jobtestnewdb jobIt comes up with the following errorsI error 14274 sql got many these messageMsg 14274, Level 16, State 1, Procedure sp_add_job, Line 132Cannot add, update, or delete a job (or its steps or schedules) that originated from an MSX server.Msg 14274, Level 16, State 1, Procedure sp_add_job, Line 132Cannot add, update, or delete a job (or its steps or schedules) that originated from an MSX server.Msg 14274, Level 16, State 1, Procedure sp_add_job, Line 132 Here is two job scriptUSE [msdb]GODECLARE @LLC_DATABASE_NAME NVARCHAR(100) = N'LLC'DECLARE @LLC_LOG_IN_NAME NVARCHAR(100) = N'LLC'DECLARE @Roll_Back_Server NVARCHAR(100) = N'(local)'IF EXISTS (SELECT job_id FROM msdb.dbo.sysjobs_view WHERE name = N'testdbname')EXEC sp_delete_job @job_name = N' testdbname' , @delete_unused_schedule=1IF EXISTS (SELECT job_id FROM msdb.dbo.sysjobs_view WHERE name = N'testnewdb')EXEC sp_delete_job @job_name = N'testnewdb' , @delete_unused_schedule=1/****** Object: Job [testdbname] Script Date: 06/25/2013 16:41:15 ******/BEGIN TRANSACTIONDECLARE @ReturnCode INTSELECT @ReturnCode = 0/****** Object: JobCategory [Database Maintenance] Script Date: 06/25/2013 16:41:15 ******/IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'Database Maintenance' AND category_class=1)BEGINEXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'Database Maintenance'IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollbackEND-- testdbname jobDECLARE @jobId BINARY(16)EXEC @ReturnCode = msdb.dbo.sp_add_job

transaction log Backing up the tail Inside the transaction log So, what's in a backup file? Test: A full backup does not contain deleted data Verifying backup files Verifying backup files on a budget Cumulative backups Recovering individual tables Backup and restore history details Backup reads and writes Speeding up backups Backup speed details Speeding up restores Restore state affects speed too Backup and restore rights Log shipping Log shipping in SQL Server 2000 Setting up log shipping using Enterprise Manager Checking the set up Failover Log shipping in SQL Server 2005 Setting up log shipping using Management Studio Checking the set up Log shipping status report Failover Log shipping in SQL Backup Using the CopyTool utility Failover 3rd party backup applications VDI VDI versions VDI errors SQL Backup - beyond compression Restoring a chain of transaction log backups Restoring to the latest possible state Backing up multiple databases Backup retention Making a copy of the backup file Backup file naming conventions Restoring the latest backup set Network resilience Encryption Integrated database verification Database file relocation Improved backup retention RESTORE HELP High-availability group support Common SQL Backup issues Installation checklist Setting up rights Configuring service rights Backup data Hanging issues Common backup and restore errors Error 3201 - when performing a backup to a network share Full database backup file is larger than database size Error 3205 - Too many backup devices specified for backup or restore Error 4305 - an earlier transaction log backup is required Bringing a database that is in recovery or read-only mode online Using bulk-logged recovery model but transaction log backup is still large Error 14274 - unable to delete SQL Server Agent job

 

Related content

error 14274 msx

Error Msx table id toc tbody tr td div id toctitle Contents div ul li a href Cannot Delete Job Originated Msx Server a li li a href Sp dropserver a li ul td tr tbody table p SERVER - Fix Error Cannot add update or delete a job or its steps or schedules that originated relatedl from an MSX server The job was error sql server not saved December Pinal DaveSQL SQL Server SQL Tips error cannot add update msx server and Tricks commentsTo fix the error which occurs after the Windows server name been changed when error delete

error 14274 cannot add update or delete msx server

Error Cannot Add Update Or Delete Msx Server table id toc tbody tr td div id toctitle Contents div ul li a href Sp add jobserver a li ul td tr tbody table p SERVER - Fix Error Cannot add update or delete a job or relatedl its steps or schedules that originated p h id Sp add jobserver p from an MSX server The job was not saved sp delete job December Pinal DaveSQL SQL Server SQL Tips and Tricks commentsTo fix the error sp dropserver which occurs after the Windows server name been changed when trying to update

error 14274 that originated from an msx server

Error That Originated From An Msx Server table id toc tbody tr td div id toctitle Contents div ul li a href Sp add jobserver a li ul td tr tbody table p SERVER - Fix Error Cannot add update or delete a job or its steps or schedules that originated from an relatedl MSX server The job was not saved p h id Sp add jobserver p December Pinal DaveSQL SQL Server SQL Tips and Tricks commentsTo sp delete job fix the error which occurs after the Windows server name been changed when trying to update or sp dropserver

error 14274 cannot add update delete

Error Cannot Add Update Delete table id toc tbody tr td div id toctitle Contents div ul li a href Sp delete job a li ul td tr tbody table p SERVER - Fix Error Cannot add update or delete a relatedl job or its steps or schedules that sp add jobserver originated from an MSX server The job was p h id Sp delete job p not saved December Pinal DaveSQL SQL Server SQL Tips and Tricks commentsTo sp dropserver fix the error which occurs after the Windows server name been changed when trying to update or delete the

error 14274

Error table id toc tbody tr td div id toctitle Contents div ul li a href Error Delete Job a li li a href Sp add jobserver a li li a href Sp dropserver a li ul td tr tbody table p SERVER - Fix Error Cannot add update or delete a job or its steps or schedules that originated relatedl from an MSX server The job was not error that originated from an msx server saved December Pinal DaveSQL SQL Server SQL Tips and p h id Error Delete Job p Tricks commentsTo fix the error which occurs after

error 14274 cannot add that originated from an msx server

Error Cannot Add That Originated From An Msx Server table id toc tbody tr td div id toctitle Contents div ul li a href Sp delete job a li ul td tr tbody table p games PC games sp add jobserver Windows games Windows phone games Entertainment All Entertainment p h id Sp delete job p Movies TV Music Business Education Business Students educators sp dropserver Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive Microsoft Health MSN Bing Microsoft Groove Microsoft Movies TV Devices Xbox

error 14274 cannot add update delete job msx server

Error Cannot Add Update Delete Job Msx Server table id toc tbody tr td div id toctitle Contents div ul li a href Sp add jobserver a li ul td tr tbody table p SERVER - Fix Error Cannot add update or delete a job or relatedl its steps or schedules that originated p h id Sp add jobserver p from an MSX server The job was not saved sp delete job December Pinal DaveSQL SQL Server SQL Tips and Tricks commentsTo fix the error sp dropserver which occurs after the Windows server name been changed when trying to update

error 14274 cannot add update or delete a job msx

Error Cannot Add Update Or Delete A Job Msx table id toc tbody tr td div id toctitle Contents div ul li a href Sp add jobserver a li li a href Sp dropserver a li ul td tr tbody table p games PC games p h id Sp add jobserver p Windows games Windows phone games Entertainment All Entertainment sp delete job Movies TV Music Business Education Business Students educators p h id Sp dropserver p Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive

error 14274 cannot msx server

Error Cannot Msx Server p SERVER - Fix Error Cannot add update or delete a job or its steps or schedules that relatedl originated from an MSX server The job sp add jobserver was not saved December Pinal DaveSQL SQL Server SQL sp delete job Tips and Tricks commentsTo fix the error which occurs after the Windows server name been changed sp dropserver when trying to update or delete the jobs previously created in a SQL Server instance or attaching msdb database Error Cannot add update or delete a job or its steps or schedules that originated from an MSX

error 14274 sql server

Error Sql Server table id toc tbody tr td div id toctitle Contents div ul li a href Sp add jobserver a li li a href Sp dropserver a li ul td tr tbody table p games PC games p h id Sp add jobserver p Windows games Windows phone games Entertainment All Entertainment sp delete job Movies TV Music Business Education Business Students educators p h id Sp dropserver p Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive Microsoft Health MSN Bing Microsoft Groove

error 14274 cannot

Error Cannot table id toc tbody tr td div id toctitle Contents div ul li a href Sp add jobserver a li li a href Sp dropserver a li ul td tr tbody table p games PC games p h id Sp add jobserver p Windows games Windows phone games Entertainment All Entertainment sp delete job Movies TV Music Business Education Business Students educators p h id Sp dropserver p Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive Microsoft Health MSN Bing Microsoft Groove Microsoft

error 14274 cannot add update delete job

Error Cannot Add Update Delete Job table id toc tbody tr td div id toctitle Contents div ul li a href Sp add jobserver a li li a href Sp dropserver a li ul td tr tbody table p games PC games p h id Sp add jobserver p Windows games Windows phone games Entertainment All Entertainment sp delete job Movies TV Music Business Education Business Students educators p h id Sp dropserver p Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive Microsoft Health MSN

error 14274 cannot add update or delete a job

Error Cannot Add Update Or Delete A Job table id toc tbody tr td div id toctitle Contents div ul li a href Sp add jobserver a li li a href Sp dropserver a li ul td tr tbody table p games PC games p h id Sp add jobserver p Windows games Windows phone games Entertainment All Entertainment sp delete job Movies TV Music Business Education Business Students educators p h id Sp dropserver p Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive Microsoft

error 14274 cannot add update originated msx server

Error Cannot Add Update Originated Msx Server p SERVER - Fix Error Cannot add update or delete a job or its steps relatedl or schedules that originated from an MSX sp add jobserver server The job was not saved December Pinal DaveSQL sp delete job SQL Server SQL Tips and Tricks commentsTo fix the error which occurs after the sp dropserver Windows server name been changed when trying to update or delete the jobs previously created in a SQL Server instance or attaching msdb database Error Cannot add update or delete a job or its steps or schedules that originated

error 14274 cannot add

Error Cannot Add table id toc tbody tr td div id toctitle Contents div ul li a href Sp delete job a li ul td tr tbody table p games PC games sp add jobserver Windows games Windows phone games Entertainment All Entertainment p h id Sp delete job p Movies TV Music Business Education Business Students educators sp dropserver Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive Microsoft Health MSN Bing Microsoft Groove Microsoft Movies TV Devices Xbox All Microsoft devices Microsoft Surface All

error 14274 cannot add update delete job msx

Error Cannot Add Update Delete Job Msx p SERVER - Fix Error Cannot add update or delete a job or relatedl its steps or schedules that originated sp add jobserver from an MSX server The job was not saved sp delete job December Pinal DaveSQL SQL Server SQL Tips and Tricks commentsTo fix the error sp dropserver which occurs after the Windows server name been changed when trying to update or delete the jobs previously created in a SQL Server instance or attaching msdb database Error Cannot add update or delete a job or its steps or schedules that originated

error 14274 cannot add update delete job sql server

Error Cannot Add Update Delete Job Sql Server table id toc tbody tr td div id toctitle Contents div ul li a href Sp dropserver a li ul td tr tbody table p SERVER - Fix Error Cannot add update or delete a job or its steps or schedules that originated from relatedl an MSX server The job was not saved sp add jobserver December Pinal DaveSQL SQL Server SQL Tips and Tricks commentsTo sp delete job fix the error which occurs after the Windows server name been changed when trying to update p h id Sp dropserver p or

error 14274 cannot add update delete job originated msx server

Error Cannot Add Update Delete Job Originated Msx Server table id toc tbody tr td div id toctitle Contents div ul li a href Sp delete job a li li a href Sp dropserver a li ul td tr tbody table p p p up Recent PostsRecent Posts Popular TopicsPopular Topics a href http www sqlservercentral com Forums Topic - - aspx http www sqlservercentral com Forums Topic - - aspx a Home Search Members Calendar Who's On Home SQL Server Administration Error Cannot add update or delete a Error Cannot add update or delete a job Rate Topic Display

error 14274 cannot add update

Error Cannot Add Update table id toc tbody tr td div id toctitle Contents div ul li a href Sp delete job a li ul td tr tbody table p games PC games sp add jobserver Windows games Windows phone games Entertainment All Entertainment p h id Sp delete job p Movies TV Music Business Education Business Students educators sp dropserver Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive Microsoft Health MSN Bing Microsoft Groove Microsoft Movies TV Devices Xbox All Microsoft devices Microsoft Surface

error 14274 cannot add update msx server

Error Cannot Add Update Msx Server table id toc tbody tr td div id toctitle Contents div ul li a href Sp dropserver a li ul td tr tbody table p SERVER - Fix Error Cannot add update or delete a job or its steps or schedules that originated from relatedl an MSX server The job was not saved sp add jobserver December Pinal DaveSQL SQL Server SQL Tips and Tricks sp delete job commentsTo fix the error which occurs after the Windows server name been changed when trying to p h id Sp dropserver p update or delete the

error 14274 cannot add update or delete

Error Cannot Add Update Or Delete p SERVER - Fix Error Cannot add update or delete a job or its steps relatedl or schedules that originated from an sp add jobserver MSX server The job was not saved December Pinal sp delete job DaveSQL SQL Server SQL Tips and Tricks commentsTo fix the error which occurs after sp dropserver the Windows server name been changed when trying to update or delete the jobs previously created in a SQL Server instance or attaching msdb database Error Cannot add update or delete a job or its steps or schedules that originated from

error 14274 sql

Error Sql table id toc tbody tr td div id toctitle Contents div ul li a href Sp delete job a li li a href Sp dropserver a li ul td tr tbody table p SERVER - Fix Error Cannot add update or delete a job or its steps or schedules that relatedl originated from an MSX server The job was sp add jobserver not saved December Pinal DaveSQL SQL Server SQL Tips p h id Sp delete job p and Tricks commentsTo fix the error which occurs after the Windows server name been changed when p h id Sp

error 14274 msx server

Error Msx Server table id toc tbody tr td div id toctitle Contents div ul li a href Sp add jobserver a li li a href Sp dropserver a li ul td tr tbody table p SERVER - Fix Error Cannot add update or delete a job or its steps or schedules that originated relatedl from an MSX server The job was p h id Sp add jobserver p not saved December Pinal DaveSQL SQL Server SQL Tips and sp delete job Tricks commentsTo fix the error which occurs after the Windows server name been changed when p h id

error 14274 sql 2000

Error Sql table id toc tbody tr td div id toctitle Contents div ul li a href Sp add jobserver a li ul td tr tbody table p SERVER - Fix Error Cannot add update or delete a job or its steps or schedules that originated from relatedl an MSX server The job was not p h id Sp add jobserver p saved December Pinal DaveSQL SQL Server SQL Tips and Tricks sp delete job commentsTo fix the error which occurs after the Windows server name been changed when trying to sp dropserver update or delete the jobs previously created

error 14274 delete job

Error Delete Job table id toc tbody tr td div id toctitle Contents div ul li a href Error Cannot Add Update Msx Server a li li a href Sp add jobserver a li ul td tr tbody table p games PC games p h id Error Cannot Add Update Msx Server p Windows games Windows phone games Entertainment All Entertainment sql error Movies TV Music Business Education Business Students educators p h id Sp add jobserver p Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet sp delete job Explorer Microsoft