NCLOB
NCLOB, or National Character Large Object, is a data type used to store large amounts of Unicode text. It holds data in the database’s national character set, which is distinct from the database’s primary character set. This enables full Unicode support for multilingual data and can simplify handling text that may not be representable in the database’s main character set.
NCLOB is typically contrasted with CLOB, which stores large text using the database character set. If the
Storage and limits for NCLOBs are generally up to 4 gigabytes of data. The exact number of
Usage commonly involves defining a table column as NCLOB, for example, content NCLOB. Inserting Unicode text
NCLOB is an Oracle-oriented term and is not universally available under the same name in all RDBMS.