Code Inspection: Deprecated type
Reports usages of types that are deprecated and might disappear in future versions of DBMS.
Reported types:
LONG in Oracle (see Deprecated and Desupported Features at docs.oracle.com).
TEXT, NTEXT, and IMAGE in Microsoft SQL Server (see Deprecated Database Engine Features in SQL Server 2016 at docs.microsoft.com).
Example (Oracle):
CREATE TABLE ot.foo(
a NUMBER GENERATED BY DEFAULT AS IDENTITY,
b LONG NOT NULL
);
Suppress an inspection in the editor
Position the caret at the highlighted line and press Alt+Enter or click .
Click the arrow next to the inspection you want to suppress and select the necessary suppress action.
Last modified: 13 May 2022