Import Data Wizard Does Not Like Data Type I Choos

2019-03-19 09:04发布

Does anybody else have this same problem, when you import data from Excel file to MSSQL Server 2005, if some column contains mostly numeric data, but even if you set the column type to varchar, the wizard fails to import those fields that fail to parse as numbers?

6条回答
三岁会撩人
2楼-- · 2019-03-19 09:36

Create a new column that is an apostophe + the contents of the column you want to import. This will force it to be a string

="'"&E2

查看更多
地球回转人心会变
3楼-- · 2019-03-19 09:41

Adding IMEX=1 BEFORE the HDR setting worked for me.

查看更多
smile是对你的礼貌
4楼-- · 2019-03-19 09:43

This is the best solution:

  1. Click File on the ribbon menu, and then click on Options.

  2. Click Advanced, and then under When calculating this workbook, select the Set precision as displayed check box, and then click OK.

  3. Click OK.

  4. In the worksheet, select the cells that you want to format.

  5. On the Home tab, click the Dialog Box Launcher Button image next to Number.

  6. In the Category box, click Number.

  7. In the Decimal places box, enter the number of decimal places that you want to display.

查看更多
Evening l夕情丶
5楼-- · 2019-03-19 09:47

You need to edit the connection string that SSIS uses. Add this to the end of the string "IMEX=1;" (No quotes) That tells SSIS/jet to not try and figure out what the data types are. Just import them.

查看更多
做个烂人
6楼-- · 2019-03-19 09:47

You might try tweaking Jet settings for importing Excel data. You can force the Jet engine to sample the entire sheet when trying to determine the column type during a given import. Change the following registry key (after making a backup first) and see if that doesn't do it:

HKLM\Software\Microsoft\Jet\4.0\Engines\Excel

Or on x64

HKLM\Software\Wow6432Node\Microsoft\Jet\4.0\Engines\Excel

Set the value TypeGuessRows equal to zero. This will force Jet to sample all rows to determine the column type.

查看更多
倾城 Initia
7楼-- · 2019-03-19 09:49

Try this (Note: These instructions are based on Excel 2007)...

The following steps should force Excel to treat the column as text:

Open your spreadsheet with Excel.

Select the whole column that contains your "mostly numeric data" by clicking on the column header.

Click on the Data tab on the ribbon menu.

Select Text to Columns. This will bring up the Convert Text to Columns Wizard.

-On Step 1: Click Next

-On Step 2: Click Next

-On Step 3: Select Text and click Finish

Save your Excel sheet.

Retry the import using the SQL Server 2005 Import Data Wizard.

查看更多
登录 后发表回答