Large Object (LOB) Datatypes
The built-in LOB datatypes BLOB, CLOB, and NCLOB (stored internally) and BFILE (stored externally) can store large and unstructured data such as text, image, video, and spatial data. The size of BLOB, CLOB, and NCLOB data can be up to (232-1 bytes) * (the value of the CHUNK parameter of LOB storage). If the tablespaces in your database are of standard block size, and if you have used the default value of the CHUNK parameter of LOB storage when creating a LOB column, then this is equivalent to (232-1 bytes) * (database block size). BFILE data can be up to 264-1 bytes, although your operating system may impose restrictions on this maximum.
When creating a table, you can optionally specify different tablespace and storage characteristics for LOB columns or LOB object attributes from those specified for the table.
CLOB, NCLOB, and BLOB values up to approximately 4000 bytes are stored inline if you enable storage in row at the time the LOB column is created. LOBs greater than 4000 bytes are always stored externally. Refer to ENABLE STORAGE IN ROW for more information.
LOB columns contain LOB locators that can refer to internal (in the database) or external (outside the database) LOB values. Selecting a LOB from a table actually returns the LOB locator and not the entire LOB value. The DBMS_LOB package and Oracle Call Interface (OCI) operations on LOBs are performed through these locators.
LOBs are similar to LONG and LONG RAW types, but differ in the following ways:
LOBs can be attributes of an object type (user-defined datatype).
The LOB locator is stored in the table column, either with or without the actual LOB value. BLOB, NCLOB, and CLOB values can be stored in separate tablespaces. BFILE data is stored in an external file on the server.
When you access a LOB column, the locator is returned.
A LOB can be up to (232-1 bytes)*(database block size) in size. BFILE data can be up to 264-1 bytes, although your operating system may impose restrictions on this maximum.
LOBs permit efficient, random, piece-wise access to and manipulation of data.
You can define more than one LOB column in a table.
With the exception of NCLOB, you can define one or more LOB attributes in an object.
You can declare LOB bind variables.
You can select LOB columns and LOB attributes.
You can insert a new row or update an existing row that contains one or more LOB columns or an object with one or more LOB attributes. In update operations, you can set the internal LOB value to NULL, empty, or replace the entire LOB with data. You can set the BFILE to NULL or make it point to a different file.
You can update a LOB row-column intersection or a LOB attribute with another LOB row-column intersection or LOB attribute.
You can delete a row containing a LOB column or LOB attribute and thereby also delete the LOB value. For BFILEs, the actual operating system file is not deleted.
You can access and populate rows of an inline LOB column (a LOB column stored in the database) or a LOB attribute (an attribute of an object type column stored in the database) simply by issuing an INSERT or UPDATE statement.
'참고글 및 문제해결 > 관련, 참고글' 카테고리의 다른 글
difference between ALTER SYSTEM and ALTER DATABASE (0) | 2012.02.07 |
---|---|
Hidden parameter 보는 쿼리 (1) | 2012.02.02 |
Oracle db생성 후 엔진 upgrade (0) | 2012.01.09 |
오라클 설치 기본개념 (0) | 2012.01.09 |
오라클 환경 설정 항목과 그에 대한 설명 (0) | 2012.01.09 |