Using bcp utility to export SQL queries to a text file

[亡魂溺海] 提交于 2019-11-27 15:07:47

问题


I debug a stored procedure (SQL Server 2005) and I need to find out some values in a datatable.

The procedure is run by an event of the application and I watch just the debugging output.

I do the following my stored procedure (SQL Server 2005), I took a system table (master.dbo.spt_values) as example:

set @logtext = 'select name, type from master.dbo.spt_values where number=6'
--set @logtext = 'master.dbo.spt_values'
SET @cmd = 'bcp ' + @logtext + ' out "c:\spt_values.dat" -U uId -P uPass -c'
EXEC master..XP_CMDSHELL @cmd 

So, when I uncomment the second like everything works, a file apprears on the C:\ drive... but if I coment it back leaving only the first line, any output is generated.

How to fix this problem?


回答1:


bcp out exports tables.

To export a query use queryout instead - you'll need to wrap your query in "double quotes"

set @logtext = '"select name, type from master.dbo.spt_values where number=6"' 
--set @logtext = 'master.dbo.spt_values' 
SET @cmd = 'bcp ' + @logtext + ' queryout "c:\spt_values.dat" -U uId -P uPass -c' 
EXEC master..XP_CMDSHELL @cmd  

http://msdn.microsoft.com/en-us/library/ms162802.aspx



来源:https://stackoverflow.com/questions/12140947/using-bcp-utility-to-export-sql-queries-to-a-text-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!