关于sqlsever 导出文件

这里使用xp_cmdshell命令。Mark一下。

注:如果操作SQL Server的用户没有SP_configure的使用权限,需要将对应用户添加"sysadmin"角色。

1、打开 xp_cmdshell 命令,方法如下:[推荐此方法,因为在任何版本的SQL SERVER中都可以使用。]
通过查询分析器,选择Master数据库,然后执行以下SQL内容:

sp_configure 'show advanced options',1
reconfigure
go
sp_configure 'xp_cmdshell',1
reconfigure
go

执行结果:

  配置选项 'show advanced options' 已从 0 更改为 1。请运行 RECONFIGURE 语句进行安装。
  配置选项 'xp_cmdshell' 已从 0 更改为 1。请运行 RECONFIGURE 语句进行安装。

如需关闭只需将“sp_configure 'xp_cmdshell',1”改为“sp_configure 'xp_cmdshell',0”即可。

2、执行导出表数据语句

EXEC master..xp_cmdshell

    'bcp " 数据库名.dbo.表名 " out c:\输出文件.xls -c -q -S"服务器地址(loaclhost或其他)" -U"用户名" -P"密码"'

你可能感兴趣的:(关于sqlsever 导出文件)