Tagged Questions
0
votes
1answer
57 views
Executing bcp to export data from a stored procedure via cmd prompt WITHOUT xp_cmdshell
I want to run a series of scripts in command shell every day. These will be executed from windows / shell -NOT FROM SQL directly.
I'm using bcp on a stored procedure that reformats the data.
The ...
0
votes
1answer
119 views
SQL Server 2000 Truncate Deadlock
We are currently running a database on SQL Server 2000. The database constantly imports data from flat files for later querying. This process is done by a series of SQL Server stored procedures and ...
0
votes
1answer
59 views
Write second table of SP output to a CSV file via BCP
Im running SQL Server 2008 on winows server 2008 and I have a stored proc that outputs some information about a product entity with the inout as a product Id.
It outputs a reecord to represent the ...
0
votes
1answer
2k views
Simple way to use BCP to read and write from a SPROC
What is the simplest way to read and write files in a sproc using BCP?
1
vote
2answers
6k views
BCP out Error in SQL2000: SQLState = 37000, NativeError = 4060
I have created a proc that grabs all the user tables in a local DB on my machine. I want to be able to create a flat file of all my tables using BCP and SQL. Its a dummy database in SQL 2000 ...