Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 Oracle DB 中测试带有长原始列的东西。为此,我需要在该列中插入一个长度值,例如 4000。数据可以是简单的东西,例如“AAAA ...” 4000 次。我尝试使用 sqlplus 插入一个大值,但出现以下错误(可能是由于 sqlplus 中的长度限制?
错误:ORA-00972:标识符太长
是否可以使用 sqlplus 在长原始列中插入一个大值?
在 Oracle 中,"AAA"是一个标识符,并且'AAA'是一个字符串值。
"AAA"
'AAA'
这是sqlplus输入不能超过2499个字符的限制。
sqlplus
我建议您将插入作为两步过程的一部分。
这不是一个理想的场景,但据我所知,如果你想使用 sqlplus,这是唯一的方法。