当我的数据大小超过表格列大小时会发生什么?

时间:2012-10-30 14:53:14

标签: oracle11g size

我正在使用oracle db。我有一些基本的疑问,我创建了一个带有列的表 comments VARCHAR2(2000 BYTE)。如果我试图插入一个2500字节的值 会发生什么?是否

1. It will throw an exception(please give me exception details).
2. It will truncate the 500 bytes data. and insert only first 2000 bytes.
3. Internally it will increases it size and insert entire data.

请指导我。

1 个答案:

答案 0 :(得分:1)

  1. ORA-12899:列值太大。