简体   繁体   English

使用C#进行BulkCopy错误-Oracle.DataAccess.Client

[英]Error BulkCopy with C# - Oracle.DataAccess.Client

I have long field in my table. 我的桌子上有很长的田野。 When I make the copies by bulkcopy the following message appears. 当我通过批量复制进行复制时,将显示以下消息。

ORA-26089: LONG column "CORPO_EMAIL" must be specified last ORA-26089:必须最后指定LONG列“ CORPO_EMAIL”

I do not understand the reason for this error. 我不明白此错误的原因。 Is there any special configuration I need to do for this column in a DataTable? 我是否需要为DataTable中的此列做任何特殊配置?

To resolve the issue you need to specify the LONG column ie, CORPO_EMAIL at the last. 要解决此问题,您需要指定LONG列,即最后一个CORPO_EMAIL。

The cause of this error is that a client of the direct path API specified a LONG column to be loaded, but the LONG column was not the last column to be specified. 导致此错误的原因是,直接路径API的客户端指定了要加载的LONG列,但LONG列不是要指定的最后一列。

Also check How to solve Error Code ORA-26089 . 还要检查如何解决错误代码ORA-26089

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Oracle.DataAccess.Client 依赖项 - Oracle.DataAccess.Client Dependencies 使用Oracle.DataAccess.Client从C#进行字符串连接SQL的ORA-02019 - ORA-02019 on String Concatenation SQL from C# using Oracle.DataAccess.Client 没有为Oracle.DataAccess.Client错误安装DDEX提供程序 - DDEX provider is not installed for Oracle.DataAccess.Client error Oracle.DataAccess.client部署不起作用 - Oracle.DataAccess.client deployment not working Oracle.DataAccess.Client没有看到表,但是Toad中有相同的查询 - Oracle.DataAccess.Client not seeing tables but same query in Toad does 使用Oracle.DataAccess.Client的最佳实践是什么? - What are the best practices working with Oracle.DataAccess.Client? 使用Oracle.DataAccess.Client(ODP.NET)替换TableAdapter - Replacing TableAdapters with Oracle.DataAccess.Client (ODP.NET) Oracle.DataAccess.Client.OracleException ORA-01008:并非所有变量都绑定在Oracle.DataAccess.Client上 - Oracle.DataAccess.Client.OracleException ORA-01008: not all variables bound at Oracle.DataAccess.Client Oracle.DataAccess.Client.OracleException C# - Oracle.DataAccess.Client.OracleException C# 使用Oracle.DataAccess.Client在Web服务器和远程Oracle数据库之间进行安全通信 - Secure communication between web server and remote Oracle database using Oracle.DataAccess.Client
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM