June 30, 2014 at 4:03 pm
I have huge table around 5 million rows in source table (i.e Sybase server) .Need to copy 5 million rows from Sybase to SQL Server table.
I have tried with below command i.e. BCP out from Sybase table to file.
bcp DBname..tablename out C:\filename.bcp -SSybaseservername -UUname -Ppwd -c -t ~ -r \r -T 10048000
However, I got warnings "some characters could not be converted into client's character set. Unconverted bytes were changes to question mark"
Does anyone has came across this kind of issues before?
Thanks
June 30, 2014 at 11:56 pm
Try using -CRAW...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 1, 2014 at 9:48 am
Do you think it cannot be done with BCP?
Thanks
July 1, 2014 at 6:29 pm
Admingod (7/1/2014)
Do you think it cannot be done with BCP?Thanks
I absolutely think BCP will do it. That's why I recommend using the -CRAW command line switch for BCP. 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
July 9, 2014 at 4:47 pm
So.... any luck here?
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply