开发者

Importing Excel into SQL2005, issue with currency symbols and text in a number field

开发者 https://www.devze.com 2023-01-15 20:44 出处:网络
I have a field in my Excel as follows €250 €240 Free .... In my SQL2005 Preview this looks as follows 250

I have a field in my Excel as follows

€250 €240 Free ....

In my SQL2005 Preview this looks as follows 250 240 (Blan开发者_StackOverflowk)

So it doesnt like Symbols and Text in this column altho it is going to a varchar column.

Any Ideas ?


Check whether the € is stored in your excel file as part of the value of a cell or as formatting.

I was trying to reproduce your problem, and when I entered €250 into a cell, when I later selected the cell to check the value, it was 250 (Excel had decided that I was trying to give the cell a numerical value, formatted as currency)

If that isn't the problem, trying using nchar as your column type rather than varchar. nchar allows a wider range of symbols.

0

精彩评论

暂无评论...
验证码 换一张
取 消