Drop Table

Support Forum for database administrators and web based access to important newsgroups related to databases
Register on Database Support Forum Edit your profileCalendarFind other Database Support forum membersFrequently Asked QuestionsSearch this forum -> 
For Database admins: Free Database-related Magazines Now Free shipping to Texas


Post New Thread










Thread
Author

sqlagent.out
Hello,

I have the following error message in the sqlagent.out file, looping
each minute.

2005-12-19 10:58:54 - ! [298] SQLServer Error: 14262, The specified
@job_id ('254D5C3B-CB1F-4B02-AD79-FF5AFE343E3B') does not exist.
[SQLSTATE 42000]  (ConnExecuteCachable
Op)

I restarted the sqlagent and ms-sqlserver service, but did not fix the
problem.

Thanks

Diane Lavoie


Report this thread to moderator Post Follow-up to this message
Old Post
dba999
12-19-05 04:23 PM


Re: sqlagent.out
Hi, Diane

Try the following:

USE msdb
SELECT plan_name FROM sysdbmaintplans p
INNER JOIN sysdbmaintplan_jobs pj ON p.plan_id=pj.plan_id
WHERE job_id NOT IN (SELECT job_id FROM sysjobs)

If you get any result from this query, delete and recreate the
specified DB Maintenance Plans.

Razvan


Report this thread to moderator Post Follow-up to this message
Old Post
Razvan Socol
12-19-05 06:23 PM


Re: sqlagent.out
Hi Razvan,

thanks for your reply, but the query does not return any row. I scanned
almost all tables in to found that jobid number but did found anything.

Each 20 seconds, there is an entry in the sqlagent.out and the
eventviewer windows log concerning this non-existent job.

Do you know anything about that  'ConnExecuteCachable
Op'. Seems it is the
exe looking for the job.

Diane


*** Sent via Developersdex http://www.droptable.com ***

Report this thread to moderator Post Follow-up to this message
Old Post
Diane Lavoie
12-19-05 06:23 PM


Re: sqlagent.out
Hi, Diane

Use Profiler to identify the statement and the program that calls this
job. If you do this on a production server, use some filters to see
only the relevant events (for example, database='msdb' and maybe
 hostname='yourserver
').

Razvan


Report this thread to moderator Post Follow-up to this message
Old Post
Razvan Socol
12-20-05 01:25 AM


Re: sqlagent.out
Hi Razvan,

I did the trace in the profiler and got the following:

EXECUTE msdb.dbo.sp_delete_job @job_id =
 0x3B5C4D251FCB024BAD
79FF5AFE343E3B


This job is executed each 10 seconds with the pid 72 which is the
sqlagent pid. This job does not exist in msdb.

Do I kill the pid 72 or maybe I should insert this job in the sysjobs
table of msdb......

Thanks
Diane


*** Sent via Developersdex http://www.droptable.com ***

Report this thread to moderator Post Follow-up to this message
Old Post
Diane Lavoie
12-20-05 01:25 AM


Re: sqlagent.out
Hi, Diane

Try executing the following:

DECLARE @job_id uniqueidentifier
EXEC sp_add_job @job_name='test', @job_id=@job_id OUTPUT
UPDATE sysjobs SET  job_id=0x3B5C4D251FC
 B024BAD79FF5AFE343E3
B
WHERE job_id=@job_id
EXEC sp_delete_job  @job_id=0x3B5C4D251F
 CB024BAD79FF5AFE343E
3B

If it is still executed, did set up log shipping sometime ? Or
transactional replication ? Do you have other servers (that may be
executing a job on this server) ?

Razvan


Report this thread to moderator Post Follow-up to this message
Old Post
Razvan Socol
12-20-05 08:23 AM


Sponsored Links





Last Thread Next Thread
Post New Thread

Microsoft SQL Server forum archive

Show a Printable Version Email This Page to Someone! Receive updates to this thread
Microsoft SQL Server
Access database support
PostgreSQL Replication
SQL Server ODBC
FoxPro Support
PostgreSQL pgAdmin
SQL Server Clustering
MySQL ODBC
Web Applications with dBASE
SQL Server CE
MySQL++
Sybase Database Support
MS SQL Full Text Search
PostgreSQL Administration
SQL Anywhere support
DB2 UDB Database
Paradox Database Support
Filemaker Database
Berkley DB
SQL 2000/2000i database
ASE Database
Forum Jump:
All times are GMT. The time now is 12:36 PM.

 
Mobile devices forum | Database support forum archive




Copyrights DropTable.com Database Support Forum 2004 - 2006