long type column : LONG « Large Objects « Oracle PL/SQL Tutorial






SQL>
SQL> CREATE TABLE myLongTable (id NUMBER,long_data LONG);

Table created.

SQL>
SQL> INSERT INTO myLongTable VALUES (100,RPAD('A',200000,'A'));

1 row created.

SQL>
SQL> drop table myLongTable;

Table dropped.

SQL>








34.6.LONG
34.6.1.long type column
34.6.2.Long raw type column
34.6.3.Long type column, not null
34.6.4.Copying LONG to LOB with the ALTER TABLE...MODIFY statement