The bcp utility is used to export data from Microsoft® SQL Server™ or SAP Sybase Adaptive Server Enterprise databases to a data file in a user-specified format. The Microsoft and Sybase versions have similar sytax, but can not be used interchangably.

learn more… | top users | synonyms

3
votes
1answer
167 views

Boost BCP doesn't output any files?

I'm trying to use the Boost Copy (BCP) utility to pull the normal_distribution class out of Boost. However, when I do bcp normal_distribution ./my_normal_distribution_dir, nothing appears in the ...
1
vote
1answer
29 views

INSERT INTO Linked SQL Server

I have a need to bulk insert circa 1m rows from one SQL Server (A) to another (B) on a daily basis. Server A hosts the records, and has access to Server B as a linked server. Both are SQL Server ...
1
vote
1answer
96 views

BCP fails to export (Unable to resolve column level collation)

First to warn you against "possible duplicate" badge - I searched Stackoweflow as well as many other resources. The code below is the result of my "creative" effort of trying to deal with the error - ...
1
vote
1answer
252 views

Put bcp inside a transaction with another tsql statement

After a bcp output command from tsql did its work (export a file) you generally want to cleanup the source afterwards. This typically involves truncating the source table or setting a flag that the ...
1
vote
1answer
579 views

BCP exits with code 0

When running BCP from my Java application it exits with status code 0 when 1 is expected. I run bcp with an invalid combination of data and formatting file and bcp gives the following error: Starting ...
1
vote
1answer
584 views

Sybase bcp doesn't export field headers?

Does anybody know to force sybase bcp to export column headers along with data? The utility documentation curiously ignores this important feature..., perhaps I missing something. Any help will be ...
1
vote
1answer
215 views

Are there wildcards for BCP?

I'm trying to run a command script that executes a BCP utility. I want it to be able to find any files with a specific file name format, for example, fileyyyymmdd.dat. Is there any way of replacing ...
1
vote
1answer
316 views

incoherence in bcp command execution

I execute a bcp command in 2 computer. The first computer has windows xp and second one has windows server 2003. when I execute command in first, the bcp run successfully but when I run this on second ...
0
votes
1answer
39 views

bcp out to master..XP_cmdshell stored procedure not working when executed from excel

I have a stored procedure that uses bcp to create csv files executed in the cmdshell. When I run the stored procedure in sql server 2012 it executes like I need it to. But when I run it from excel VBA ...
0
votes
1answer
367 views

T-SQL writing to a file txt or csv

I've spent all day scouring the net on answers. Apparently tsql doesn't have its own nifty write to file commands. Here is my dilemma I have a load file that I am creating where a single line can ...
0
votes
1answer
121 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
211 views

How to select specific column to import using BCP whithout configuration file?

I'm using BCP command to import, in SQL Server 2005, through of a configuration file. So: EXEC master..xp_cmdshell 'BCP database.dbo.table in d:\folder\foo.csv -f d:\folder\configuration.xml -c -t, ...
1
vote
0answers
210 views

BCP - Exported files (docx, xlsx & pptx) are corrupted

I am using the below bcp command to export the binary files from the filestream db and all other files are seems to be exported fine (i.e. txt, pdf, rtf, image files & etc) except docx, xlsx & ...
1
vote
0answers
71 views

In SQL SERVER 2008 part of heder data is occuring agin in the CSV file generated

Problem: In SQL SERVER 2008 part of heder data is occuring agin in the CSV file generated using BCP command. Table.columnname is part of header and we have 3000 columns to be extracted. Header length ...
1
vote
0answers
87 views

Read Native format bcp data file

With the Unix shell script, I am doing a bcp out from a table in Server1 using NATIVE format to a file - XXXX.bcpdat, then bcp in the file to a table of same structure in Server2. The bcp command we ...
1
vote
0answers
791 views

BCP file format for SQL bulk insert of CSV file

I'm trying a bulk insert of a csv file into a SQL table using BCP but can't fix this error: "The column is too long in the data file for row 1, column 2. Verify that the field terminator and row ...
1
vote
0answers
1k views

bcp: Error = [Microsoft][SQL Server Native Client 10.0]String data, right truncation

I have recently encountered an error while working with bcp. Here is the error. SQLState = 22001, NativeError = 0 Error = [Microsoft][SQL Server Native Client 10.0]String data, right truncation ...
1
vote
0answers
659 views

Terminate the running exec master..xp_cmdshell bcp select session when cancel button click in c# windows application

I had one issue in C# windows application. Here i am working with C# windows applications. My question like, i have one form with two buttons submit & cancel In button click i am staring one ...
1
vote
0answers
65 views

Automated way to get rid of a unwanted symbol

I have a pip file that needs to be imported in through BCP. I can do so if I take the little arrow symbol out manually. If I don't, I get an error. Is there a way to tell BCP to ignore that symbol ...
1
vote
0answers
152 views

Export import of asian languages data in sql server

I am using BCP to import and export data, but some of it is in an asian language (think chinese or korean). It is stored correctly in the SQL, at least that's what I see from SSMS, though the ...
1
vote
0answers
389 views

Reading BCP files in Java

Is there any Java library (or example code) for reading files produced by the command-line Microsoft Bulk Copy (BCP) utility, used for importing/exporting SQL Server data? Some similar work is done ...
1
vote
0answers
2k views

BCP to bulk insert into a single row/field

I'm trying to get BCP to insert the contents of a text file into a single field. Example file content Field1,field2,Field3 1,test,, 2,,test 3,test,test The following command ...
1
vote
0answers
600 views

bcp queryout “for xml path” delimiters

I am trying to export data to an XML file using bcp command with queryout and select... FOR XML PATH option. I have a test data of 5000 records. Expected output is: <row> ...
1
vote
0answers
834 views

BCP utility to create a format file, to import Excel data to SQL Server 2008 for BULK insertion

Am trying to import Excel 2003 data into SQL table for SQL Server 2008. Tried to add a linked server but have met with little success. Now am trying to check if there's a way to use the BCP utility ...
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
0answers
6 views

truncation while exporting data using BCP Utility, when comma is present in a column

I have a batch file which executes the below bcp utility command, which executes a procedure (contains simple select statement to get the data), to export data into .csv format. The fields are ...
0
votes
0answers
33 views

bcp '-C' option not supported

I have bcp version#11.0.1790.0 installed in Linux machine. I want to "bcp in" data to SQL Server from a data file. My data file is in UTF-8 format and I want to load the data to sql server in ISO_1 ...
0
votes
0answers
70 views

step to use bcp to transfer records from file to table in MS sql server 2008

i am new to bcp, i have a remote ms sql server, Server Host : myHomeDatabaser.bytt.com; port 1433; User : name, Password pass. i just opned my command promt and executed below command but it is not ...
0
votes
0answers
35 views

bcp error : Establishing connection failed

I am trying to execute bcp from my linux as command line. bcp MYDB.dbo.My_Table in /home/butt/files/MY_TABLE.dat -c -t "|" -S myserver.host.name.com -U name -P password database type : sql server ...
0
votes
0answers
83 views

Invoke-sqlcmd unexpected behaviour

I am using invoke-sqlcmd to bcp out a file. All appears to be fins and dandy, except when I try to delete the file before creating it. It then takes a random time before the file is available. Any ...
0
votes
0answers
311 views

How to Export a Sql table to csv in Sql Server 2008 r2

I want to export a table to a csv file using sql queries.. I used few bcp batch files which returns errors: Query declare @sql varchar(8000) select @sql = 'bcp Akt.dbo.csvTest out D:\Akt\Akt.txt -c ...
0
votes
0answers
259 views

BCP queryout command creates text file but hangs when executed within a job step in a transaction

Okay, I've been battling with this problem for almost a week now and I cannot for the life of me figure out what the issue is. Problem: BCP utility creates txt file but nothing happens after. The ...
0
votes
0answers
280 views

bcp.exe does not copy rows but there is no error

I am new to bcp which i am trying to figure out. I have table in sql server CREATE TABLE dbo.SL_REQUEST_ID ( requestId numeric(10,0) NOT NULL, CONSTRAINT X_requestId PRIMARY KEY CLUSTERED ...
0
votes
0answers
136 views

Best Way to avoid duplicate rows insertion like bcp

I am using sql server 2008 enterprise edition. I need to insert large number of rows to my table frequently. I have a primary key column in my table that has the hash value by computing 3 columns of ...
0
votes
0answers
87 views

Hide BCP Process Message from c# console application

I execute a bcp process from my console application. I am using the same console window to display bcp messages. Now I want to hide all messages that are displayed by this bcp process. Here is my ...
0
votes
0answers
322 views

Bulk Insert column is too long

I have a text file with fixed length data. Here's my table: create table myBulkInsert( MaxData Varchar(Max) ) x.fmt contains: 10.0 1 1 SQLCHAR 8 0 "" 1 MaxData ...
0
votes
0answers
36 views

Insert same batch number for BCP in staging table

I am inserting data from CSV file to the staging table using BCP. For some reason i dont want to delete the data in the staging table. So i need some identity by which i can process the data whenever ...
0
votes
0answers
90 views

How to solve bcp utility error

I have get the next error when try to start bcp utility (bcp.exe) I just want to see the help information for this command. I tried next: c:\Program Files\Microsoft SQL Server\100\Tools\Binn>bcp.exe ...
0
votes
0answers
171 views

Can't write bcp export file from MSSQL

Okay. I'm at wit's end and haven't found a posting that addresses my problem completely. I'm new to C# and I'm unfamiliar with databases. What I do know is I must output a data file into a 'native' ...
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
0answers
134 views

default size for bcp out with sybase + .net

When i run bcp out with sybase in .net using processinfo class and batchfile and when data is big then bcp out process hang after file with size 2 MB is generated. I am not aware whether it is sybase ...
0
votes
0answers
525 views

Bulk load data conversion error (overflow)

I have been racking my brain trying to figure out this error. I just don't get it. SQL Server Database Error: Bulk load data conversion error (overflow) for row 1, column 1 (CUR_CLM_UNIQ_ID). ...
0
votes
0answers
197 views

SQL BCP isn’t working from SQL server 2008 but it does from CMD

I’m using this command to run the BCP in sql server 2008: SQL: EXEC SEKURA.dbo.SP_REPORTE_AUTOM_CARTERA_PASIVA ''05/10/2012'' DATE: 5OCT2012 FILENAME: Cartera_Pasiva_5OCT2012_561608.xls FILEROUTE: ...
0
votes
0answers
163 views

BCP command to create file from temporary table failed in SQL Server 2000 degugger

I created a procedure which use the BCP command to create the file from a global temporary table. When the procedure is executed in Query Analyzer, process is completed and file is created. But If I ...
0
votes
0answers
63 views

SQL,BCP,DATA load erroing out

I use BCP Utility of SQL server to load data into the SQL Srvr (Java EE Platform). One particular value in the file has the length of 100000000.9. This is being converted into exponential value, and ...
0
votes
0answers
72 views

BCP Host Error .bat csv upload to sql server 2005

I am importing a file from coreftp on our reporting server into the SQL Server for formatting to be then saved back down as CSV. I have the table created and the userid set up with full access to the ...
0
votes
0answers
822 views

Export data to textfile from 'bcp' (xp_cmdshell) - how to get it to work dynamic in a trigger?

If i make the trigger like this, it works: (when using static vakue 55) CREATE TRIGGER [dbo].[Item_MyTrigger] on [dbo].[Item] after UPDATE AS IF @@ROWCOUNT = 0 RETURN /* No rows updated, exit ...
0
votes
0answers
404 views

BCP… queryout execution erroneously returns zero rows where data is know to exist

I have written a BCP process with queryout as option. As a result the query is exectuted and the results are (or should be) written to the designated output file. The query that is being used has ...
0
votes
0answers
474 views

Move File to FTP

Thank you so much for helping me to do this recursive function to move every file in the folder. But now i encounter another question. I have to change the destination path to become sftp. Since it ...
0
votes
0answers
227 views

Unable to update the table of SQL Server with BCP utility

We have a database table that we pre-populate with data as part of our deployment procedure. Since one of the columns is binary (it's a binary serialized object) we use BCP to copy the data into the ...

1 2