Question

I am trying to edit or view the SQL Agent's job (I am the owner of this job) from SSMS 2005 and I can't find out how to do this. When I am double-clicking a job or entering job's properties I get empty "New Job" window.

Is there some way to correct this behavior?

Was it helpful?

Solution

I ran into this problem a while back. I'm not entirely sure what caused it, but the fix was installing sp2 of sql server onto my local machine (or whichever machine you're using ssms on). the only documentation i found at the time suggested that that was the only solution.

OTHER TIPS

You can genereate SQL Script for SQL Job and then edit it. right click the job and then click generate SQL Script. Here you can also change the job properties with the sql sciript

I suggest you create a new job explicitly, then try editing your new job the same way and see what happens.

In particular, it's possible that your old job really is empty.

not sure what your issue with SSMS is. Maybe you dont have permission? Unless your sa you need to be a member of the SQLAgentOperatorRole in MSDB?

If you can still run queries then look at the sysjobs and sysjobsteps tables in the MSDB database, this has all the properties You can use the sp_update_job to modify the job

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top