如题!

解决方案 »

  1.   

    sp_configure 'Agent XPs',1
    reconfigure
    go
      

  2.   

    net start "SQL Server Agent (MSSQLSERVER)"
      

  3.   


    有没有这个选项..你自己执行一下不就知道了吗?..
    先开启高级选项..怎么开启.自己baiduexec sp_configure /*
    name                                minimum     maximum     config_value run_value
    ----------------------------------- ----------- ----------- ------------ -----------
    Ad Hoc Distributed Queries          0           1           1            1
    affinity I/O mask                   -2147483648 2147483647  0            0
    affinity mask                       -2147483648 2147483647  0            0
    Agent XPs                           0           1           1            1
    allow updates                       0           1           0            0
    awe enabled                         0           1           0            0
    backup compression default          0           1           0            0
    blocked process threshold (s)       0           86400       0            0
    c2 audit mode                       0           1           0            0
    ......
    ......
    */
      

  4.   


    Sorry, 原来是在2005里.
      

  5.   

    明白了,用
    sp_configure 'show advanced options', 1;
    GO
    sp_configure 'Agent XPs', 1;
    GO
    感谢小梁