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.
我想在我的表中存储超过 3500 个字符。所以我为我的数据字段使用了 nvarchar2(3500) 数据类型。但是当我尝试插入数据时,我收到错误“ORA-00972:标识符太长”。有人可以帮我解决这个问题吗?
CREATE TABLE T (D nvarchar2(1000)); INSERT INTO T (D) VALUES('This is a string longer than 30 characters')
Oracle 对超过 30 个字符的对象名有限制。