Insert XML with more than 4000 characters into a Oracle XMLTYPE column(将超过 4000 个字符的 XML 插入 Oracle XMLTYPE 列)
问题描述
我有一个 oracle 表,其中有一列来自SYS.XMLTYPE
"类型的列和一个正在执行插入操作的存储过程:
I have an oracle table with a column from type "SYS.XMLTYPE
" and a storage procudure which is doing the insert:
(短版):
PROCEDURE InsertXML
(
pXMLData IN LONG
)
IS
BEGIN
INSERT INTO MY_TABLE (XML_DATA) VALUES(pXMLData);
END InsertXML;
我从我的 C# 代码中调用这个 sp,类型为OracleType.LongVarChar
".
I call this sp from my C# code with type "OracleType.LongVarChar
".
现在的问题:如果 xml 的字符少于 4000 个,一切正常,但使用超过 4000 个字符的 xml 会出现以下错误:
Now the problem: If the xml has less than 4000 characters everything is working fine, but by using a xml with more than 4000 characters I get the following error:
ORA-20000: ORA-01461: can bind a LONG value only for insert into a LONG column
我该如何处理?谢谢 4 个答案
How can I handle this? Thx 4 answers
推荐答案
查看Oracle docs about XMLType
Check the Oracle docs about XMLType
另外,我认为数据类型应该是 CLOB(字符大对象).
Also, I believe the datatype should be a CLOB (Character Large Object).
这篇关于将超过 4000 个字符的 XML 插入 Oracle XMLTYPE 列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将超过 4000 个字符的 XML 插入 Oracle XMLTYPE 列
基础教程推荐
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01