Please start any new threads on our new 
    site at https://forums.sqlteam.com.  We've got lots of great SQL Server
    experts to answer whatever question you can come up with.
    
        | 
                
                    | 
                            
                                | Author | Topic |  
                                    | ana10Starting Member
 
 
                                        2 Posts | 
                                            
                                            |  Posted - 2014-01-29 : 03:34:28 
 |  
                                            | Hi,I tried to do the following command to upload data to azure database:bcp.exe [azure-test].[user1].[tab2] in D:\Files\tab2.csv -f D:\Files\tab2.fmt -S %server% -a %packetsize% -b %batchsize% -U speedtest@xxxxxx.database.windows.net -P %password% -e d:\Files\error.txtResult of execution:Starting copy...0 rows copied.Network packet size (bytes): 4096Clock Time (ms.) Total     : 328Content of tab2.csv:"XTB,285NABC,123CEFG,190D"If display tab2.csv with end of line characters, it will show:"XTB,285N[CR][LF]ABC,123C[CR][LF]EFG,190D[CR][LF]"The content of tab2.fmt :"10.021       SQLCHAR             2       4       ","   1     vsl_code             SQL_Latin1_General_CP1_CI_AS2       SQLCHAR             2       7       "\r\n"   2     voy_code             SQL_Latin1_General_CP1_CI_AS"Table structure is:create table user1.tab2 (vsl_code varchar(4) not null,voy_code varchar(7) not nullconstraint pk_vsl_voy2 primary key (VSL_CODE,VOY_CODE));What is wrong with the command that the data cannot get inserted to the table?Thanks. |  |  
                                |  |  |  |