相关疑难解决方法(0)

如何用一个字段作为CLOB编写oracle插入脚本?

我想创建一个插入脚本,它只用于将一条记录插入一个表中.

它有5列,其中一列是CLOB类型.

每当我尝试,它说无法插入字符串是如此之久.大于4000.

我需要一个带有clob的insert语句作为一个字段.

INSERT INTO tbltablename 
            (id, 
             NAME, 
             description, 
             accountnumber, 
             fathername) 
VALUES      (1, 
             N'Name', 
             clob'some very long string here, greater than 4000 characters', 
             23, 
             'John') ;
Run Code Online (Sandbox Code Playgroud)

oracle

21
推荐指数
2
解决办法
12万
查看次数

标签 统计

oracle ×1