July 9, 2002 at 9:25 am
saw several jobs failed on the SQL Server, but from the job history, I couldn't see any reason for the failure. Then I checked the server logs, around that time, there was one entry:
Error: 50000, Severity: 0, State: 1
Is this severe? how to get more information about it?
Thanks a lot!
July 9, 2002 at 9:27 am
50000 and above are reserved for user defined errors.
If you can post more info, we might be able to help.
Steve Jones
July 9, 2002 at 10:21 am
thank you, Steve.
Can you tell me how to get more info? is there a table which you can find user defined errors?
It's a sql application, and the above are the only things I can think of checking....
July 9, 2002 at 10:35 am
Check the sysmessages table. For instance:
SELECT *
FROM sysmessages
WHERE error = 50000
K. Brian Kelley
http://www.sqlservercentral.com/columnists/bkelley/
K. Brian Kelley
@kbriankelley
July 10, 2002 at 8:10 pm
Yes to be more specific we need the error message after that. However the severity is 0 which usually is an informational message only 17 and above warrant major concern. See "Error Message Severity Levels" in SQL BOL for a bit of background.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
December 17, 2009 at 9:46 am
how can get more information about the Failed Job with error 50000
November 29, 2018 at 8:18 am
I got the 50000 error also on a SQL Agent Job. In my case Step 2 | Advanced | On success action drop down was 'Quit the job reporting failure'. Something easily overlooked and correct. This may be a good April 1st trick provided your stakeholders have a sense of humor.
March 2, 2022 at 8:49 am
The number 50000 is the default value when no error message number is supplied. You said you deleted some databases, it may be an application or service is still trying to connect to a deleted database and generating the error message.
You need to update your password because this is the first time you are signing in, or because your password has expired.
This may help you,
Rachel Gomez
Viewing 8 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply