惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

宝玉的分享
宝玉的分享
NISL@THU
NISL@THU
E
Exploit-DB.com RSS Feed
L
LINUX DO - 热门话题
L
Lohrmann on Cybersecurity
K
Kaspersky official blog
Project Zero
Project Zero
Cisco Talos Blog
Cisco Talos Blog
T
The Exploit Database - CXSecurity.com
P
Palo Alto Networks Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
T
Threatpost
S
Schneier on Security
G
GRAHAM CLULEY
The Hacker News
The Hacker News
T
Threat Research - Cisco Blogs
Scott Helme
Scott Helme
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
P
Privacy & Cybersecurity Law Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Cyberwarzone
Cyberwarzone
C
CERT Recently Published Vulnerability Notes
T
Tor Project blog
AWS News Blog
AWS News Blog
Simon Willison's Weblog
Simon Willison's Weblog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
爱范儿
爱范儿
P
Privacy International News Feed
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
S
Securelist
G
Google Developers Blog
The Last Watchdog
The Last Watchdog
Google Online Security Blog
Google Online Security Blog
美团技术团队
F
Fortinet All Blogs
小众软件
小众软件
Recorded Future
Recorded Future
V
Visual Studio Blog
B
Blog RSS Feed
H
Help Net Security
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
Martin Fowler
Martin Fowler
Latest news
Latest news
Spread Privacy
Spread Privacy
H
Heimdal Security Blog

博客园 - 董晓涛

如何将存储过程执行后的结果集放入临时表 Detect SQL timeout from ASP & Issue RollbackTrans SQL Server 2005 symmetric encrytion sample Useful Links(to Learn SQL Server) Encrypting Data With the SQL Server Encrypt Function Convert IP To Numberic Generate table structure Generate Time Dim Generate Insert data script on a table. - 董晓涛 Execute T-SQL asynchronously Don't Use Select * Sql Server数据库被置疑后解决方法 SQL Server 2005中对BLOB的支持(ntext,text and image) SQL Server 2000 Service Pack 4 is released 数据规范化 Microsoft SQL Server 2005 and Vs.net 2005 April 2005 Version XML IN 20 MINUTES! CLR Integrated in SQL Server 2005 XQuery in SQL Server 2005
如何解决:Error 14274: 无法添加、更新或删除从MSX服务器上发起的作业.
董晓涛 · 2005-07-29 · via 博客园 - 董晓涛

刚才在QA环境创建SQL replication 的时候报错,大致如下:

Error 14274: 无法添加、更新或删除从MSX服务器上发起的作业.

导致Replication不能够成功,如按如下角本解决:

For example:tsql02\d2shp01

SP_CONFIGURE  'ALLOW UPDATES',1

RECONFIGURE  WITH  OVERRIDE 

GO 

use msdb;

go

begin tran

update  sysjobs  set  originating_server='TSQL02\d2whp01'

---please note:if error occur ,please rollback the tran

commit tran

go 

SP_CONFIGURE  'ALLOW UPDATES',0  RECONFIGURE  WITH  OVERRIDE 

GO

For Detail information:

错误场景:

windows主机名变更后,试图更新或者删除SQL Server2000之前创建的job时会出现14274的错误。 SQL 7.0不会出现该错误,但是在cluster环境中,将SQL 7.0虚拟服务器升级到SQL Server2000后也可能产生该错误。

错误原因:

msdb..sysjobs的列originating_server中保存了SQL Server 2000 instance的名字,其格式为'serverinstance'(SQL 7.0中为(local),故不受影响),当server名变更后,sysjobsoriginating_server并没有相应的更新成新的serverinstance

解决办法:

1.

server改回原来的名称
2.
将所有的job保存为script,然后删除
3.
server变更为新的名字
4.
依次执行第2步产生的script,恢复所有job

或者直接更新sysjobsoriginating_server
use  msdb  
go  
SP_CONFIGURE  'ALLOW UPDATES',1  RECONFIGURE  WITH  OVERRIDE  
GO  
update  sysjobs  set  originating_server=@@servername  
go  
SP_CONFIGURE  'ALLOW UPDATES',0  RECONFIGURE  WITH  OVERRIDE  
GO