Why is this an issue?
The LONG
and LONG RAW
datatypes are deprecated and Oracle recommends to migrate them to the LOB datatypes
CLOB
, NCLOB
or BLOB
.
Noncompliant code example
CREATE TABLE images(
data LONG RAW
);
Compliant solution
CREATE TABLE images(
data BLOB
);