现在有excel一些数据,需要复制到table中。
Period TransDate Amount
2018001 2018-01-02 -4013.22
将excel中日期格式设置为自定义yyyy-mm-dd。
举例,当你在excel中设置自定义格式为mm/dd/yyyy, sql server默认的是dd/mm/yyyy。
所以当你插入2018年2月13日数值时(13/02/2018),sql server解释为2018年13月2日。显然没有13月这个月份。所以自然会报错类似cannot insert null value into the column xxx / Text was truncated or one or more characters had no match in the target code page.
如果要将这些数据从一个数据库copy到另一个,在edit top 200 rows界面中,点击下图左上角SQL按钮,删除 top 200,然后在edit top 200 rows中全选复制到另一个数据库edit top 200 rows界面。
这样做的原因是,有时候在remote desktop 复制数据,比同服务器上复制要慢。