Tagged Questions
The bcp utility copies data between an instance of Microsoft® SQL Serverâ„¢ 2000 and a data file in a user-specified format
17
votes
7answers
34k views
How to export data from SQL Server 2005 to MySQL
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 ...
15
votes
9answers
31k 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 ...
7
votes
6answers
316 views
What is the quickest way to import 60m records into SQL
I have a 5-6 tables in my database that I need to populate with test data to test peroformance in my app.
I can write a code and do a bulk insert my prediction is that it will take nearly 3 days to ...
5
votes
2answers
3k 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
588 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 ...
3
votes
5answers
241 views
Why did Boost's `bcp smart_ptr dir/` copy 6MB of source code?
So I wanted to separate out just the smart pointers from boost to use in my project and I was guided to use bcp utility.
Today I got it compiled and did bcp smart_ptr to_copy_to_my_project/.
The ...
3
votes
1answer
245 views
Rollback for bulk copy
I have an application that make a copy from my database by bulk copy class in c#.
Can I rollback the bulk copy action in sql server when occur an exception?
3
votes
2answers
652 views
BCP Command gives different output in SQL Server 2005 compared to 2008?
I have executed two identical bcp commands on two different setups with the same data.
Machine A = Windows Vista machine which is running SQL Server 2008
Machine B = Windows Server 2003 machine ...
3
votes
1answer
1k views
What is the difference between bulk copy (bcp) and bulk insert in SQL Server 2008?
What is the difference between bulk copy (bcp) and bulk insert?
Is there a switch to export all of the data in all of tables in a database for bcp?
3
votes
4answers
9k views
What is the best way to save XML data to SQL Server?
Is there a direct route that is pretty straight forward? (i.e. can SQL Server read XML)
Or, is it best to parse the XML and just transfer it in the usual way via ADO.Net either as individual rows or ...
2
votes
1answer
113 views
Can't identify reason for BULK INSERT errors
I'm trying to run this query (I also tried it without specifying FIELDTERMINATOR and ROWTERMINATOR). It's using a datafile that I am manually creating beforehand (not with bcp out).
BULK INSERT ...
2
votes
3answers
151 views
Why is BCP so fast?
So BCP for inserting data into a SQL Server DB is very very fast. What is is doing that makes it so fast?
2
votes
3answers
177 views
Bulk Copy from small table to larger one in SQL Server 2005
I'm a newbie in SQL Server and have the following dilemma:
I have two tables with the same structure. Call it runningTbl and finalTbl.
runningTbl contains about 600 000 to 1 million rows every 15 ...
2
votes
3answers
278 views
How to transfer data from a SQL Server Database to a Oracle Database
The current application I'm working lets call X is an archiving application for the data kept another application say Y. Both are very old applications developed about 8 odd years back. So far in my ...
2
votes
1answer
199 views
Where does the bcp format file go when created using the BCP utility?
I am trying to create a bcp format file for a table in my database using the bcp utility. Based on what I found here, I came up with the following cmd command:
bcp dbName..tableName format nul -c -f ...
2
votes
1answer
207 views
Why does bcp calculate such a large dependency list for Boost program_options?
I'm writing a small program using boost/program_options to handle options from command line. Now I want to distribute my code to systems where in general Boost is not installed. So I used the bcp ...
2
votes
2answers
521 views
BCP Function sequence error when running proc with parameters
I have been trying to create a stored procedure that uses dynamic SQL to assemble a bcp command to export data from a parameterized stored procedure to a csv file.
Was originally getting the host ...
2
votes
2answers
93 views
When SQL Server bcps into an empty table with an index what does it do internally?
If I have an empty table with an index and I do a bcp, does SQL Server (internally) drop/disable the index, load the data and then re-apply/enable/build the index?
2
votes
1answer
2k views
Run a shell command with arguments from powershell script
I need to extract and save a some tables from a remote SQL database using bcp. I would like to write a powershell script to invoke bcp for each table and save the data. So far I have this script that ...
2
votes
2answers
2k views
How do I use BCP or Sql Server Management Studio to get BLOB data out of Sql Server?
I'm sorry if this question has been asked already, but I couldn't find it anywhere. I have a table that stores files as BLOBS. The column that holds the file is an image datatype. I would like to be ...
2
votes
2answers
147 views
How to import data from a view in another database (in another server) into a table in SQL Server 2000?
I was thinking about using bcp command to solve the user authentication, but does a bcp command capable to import to a table in my database? By the way, I am using SQL Server 2000 environment.
Here's ...
2
votes
1answer
474 views
BCP database with period in name
I'm having trouble using the SQL BCP process to load up my tables with data. I'm calling it from a .NET application, so I execute the xp_cmdshell executable to run the bcp command. Here is what one of ...
2
votes
0answers
679 views
Can Sql Server BULK INSERT read from a named pipe/fifo?
Is it possible for BULK INSERT/bcp to read from a named pipe, fifo-style?
That is, rather than reading from a real text file, can BULK INSERT/bcp be made to read from a named pipe which is on the ...
2
votes
3answers
1k views
Why do I get “XML parsing: line 2, character 0, incorrect document syntax” when Bulk Inserting in MS SQL Server
I'm doing a BULK INSERT into a table using a FMT format file, but I get the following error:
XML parsing: line 2, character 0, incorrect document syntax
Here is my code
BULK INSERT ...
2
votes
2answers
919 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 ...
2
votes
5answers
1k 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 ...
2
votes
3answers
5k 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 ...
2
votes
2answers
1k views
Copying large amounts of data into a SQL CE database
If I have a large amount of data in memory, what is the best way to copy it into a SQL CE table? The current technology stack is C#, ADO.net, and SQL CE.
My initial idea was to do one INSERT ...
1
vote
3answers
33 views
Sql server BCP execute inside vb6
I want to execute a BCP command in a VB6 application, how can i do it?
I tried this code:
BCPCMD = " 'BCP ""SELECT * FROM TABLE"" QUERYOUT C:\FILE.TXT -c -t -T -S MYSERVER' "
sql = "EXEC ...
1
vote
0answers
26 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
2answers
138 views
Import a very large csv file to an existing SQL Server table
I have a very large csv file with ~500 columns, ~350k rows, which I am trying to import into an existing SQL Server table.
I have tried BULK INSERT, I get - Query executed successfully, 0 rows ...
1
vote
1answer
55 views
Primary key violation on trivial BCP insert
I'm trying out the BCP utility on SQL Server 2008 Express. I don't think that what I'm trying to do could be more trivial, but still I'm getting a primary key violation when trying to insert two rows ...
1
vote
2answers
102 views
SQL Server BCP utility best separator character to use
I am sure many would came across this scenario.
Whenever we use SQL Server BCP utility to import/export data to-from delimited text files, which is the best "Separator Character" to use. We have ...
1
vote
0answers
85 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
3answers
95 views
Upgrading to SQL Server 2008: Upgrading a VS2005 .NET program that uses BCP
I have VS2005 .NET C# program. My understanding is that VS2005 targeted only the 2.0 version of the .NET FW. The program uses the Bulk copy object. I believe the source dll of this object is the ...
1
vote
1answer
112 views
Uploading multi-line records into SQL Server
We receive fixed length datasets from a client that look something like this:
1 SOMEFILE 20110922
2 20110101ABC999
3 JOHN SMITH 19800201
4 5000000 1000
2 20060101DEF999
3 JANE ...
1
vote
1answer
233 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
3answers
126 views
How to get build to fail when running bcp from an msbuild script?
As part of sql server 2005, there is the bulk copy command "bcp.exe" (http://msdn.microsoft.com/en-us/library/ms162802%28SQL.90%29.aspx)
We are running the bcp command from our msbuild script using ...
1
vote
1answer
464 views
BCP export with a comma row delimiter
I currently have a sproc that is exporting data to a csv file using bcp. It currently works fine except due to a change of requirment the file no longer can have a '\n' row delimiter and must now ...
1
vote
3answers
64 views
Is it possible to load a subset of columns using Sybase 15 bcp?
I have a CSV file with 20 or so columns and I want to load it into a table with only 9 columns - I want to throw away the rest.
Can I do it directly with bcp or do I need to preprocess the file to ...
1
vote
4answers
510 views
bcp command not working
I am using the below bcp command
BCP "select * from PACIFIC.dbo.CEOExtractCorpRulesView with(nolock) "
queryout "d:\temp\CEOExtractCorpRulesView.txt"
-S"tcp:BCBWEC-VIRTD2\SQL2005" -c -t"|!" ...
1
vote
1answer
580 views
Installing BCP with installing SQL Server in client machine?
I export data from database using the BCP utility, I want to install bcp in client machine. I don't want to install SQL Server 2008 in client machine.
Is their any minimal installers available to ...
1
vote
2answers
262 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
286 views
Can BCP copy data directly from table to table?
I've got a situation where I need to copy several tables from one SQL Server DB to a separate SQL Server DB. The databases are both on the same instance. The tables I'm copying contain a minimum of ...
1
vote
2answers
644 views
SQL Server: BCP vs SQLCMD - what is more efficient?
I'm writing a program in c# to export SQL Server data from one database and importing it in another. Since these two servers are not connected I need to choose a method such as bcp.
What are the ...
1
vote
2answers
289 views
Whats wrong with this bcp utility?
I am trying to export data into into a text file using bcp utility? I could n't figure out what i am doing wrong here:-
Declare @Cmd nvarchar(1000)
Declare @Query nvarchar(1000)
Declare @Path ...
1
vote
1answer
414 views
Getting a buildable Boost extract with bcp
I'm using bcp to extract Boost.Archive from Boost. Unfortunately I can't build this extract. Boost.Archive is not a header-only library.
bjam complains
Unable to load Boost.Build: could not find ...
1
vote
1answer
129 views
SQL Server BCP only one row inserted?
I'm using an FMT file to BCP a csv file into a an SQL Server Box - everything is fine, but only the first row of the 5 line file is getting inserted.
I think it is the line feed settings for the ...
1
vote
0answers
401 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
464 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 ...