This section describes how to create tables with CLOB columns in Oracle server.
Oracle support CLOB with the CLOB data types:
CLOB - A CLOB column with a maximum length of (2**32 - 1)*(the value of the CHUNK parameter of LOB storage),
about 32TB with default block size.
In order to test CLOB columns in Oracle server, I used the Oracle commnand line interface
to create a test table with one CLOB column:
C:\>sqlplus
Enter user-name: Herong/TopSecret
SQL> -- Create the test table with a CLOB column
2 CREATE TABLE Article (ID INTEGER PRIMARY KEY,
3 Subject VARCHAR(256),
4 Body CLOB);
Table created.