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 文字を超えるオブジェクト名に対する制限があります。