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.
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
2answers
49 views
how to specify row delimiter when using bcp with a format file
I am using bcp utility to import data into Sybase database on Solaris system
Since the bcp file is generated by another xml parsing script, I have no control on that to make it generate the fields in ...
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 ...
2
votes
2answers
1k views
Can I specify an input sql file with bcp?
How can I specify an input sql file with a long query when using bcp? I tried using the -i option but it keeps complaining about a command-line error with no extra information. Is this possible?
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 ...
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 ...
2
votes
2answers
768 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 ...
0
votes
2answers
24 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
601 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 ...
4
votes
1answer
153 views
How do I use boost bcp?
I have the bcp tool, it came pre-built with the boost installer. I'd like to extract the dependencies I need from boost into a smaller file, since I'd like to be able to build this project at school. ...
1
vote
1answer
59 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, ...
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
0answers
551 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
1answer
59 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
votes
1answer
47 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 '-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
220 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) ...
4
votes
1answer
684 views
How to make Microsoft BCP export empty string instead of a NUL char?
I was working trying to get this bcp tool to work in a particular way. The -c switch is supposed to export using chars, but for some reason there was a weird char showing in Notepad++ like if it was ...
-1
votes
1answer
72 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.
1
vote
2answers
3k views
How to import a very large csv file into 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 ...
0
votes
0answers
228 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
vote
2answers
70 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
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
5answers
2k views
How to remove NULL char (0x00) from object within PowerShell
I have a .CSV file that I created using SQL Server's BCP command-line BULK-COPY utility to dump a bunch of database tables.
Since I want to import these .CSV file's using Powershell and convert them ...
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
2answers
162 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 ...
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
3answers
98 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 ...
1
vote
1answer
75 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)
...
0
votes
1answer
151 views
Import IBM Timestamp using BCP?
Is there a direct way to import an IBM timestamp in the format 2008-01-30.22.44.22.435894 using BCP into SQL Server 2008 R2 Enterprise datetime2 field?
I have files being delivered from the AS400 and ...
2
votes
1answer
473 views
bcp format file and -c switch out
I am trying to use bcp to extract records from a Sybase ASE database and write them to a file. I need to exclude two of the fields in the database, so I'm trying to use a format .fmt file.
This is ...
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
3answers
160 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 ...
0
votes
2answers
964 views
Sybase ASE 12.0 CSV Table Export
What I'm trying to do is export a view/table from Sybase ASE 12.0 into a CSV file, but I'm having a lot of difficulty in it.
We want to import it into IDEA or MS-Access. The way that these programs ...
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 - ...
0
votes
1answer
574 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
211 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
1answer
237 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"," ...
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
1answer
117 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
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 ...
0
votes
2answers
269 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
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
1answer
369 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
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
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
234 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 ...
2
votes
2answers
1k 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 ...
1
vote
1answer
319 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
113 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 ...









