能够在services.msc中看到sql server agent已经启动,但在management studio中却没有显示,不明白这是为什么???

解决方案 »

  1.   

    如果没有显示,就看不了下面有多少job.
      

  2.   

    --开启xp_cmdshell
    --SQL Server blocked access to procedure 'xp_cmdshell'
    sp_configure 'show advanced options', 1
    go
    reconfigure
    go
    sp_configure 'xp_cmdshell', 1
    go
    reconfigure
    go--开启sp_OACreate
    --SQL Server blocked access to procedure 'sys.sp_OACreate'
    sp_configure 'show advanced options', 1;
    go
    reconfigure;
    go
    sp_configure 'ole automation procedures', 1;
    go
    reconfigure;
    go
    sp_configure 'Ad Hoc Distributed Queries',1;
    go
    reconfigure
    go
      

  3.   

    应该在资源管理器中有sql server agent那一项。
      

  4.   

    SELECT * FROM MSDB..sysjobservers查一下吧