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.
33
votes
5answers
62k views
How to export data from SQL Server 2005 to MySQL [closed]
I've been banging my head against SQL Server 2005 trying to get a lot of data out. I've been given a database with nearly 300 tables in it and I need to turn this into a MySQL database. My first ...
30
votes
9answers
74k views
How to export SQL Server 2005 query to CSV
I want to export some SQL Server 2005 data to CSV format (comma-separated with quotes). I can think of a lot of complicated ways to do it, but I want to do it the right way. I've looked at bcp, but I ...
1
vote
1answer
1k views
bcp import error with xml format file and identity column
I created a table in SQL server like:
CREATE TABLE [dbo].[
[myId] [smallint] IDENTITY(1,1) NOT NULL,
[name] [nchar](10) NOT NULL,
[value] [int] NOT NULL,
CONSTRAINT [PK_metadado] ...
1
vote
3answers
25k views
Use bcp to import csv file to sql 2005 or 2008
I have a csv file and i need to import it to a table in sql 2005 or 2008. The column names and count in the csv are different from the table column names and count. The csv is splitted by a ';' .
...
6
votes
5answers
22k views
export table to file with column headers (column names) using the bcp utility and SQL Server 2008
I have seen a number of hacks to try to get the bcp utility to export column names along with the data. If all I am doing is dumping a table to a text file what is the most straightforward method to ...
3
votes
1answer
2k views
Why does bcp output null when the column contains an empty string and empty string when the column is null?
This struck me as really weird behaviour and I spent a while checking for bugs in my code before I found this
"out copies from the database table or view to a file. If you specify an existing file, ...
3
votes
3answers
949 views
What are the binary storage formats for sqflt8, sqlmoney and other native SQL data types?
According to the documentation, native (binary) data can be imported or exported with bcp formatted in the native SQL Server data formats. Examples of these are SQLFLT8, SQLFLT4, SQLMONEY or ...
0
votes
1answer
3k views
SQL Server: The bulk load failed. The column is too long in the data file for row 1, column 1.
Somone please help me here. Been looking at this for a couple of hours now but leading to no where.
I created a table in SQL Express 2008 R2 using the following script:
CREATE TABLE Features
(
ID ...
6
votes
2answers
5k views
Best way to export/import MS Sql 2008 Geography data
(ANSWER) How to export some Geography data from a Microsoft Sql Server 2008.
You'll need to use the command line argument BCP to dump the data in it's original (native) format to a binary file. Then ...
4
votes
4answers
1k views
Does sybase 15 support the bcp api in java?
A long time ago I figured out that bcp is just a little C program that calls the special bit of the sybase client api to do mass data moving into the database. It lies cheats and steals and skips ...
4
votes
2answers
2k views
Getting bcp.exe to escape terminators
I need to export some data using SQL Server 2000's BCP utility. Sometimes my data contains characters, such as \t and \n, that I need to use as column and row terminators. How do I get BCP to escape ...
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 ...
2
votes
5answers
3k views
bcp command not working
I'm using the following bcp command
BCP "select * from PACIFIC.dbo.CEOExtractCorpRulesView with(nolock) "
queryout "d:\temp\CEOExtractCorpRulesView.txt"
-S"tcp:BCBWEC-VIRTD2\SQL2005" -c ...
2
votes
5answers
2k views
Can SQL Server bcp in a file with Unix line endings?
I'm trying to use the SQL Server bcp utility to import a text file from a samba share. bcp is choking on the Unix line endings. I'm sure I could add an intermediate step, either on Unix or Windows, to ...
1
vote
2answers
3k views
Using bcp utility to export SQL queries to a text file
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 ...
0
votes
1answer
133 views
Unprintable characters in bcp.exe output
I want is to dump three MSSQL Server tables using a batch job. I searched around and found bcp is highly recommended for this kind of work. Looking at the documentation, it seemed what I wanted was to ...
0
votes
4answers
1k views
BCP Double-quotes text qualifier output
I have a bcp command that is pushing the results of a query into a flat file that is comma delimited unicode. I need the fields to be encapsulated in double quotes with the text identifier being ...
0
votes
3answers
1k views
Bulk Load Files into SQL Azure?
I have an ASP.NET app that takes multimegabyte file uploads, writes them to disk, and later MSSQL 2008 loads them with BCP.
I would like to move the whole thing to Azure, but since there are no ...
0
votes
3answers
2k views
How to append EOF to file using Perl or Python?
I’m trying to bulk insert data to SQL server express database. When doing bcp from Windows XP command prompt, I get the following error:
C:\temp>bcp in -T -f -S
Starting copy...
SQLState = ...
0
votes
1answer
1k views
SQL Server Express 2005: How to import fixed width data using BCP
I’m trying to import fixed width data from text file into SQL Server Express using BCP. I have read some Microsoft’s web pages about this matter, but I haven’t got far with them. Can please give some ...
0
votes
1answer
236 views
