Tagged Questions
0
votes
2answers
327 views
xp_cmdshell bcp wont save file
EXEC xp_cmdshell 'bcp "SELECT lastconnectip FROM RF_USER.dbo.tbl_UserAccount" queryout "C:\test.txt" -T -c'
The command above runs, the output:
NULL
Starting copy...
1000 rows successfully ...
2
votes
1answer
394 views
BCP error near the keyword 'as'
I am new to using BCP but I am trying to extract data generated via a stored proc. This is a continuation of my original question which was a stored procedure with temp tables. This procedure has ...
2
votes
1answer
1k views
bcp in of datetime type data results in an “Invalid date / time format”
I am familiarizing myself with the bcp utility, and I have a large table containing datetime data awhich I bcp out in several ways: native, character, delimited.
I then bcp in to a truncated table ...