Re: Error from sp_getmessage
- From: Manish Negandhi <negandhi.manish@xxxxxxxxx>
- Date: Wed, 9 Apr 2008 04:08:34 -0700 (PDT)
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 -.
- Follow-Ups:
- Re: Error from sp_getmessage
- From: Kjellemann
- Re: Error from sp_getmessage
- References:
- Re: Error from sp_getmessage
- From: Manish Negandhi
- Re: Error from sp_getmessage
- From: Kjellemann
- Re: Error from sp_getmessage
- Prev by Date: Re: Error from sp_getmessage
- Next by Date: Re: OK, lets be serious - there *must* be a way to do this on ASE
- Previous by thread: Re: Error from sp_getmessage
- Next by thread: Re: Error from sp_getmessage
- Index(es):