Store RTF in Oracle CLOB

RTF(Rich Text Format) can be stored as Oracle CLOB data. 1. Oracle CLOB Type Overview Oracle CLOB (Character Large Object) is a native large character field supporting up to 4GB, designed for large text data. Requires initialization with EMPTY_CLOB() before writing large content via PL/SQL. 2. ... Read more