Why is long an issue with Oracle?

后端 未结 2 490
别那么骄傲
别那么骄傲 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:14

    Unfortunately, LONGs are still sometimes necessary. For example, you can read a LONG from a remote database, but you can't read a CLOB from a remote database until 12.2. (Although you can always write a CLOB to a remote database.) I'm guessing this is why they are still used everywhere in the data dictionary.

    Other than that issue, you should probably always use CLOBs.

提交回复
热议问题