Copying data from LOB Column to Long Raw Column

后端 未结 2 759
太阳男子
太阳男子 2021-01-27 04:45

I was looking for a query which picks data from a table having Blob column and update a table having LONG RAW column. It seems Oracle supports only up to 4000 characters. Is the

2条回答
  •  星月不相逢
    2021-01-27 04:48

    Despite the fact that you make a reversal (normaly you should move from LONG to LOB, LONG being obsolete)...

    You must use dbms_lob package, and make some plsql:

    Eventualy you can use read, getlength...

    Doc you can find here Psoug.org or on Oracle doc

提交回复
热议问题