Re: Error from sp_getmessage



You can try to update objspare for sysusermessages table to 0 and see
if that resolves your problem
It is a good idea to take backup your database before you execute the
update

here is how to do it..

user your_database
go
sp_configure 'allow update', 1
go

begin tran
update sysobjects
set objspare = 0
where name = 'sysusermessages'
go

--If 1 row affected: then commit otherwise rollback

-HTH
Manish Negandhi
[TeamSybase Intern]
sysobjects.objspare- Hide quoted text -
.