使用BCP从SPROC读取和写入的简单方法

时间:2010-12-13 02:23:14

标签: sql-server-2008 stored-procedures bcp

使用BCP在sproc中读取和写入文件的最简单方法是什么?

1 个答案:

答案 0 :(得分:2)

为了在T-SQL中读取文件,我建议使用BULK INSERT语句而不是弄乱bcp。它们使用相同的底层机制,但是如果你已经在T-SQL存储过程中,最好不要跳到命令行域。

不幸的是,据我所知,没有SQL语句可以执行来编写文件。所以你不得不求助于exec master..xp_cmdshell @cmd这样的事情。您可以使用bcposql作为命令。如果您使用bcpthis page has a nice tutorial,但只是总结一下,这里有一些示例代码:

-- make a pipe delimited file... requires access to xp_cmdshell and the file system
declare @cmd varchar(8000)
select @cmd = 'bcp mydb.dbo.tblWhatever out "c:\bcp\tblWhatever.txt" -c –t| -T -S' + @@servername
exec master..xp_cmdshell @cmd