zoukankan      html  css  js  c++  java
  • sql server 2005 ,恢复xp_cmdshell的办法

    显示行号 复制代码 这是一段程序代码。
    1. --打开
    2. EXEC sp_configure 'show advanced options', 1;
      RECONFIGURE;
      EXEC sp_configure 'xp_cmdshell', 1;
      RECONFIGURE;
      --关闭
    3. EXEC sp_configure 'show advanced options', 1;
      RECONFIGURE;
      EXEC sp_configure 'xp_cmdshell', 0;
      RECONFIGURE;
    显示行号 复制代码 这是一段程序代码。
    1. exec   master.dbo.xp_cmdshell   'dir   c:\'
  • 相关阅读:
    cuda thrust函数首次调用耗费时间比后续调用长原因
    poj2823/hdu3415
    hiho1515
    hiho147周
    hdu1864/2844/2159 背包基础题
    qt + opencv
    Matlab函数编译成dll供c调用
    无处不在的编程思想
    五步使用法——搞定XMLHttpRequest
    AJAX与传统Web开发比较
  • 原文地址:https://www.cnblogs.com/mmmhhhlll/p/1622893.html
Copyright © 2011-2022 走看看