有问题文章留言 看内容决定收费与免费
另外接收数据库质疑 勒索病毒数据恢复等项目。

安装加密锁驱动提示“sp_addextendedproc xp_msgetcode81,xphbsys81.dll”错误。

【问】安装加密锁驱动提示“sp_addextendedproc xp_msgetcode81,xphbsys81.dll”错误。
【适用版本】专卖店8 【模块】基本档案 【点击数】429
【知识编号】Z2013110800011
【问题描述】

【答】 –请备份好数据库执行以下语句:–由于master 中sp_addextendedproc 丢失
–打开查询分析器,执行以下语句重建sp_addextendedproc
use master
if exists(select * from sysobjects where name =’sp_addextendedproc’ )
drop procedure sp_addextendedproc
go
create procedure sp_addextendedproc — 1996/08/30 20:13
@functname nvarchar(517), /* (owner.)name of function to call */
@dllname varchar(255) /* name of DLL containing function */
as
/*
** If we’re in a transaction, disallow the addition of the
** extended stored procedure.
*/
set implicit_transactions off
if @@trancount > 0
begin
raiserror(15002,-1,-1,’sp_addextendedproc’)
return (1)
end
— Disallow 0-length string & NULL
if @dllname is null or datalength(@dllname) = 0
begin
raiserror(15311,-1,-1,@dllname)
return (1)
end
/*
** Create the extended procedure mapping.
*/
dbcc addextendedproc( @functname, @dllname)
return (0) — sp_addextendedproc
GO

赞(0)
未经允许不得转载:思迅软件知识库 » 安装加密锁驱动提示“sp_addextendedproc xp_msgetcode81,xphbsys81.dll”错误。
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址