The CLOB data type

The CLOB data type are to be used for large documents that contain only standard ASCII text, such as HTML and SGML documents. A column of type CLOB can contain documents of unlimited size, since the data is stored in sbspaces.

There is, however, a significant amount of resource overhead when you store documents in sbspaces. If your documents are smaller than 32 KB, you might consider storing them in a column of type LVARCHAR.

Tip: If your documents contain only standard ASCII text, but are a mixture of small (under 2 KB) and large (over 2 KB) sizes, consider using the IfxMRData data type.