zoukankan      html  css  js  c++  java
  • Excel数据 导入到 SQL2008 错误码 Error 0xc020902a

    Excel 导入SQL错误】实例:[styling]字段

    Error 0xc020902a: Data Flow Task 1: The "output column "styling" (96)" failed because truncation occurred, and the truncation row disposition on "output column "styling" (96)" specifies failure on truncation. A truncation error occurred on the specified object of the specified component.
    (SQL Server Import and Export Wizard)

    解决方案

     为什么[styling]字段会被识别成两种不同的类型?

     从网上查知SQL2008是通过扫描EXCEL的前8行的各个数据的内容来估计该表各个列的数据的长度的,

    在前8行中“投诉描述”中有内容超过255字符的条目的时候自然会被判定为LongText类型从而成功导入,

    反之在前8行中“投诉描述”的内容中没有超过255字符而后面又有超过255字符的条目的话就会报truncation error这个错误导入失败。

    因此解决这个问题的方法 就是在第一行中添加 填充字符串,超过255,导入后在删除.

    【部署常用SQL】

    UPDATE    [Table] SET   [Field] = REPLACE([Field], oldString, NewString)

  • 相关阅读:
    jq动画效果
    each循环和节点操作
    jquery的基础语法
    JS作用域
    DOM事件
    js语法一
    socketserver模块与mysql语句(一)
    亲测idea编辑器控制台中文乱码成功的解决方法
    PHP Fatal error: Call to undefined function json_decode()
    PHP <? 标签问题导致不能正确运行代码
  • 原文地址:https://www.cnblogs.com/AspDotNetMVC/p/2784467.html
Copyright © 2011-2022 走看看