在SQL脚本中进行文件的读写

  在SQL脚本中进行文件的读写
 
  首先需要开启xp_cmdshell
[sql] 
sp_configure ‘show advanced options‘,1  
reconfigure  
go  
sp_configure ‘xp_cmdshell‘,1  
reconfigure  
go  

  然后再SQL中插入:

[sql] 
Declare @Path varchar(5000)  
Set @Path=‘E:\Test.txt‘   
declare @Command varchar(5000)  
set @Command=‘echo "Hello World Rex">‘ + @Path  
exec master..xp_cmdshell @Command  
 
或
[sql] 
Declare @Path varchar(5000)  
Set @Path=‘E:\Test.txt‘   
declare @Command varchar(5000)  
set @Command=‘echo "‘+@<strong>MyVarible</strong>+‘">‘ + @Path  
exec master..xp_cmdshell @Command  

  

文章来源:在SQL脚本中进行文件的读写

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。