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:\'
  • 相关阅读:
    MM and Desinger
    db subsequent and synchronization(transfer)
    Thread concepts
    Threads concepts
    lucene article
    primary key
    lucene
    page procedure
    connection pool
    page procedures
  • 原文地址:https://www.cnblogs.com/mmmhhhlll/p/1622893.html
Copyright © 2011-2022 走看看