Why is long an issue with Oracle?

后端 未结 2 498
别那么骄傲
别那么骄傲 2021-01-21 19:57

Why is long an issue with Oracle?

It will be better if some one can tell me what are the issues with using the long data type in oracle? something related to storage?

2条回答
  •  渐次进展
    2021-01-21 20:19

    LONG is archaic and deprecated, and has been superseded by CLOB. There are lots of restrictions with LONGs and they are difficult to manipulate in SQL. So while you may have to deal with them in old databases, you would be unwise to ever use a LONG column in a new table.

提交回复
热议问题