0
votes
0answers
306 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 ...
1
vote
1answer
698 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 ...
2
votes
3answers
523 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 ...
0
votes
1answer
338 views

SQL Server equivalent query for the given mysql query

Table name : sample Table structure : ID int NAME varchar(30) IPADDRESS varbinary(16) mysql query : load data concurrent local infile 'C:\test.txt' into table sample fields ...
1
vote
1answer
324 views

incoherence in bcp command execution

I execute a bcp command in 2 computer. The first computer has windows xp and second one has windows server 2003. when I execute command in first, the bcp run successfully but when I run this on second ...
3
votes
1answer
915 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?