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

0
votes
1answer
29 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 ...
1
vote
1answer
27 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 ...
0
votes
2answers
22 views

BCP Parameter issues

I Hope I'm not re-asking.. but.. here's the pertinent section of my SQL. The view in question (vw_TempALlItems) is created in prior steps, and yes its created using column names, and paying attention ...
1
vote
1answer
55 views

BCP returns no errors, but also doesn't copy any rows

I'm trying to dump a very large set of data from a .csv file into a SQL Server 2012 database. Rather than doing thousands of INSERTs, I'm investigating bcp. EDIT: This is for an automated process, ...
-2
votes
0answers
49 views

BCP Command to import xlsx file in sql server 2000 [closed]

Can any one tell me whether it is possible to import an xlsx file into sql server 2000. If Yes then how can we select only specific columns from the xlsx file to import it in sql server 2000. Thanks ...
0
votes
0answers
32 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
2answers
198 views

Export MSSQL database to MS Access .accdb file

I have a Microsoft SQL Server database which is updated with data regularly. I would like to store this database with all tables (and preferrably relationsships) to a new Microsoft Access (.accdb) ...
-1
votes
1answer
66 views

BCP, What is the best way to export mssql data to ms-word

I want to export each row to different ms-word file.
0
votes
1answer
56 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 ...
1
vote
2answers
68 views

Export tables to Flat File with some logic

I'm writing scripts to export some tables to flat files every day. I'm looking at the BCP utility, but I'm not sure it has the kind of features I really need. For example, I need to output the ...
0
votes
0answers
68 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 ...
-1
votes
1answer
46 views

Permission issues while BCP out in Sybase 15.7

In Sybase 15.7, when data is bulk copied out using Sybase’s bcp utility, the output file generated is having permissions(Read/Write-able) by owner only . How to resolve this issue this bcp will be ...
0
votes
0answers
33 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 ...
2
votes
3answers
92 views

Error using BCP and hidden path to export data from SQL

When I use hidden path like \\\twn-a110093\s$\SNData1.csv, it does not work. Error message: [Microsoft][SQL Native Client] Unable to open BCP host data-file Perhaps the '$' char is not ...
0
votes
2answers
145 views

Add row to 'Break up a SQL Server 2008 query into batches'

I was successful in exporting to a flat file using bcp with the help of Break up a SQL Server 2008 query into batches. Now I would like to add one (or two) rows to each batch. This is needed to ...
1
vote
1answer
74 views

SqlServer Bulk Insert with logic

I'm using SqlServer 2008R2 and I need to load 900 million records with the follow structure very fast. varchar(20) varchar(10) varchar(50) varchar(15) varchar(20) varchar(10) varchar(4) varchar(3) ...
1
vote
1answer
92 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 - ...
0
votes
1answer
558 views

creating bcp format file for sql server 2005

I am stuck in creating bcp format file. My client is using MSSQL 2005 and I am remotely connecting through RDC. I am creating format file on the target client MSSQL Server using the following command, ...
1
vote
0answers
200 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 & ...
0
votes
0answers
82 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
1answer
114 views

Problems with SQL Azure Migration Wizard

I am trying to migrate my SQL Server 2008 R2 database to Windows Azure. I am using SQLAzureMW for this. But I am getting the below errors after inserting few rows. BCP Command: bcp.exe ...
1
vote
0answers
66 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 ...
0
votes
2answers
254 views

Bulk insert using format file

My database named 'dictionary' have two column named 'column1' and 'column2'. Both can accept NULL value. The data-type of both columns is INT. Now I want to insert into only column2 from a text file ...
0
votes
0answers
306 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
1answer
345 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
0answers
258 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
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
229 views

Running a bat file with BCP command, getting connection error

I have a bat file that is using the bcp command to execute a stored procedure to a delimited file. When manually running the bat file, I get the following errors: I'm using the -T parameter as I ...
0
votes
1answer
226 views

BCP SQL Command to .csv file has formatting issue

I have a simple BCP command to query my MSSQL database and copy the result to a .csv file like this: bcp "select fullname from [database1].[dbo].employee" queryout "c:\test\table.csv" -c -t"," ...
1
vote
1answer
309 views

How do I grant access to SQL Server Agent to be able to write/modify system files?

I have a job that has a stored procedure that runs BCP to QUERYOUT some data. If I run the QUERYOUT command by itself, it works. However, if I try to run it in a JOB, it creates the file but "hangs" ...
0
votes
1answer
201 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, ...
0
votes
1answer
112 views

BCP utility - query hangs, txt file is created but nothing happens (no data)

for whatever reason, when I get to the step where I generate a txt file with data from a query using the BCP utility, it hangs on the file creation. then if i try to query the database for those ...
0
votes
0answers
276 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
1answer
129 views

XML output not formatted when written to file with bcp

I have query that create an xml in sql server and works fine, the problem is that I need to save it to a file. When I do that the format get corrupted. SELECT mydata.dbo.tblBooking.ID, ...
0
votes
1answer
384 views

Batch file export from SQL - Script editing

I found a bat script on the internet which exports a query from SQL with a header row and into a tab delimited csv file. The script works great, however, I need the file format to be a comma separated ...
1
vote
1answer
581 views

how to bcp out from sybase few columns from a table with many columns? Also can some logic be accomodated while retriving data?

I have a huge table with 60 + columns in Sybase ASE, i want to bcp out 12 columns. I was checking syntax on manuals but could not find a way to mention column names. I would also like to put some ...
0
votes
1answer
126 views

Sybase's BCP utility for Redhat Linux

I want to install Sybase's bcp utility in my linux box. I have a java application which internally use bcp to copy the data from text files to the database tables. I am not able to find any ...
0
votes
1answer
131 views

Create Format File with Two Row Delimiters for SQL

I can't seem to find if this is possible, I have a completely flat file that I need to organize to import into SQL server using OPENROWSET. A sample of the file looks like this: GRP 3 DTL abc DTL ...
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
1answer
1k views

Best way to load CSV files into SQL Server 2008?

I've got a script that's scraping CSV files. Each day I get 36 individual CSV files, each with about 100 lines of data. I want to load these into SQL Server 2008 each day. I've tried using Bulk ...
1
vote
1answer
105 views

Different record formats within the same format file - T-SQL (Bulk Upload - BCP)

I have experience using XML format files created with BCP command line and then using that for bulk files with only one record format. My question is, is there a way to insert a conditional statement ...
0
votes
0answers
135 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
86 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
314 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 ...
-1
votes
1answer
113 views

bcp utility outputs an empty file

I will use the bcp utility to debug a stored procedure, so I'd like export some data to a file. I ran a test into my SQL-Server 2005 DECLARE @SQL VARCHAR(8000) SELECT @SQL = 'BCP "SELECT 1" ...
1
vote
0answers
85 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
1answer
138 views

Bulk load data conversion error (truncation) - SQL Server

I'm importing data from a CSV file using the following procedure: CREATE TABLE #HSCodeHeading ( [ItemID] [int] IDENTITY(1,1) NOT NULL, [CMSChapterID] [bigint] NOT NULL, [HeadingCode] [varchar](2) NOT ...
0
votes
0answers
550 views

BCP: export data to csv with fields in enclosed quotes [duplicate]

I have the following BCP command: SET year=%date:~-0,4% SET month=%date:~-5,2% SET day=%date:~-2,4% SET filename=%year%%month%%day%_flightdata.csv bcp "SELECT * FROM ExampleTable " queryout ...
0
votes
0answers
35 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
89 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 ...

1 2 3 4 5 6