Character large object

For the card game, see Clob (card).
For the formerly proposed securities trading system, see central limit order book.

A Character Large OBject (or CLOB) is a collection of character data in a database management system, usually stored in a separate location that is referenced in the table itself. Oracle and IBM DB2 provide a construct explicitly named CLOB, and the majority of other database systems support some form of the concept, often labeled as text, memo or long character fields.

CLOBs usually have very high size-limits, of the order of 2 GB or more. The tradeoff for the capacity is usually limited access methods. In particular, some database systems limit certain SQL clauses and/or functions, such as LIKE or SUBSTRING from being used on CLOBs. Those that permit such operations may perform them very slowly.

Alternative methods of accessing the data are often provided, including means of extracting or inserting ranges of data from the CLOB.

Database systems vary in their storage patterns for CLOBs. Some systems always store CLOBs as a reference to out-of-table data, while others store small CLOBs in-table, changing their storage patterns when the size of the data grows beyond a threshold. Other systems are configurable in their behavior.

CLOBs differ from BLOBs by having a specified character encoding, and also by the capability to permit some string-oriented operations on them.

See also

This article is issued from Wikipedia - version of the 5/12/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.