0
votes
0answers
14 views

Exporting SQl Table through VBA

I have created a procedure to export some tables from Sql to CSV. I am using xp_cmdshell bcp utility and loops to export sql table to csv file. When I am Executing through SQl Server 2012 it is ...
0
votes
2answers
24 views

BCP Parameter issues

I Hope I'm not re-asking.. but.. here's the pertinent section of my SQL. The view in question (vw_TempALlItems) is created in prior steps, and yes its created using column names, and paying attention ...
0
votes
0answers
85 views

No response from BCP command

I have got a xp_cmdshell - BCP query that runs fine on one machine but on another does not evoke any response what so ever. It looks as follows: exec master..xp_cmdshell 'bcp " select * from ...
0
votes
1answer
176 views

What is the most secure way to allow users to execute BCP export command from SQL?

I am currently working in an environment where the ability to export a table programatically from within a hand-run SQL script would be of great help. Performing the exports from script will be the ...
0
votes
1answer
2k views

xp_cmdshell Native Error 208, BCP in SQL Server 2008 R2

I've been trying to work on taking the result of a large and multiply-joined SELECT statement, and email the query result as a CVS file. I have the query correct and the emailing down, but I'm having ...
0
votes
4answers
2k views

using BCP to export stored procedure result in SQL Server 2008

Heyy, I'm trying to use BCP to export a SP result to a text file using this query: EXEC xp_cmdshell 'bcp "exec asmary..usp_Contract_SelectByEmpId -1,1" queryout "C:\test.txt" -w -C OEM -t$ -T -r ~ ...
1
vote
1answer
371 views

BCP Export Automatically Converts Empty Strings to NUL

All, in this post xp_cmdshell Query Length Too Large I managed to obtain a fix for a problem I was having with the query size limit using xp_cmdshell. The reason I was writing such a long query was to ...