• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    SQL Server 文件操作方法

    在master数据库中,SQL Server提供系统扩展的存储过程,其中有一些存储过程的命名以xp_开头,用于处理操作系统的文件。

    一,判断文件是否存在

    存储过程sys.xp_fileexist 用于判断文件是否存在,参数是文件(file)的路径或目录的路径:

    exec master.sys.xp_fileexist 'D:\test.txt'

    该存储过程返回的结果集有一行数据,三个字段,如下图:

    二,创建子目录

    存储过程 sys.xp_create_subdir 用于创建子目录,参数是子目录的路径:

    exec master.sys.xp_create_subdir 'D:\test'

    执行存储过程,系统返回消息:Command(s) completed successfully,说明子目录创建成功。

    三,查看子目录结构

    存储过程sys.xp_dirtree 用于显示当前目录的子目录,该存储过程有三个参数:

    exec master.sys.xp_dirtree 'D:\data'

    该存储过程返回的字段有子目录名称和相对深度,返回的结果中并没有显示子目录的父子关系:

    四,删除文件

    存储过程 sys.xp_delete_file 用于删除文件,该存储过程有5个参数:

    该存储过程并不可以删除所有的文件,系统限制它只能删除特定类型的文件。

    declare @Date datetime = dateadd(day,-30,getdate())
    exec master.sys.xp_delete_file 0,'D:\test\','bak',@Date,0

    五,查看磁盘驱动的空闲空间

    存储过程 sys.xp_fixeddrives用于查看磁盘驱动器剩余(free)的空间

    exec sys.xp_fixeddrives

    六,执行DOS命令操作文件

    存储过程sys.xp_cmdshell 用于执行DOS命令,该功能对应SQL Server系统的xp_cmdshell高级选项,默认情况下,该选项是禁用的,执行该存储过程,系统会抛出错误消息:

    SQL Server blocked access to procedure 'sys.xp_cmdshell' of component 'xp_cmdshell' because this component is turned off as part of the security configuration for this server. A system administrator can enable the use of 'xp_cmdshell' by using sp_configure. For more information about enabling 'xp_cmdshell', search for 'xp_cmdshell' in SQL Server Books Online.

    因此,在执行该存储过程之前,必须启用xp_cmdshell选项,由于启用该选项有潜在的风险,建议用户在执行代码之后,禁用该选项。

    1,启用/禁用xp_cmdshell选项

    xp_cmdshell选项属于系统的高级选项,执行以下代码,允许用户修改高级选项:

    -- To allow advanced options to be changed. 
    exec sp_configure 'show advanced options', 1; 
    go 
    -- To update the currently configured value for advanced options. 
    reconfigure; 
    go 

    使用以下代码启用xp_cmdshell选项:

    -- To enable the feature. 
    exec sp_configure 'xp_cmdshell', 1; 
    go 
    -- To update the currently configured value for this feature. 
    reconfigure; 
    go

    使用以下代码禁用xp_cmdshell选项:

    -- To disable the feature. 
    exec sp_configure 'xp_cmdshell', 0; 
    go 
    -- To update the currently configured value for this feature. 
    reconfigure; 
    go

    2,常用的DOS命令

    该存储过程使得用户可以通过TSQL命令执行DOS命令,

    exec sys.xp_cmdshell 'command_string'

    2.1 建立新文件或增加文件内容

    格式:ECHO 文件内容>file_name 

    exec master.dbo.xp_cmdshell 'echo abc > D:\sharetest.txt'

    2.2 查看文件内容

    格式:TYPE file_name

    exec master.dbo.xp_cmdshell 'type D:\sharetest.txt'

    2.3 复制文件

    格式: COPY  file_name  new_folder

    exec master.dbo.xp_cmdshell 'copy D:\testtest.txt D:\share'

    2.4 显示目录

    格式:DIR folder

    exec master.dbo.xp_cmdshell 'dir D:\share\'

    2.5 创建目录

    格式:MD folder_name

    exec master.dbo.xp_cmdshell 'md D:\sharetest'

    2.6 删除目录

    格式:RD folder

    exec master.dbo.xp_cmdshell 'rd D:\share\test'

    2.7 删除文件

    格式:DEL file_name

    exec master.dbo.xp_cmdshell 'del D:\share\test.txt'

    2.8 重命名文件

    格式:REN [盘符:][路径]〈旧文件名〉〈新文件名〉

    exec master.dbo.xp_cmdshell 'ren D:\test\test.txt new.txt'

    2.9 移动文件

    格式:MOVE  file_name new_folder

    exec master.dbo.xp_cmdshell 'move D:\test\new.txt D:\share\'

    2.10 切换目录

    格式:CD[盘符:][路径名][子目录名]

    总结

    以上所述是小编给大家介绍的SQL Server 文件操作方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

    您可能感兴趣的文章:
    • 完美解决SQL Server 安装问题:以前的某个程序安装已在安装计算机上创建挂起的文件操作
    • 没有SQL Server数据库时如何打开.MDF文件
    • SqlServer修改数据库文件及日志文件存放位置
    • SQL Server 压缩日志与减少SQL Server 文件大小的方法
    • 如何恢复SQL Server 2000损坏的数据库文件
    • 教你轻松恢复/修复SQL Server的MDF文件
    • SQL Server 2005删除日志文件的几种方法小结
    上一篇:SQL Server中T-SQL 数据类型转换详解
    下一篇:SqlServer 查询时日期格式化语句
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    SQL Server 文件操作方法 SQL,Server,文件,操作,方法,