Import EXCEL data to SQL Server without data conversion
问题 I am trying to insert excel data into sql server tables. Each column should be imported with the exact same format that the user wrote in the source Excel. I am using following query to fetch data SELECT * FROM OPENROWSET( 'Microsoft.ACE.OLEDB.12.0', 'Excel 12.0 Xml;HDR=YES;IMEX=1;Database=H:\Loadloandata\Test\K3.xlsx', 'SELECT * FROM [Sheet1$]') But now in the date column of excel we are receiving some float values( format issues from the users) as shown below Because of the invalid data,