Tagged Questions
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
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 ...
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
2answers
835 views
exec master..xp_cmdshell bcp select
Below, I'm calling one stored procedure from c#.net windows forms.
The stored procedure contains following:
exec master..xp_cmdshell ''bcp "select ...
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 ...
0
votes
1answer
468 views
Export .dat to Xml or readable file with help of .fmt
I downloaded a database from http://opendb.lightspeedsystems.com/contentupdate/database.htm it was a zip archive. Anyway my question is, there are two files: virussignatures.dat and ...
1
vote
3answers
997 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 ...
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
1answer
232 views
BCP utility corrupts data
I am running a bulk copy of two columns of a table from one server to another.
The table on the source side has about 8 columns, but I only need 2.
The table on the destination side has 2 columns ...