Sql job

  • Hello,everyone

    I had a Sql job which is hung and later running for more than the time expected and their is custom error ( Error: 50000 Severity: 16 State: 1).So can anyone help me in how to fix this issue or can any one guide me to the right path in this issue.

    thanks,in advance

  • Check the sysmessages table. For instance:

    Run this syntax and send a result(more info)

    SELECT *

    FROM

    sysmessages

    WHERE error = 50000

  • mnagasrikanth219 (6/24/2011)


    Hello,everyone

    I had a Sql job which is hung and later running for more than the time expected and their is custom error ( Error: 50000 Severity: 16 State: 1).So can anyone help me in how to fix this issue or can any one guide me to the right path in this issue.

    thanks,in advance

    Need more info. post me a full error.

    Muthukkumaran Kaliyamoorthy
    https://www.sqlserverblogforum.com/

  • Execute the job and check the locks on the tables which those are using in this job and check the status of this job with the help of this query

    SELECT ST.TEXT,SP.SPID,WAITTIME,LASTWAITTYPE,CPU,PHYSICAL_IO,STATUS,HOSTNAME,PROGRAM_NAME,CMD,LOGINAME FROM SYS.SYSPROCESSES SP

    CROSS APPLY SYS.DM_EXEC_SQL_TEXT(SP.SQL_HANDLE) ST

    WHERE STATUS !='SLEEPING'

    ORDER BY CPU DESC

    Regards,
    Syed Jahanzaib Bin Hassan
    BSCS | MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA

    My Blog
    www.aureus-salah.com

  • Run the following syntax and ckeck:

    SELECT *

    FROM

    sysmessages

    WHERE error = 50000

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply