I am using SqlBulkCopy to import excel data to mssql.I have many rows of data in excel with 2 columns which the content has Line Feed and Carriage Return (I understand from reading online below is true)Chr(10) == vbLF == Line Feed (LF)Chr(13) == vbCR == Carriage Return (CR)Chr(13) & Chr(10) == vbCrLf == Carriage Return/Line FeedThe SqlBulkCopy is working perfectly but i want to retain the Carriage Return/Line Feed which is in the excel when its imported to mssql.Currently it is inserted as a long string .Example below .One of the cells has a contents below [multiple rows in single cell].U_Id File_Ref Date Status---------------------------------------------------------23 WED/RFE/12/32 20/8/2013 1st line in cell 1 2nd line in cell 1---------------------------------------------------------24 WED/RFE/12/33 21/8/2013 status1 status1 ---------------------------------------------------------When i use SqlBulkCopy to import excel data to mssql.The above status column is inserted as "1st line in cell 12nd line in cell 1"How can i retain the "Carriage Return/Line Feed" from the excel cell ?so that it will insert in database as below : 1st line in cell 12nd line in cell 1Below is the code i have .-----------------------------Dim conectionstring As String = ""If strExt.ToLower() = ".xls" Thenconectionstring = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Excel & ";Extended Properties=Excel 8.0"ElseIf strExt.ToLower() = ".xlsx" Thenconectionstring = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & Excel & ";Extended Properties=Excel 12.0"End IfDim ExcelConnection As New System.Data.OleDb.OleDbConnection(conectionstring)ExcelConnection.Open()Dim expr As String = "SELECT * FROM [Sheet1$] where not U_Id is null"Dim objCmdSelect As OleDbCommand = New OleDbCommand(expr, ExcelConnection)Dim objDR As OleDbDataReaderDim SQLconn As New SqlConnection()SQLconn.ConnectionString = ConnStringSQLconn.Open()Using bulkCopy As SqlBulkCopy = New SqlBulkCopy(SQLconn)bulkCopy.DestinationTableName = "SL_DataInfo_Temp"bulkCopy.ColumnMappings.Add("U_Id", "di_id")bulkCopy.ColumnMappings.Add("File_Ref", "di_fileRef")bulkCopy.ColumnMappings.Add("Date", "di_date")bulkCopy.ColumnMappings.Add("Status", "di_status")objDR = objCmdSelect.ExecuteReaderIf objDR.HasRows Then ''And objDR.FieldCount >= 13 ThenbulkCopy.WriteToServer(objDR)ExcelConnection.Close()SQLconn.Close()End If End Using