Use LOB Storage, uselobstorage

Source: Internet
Author: User

Use LOB Storage, uselobstorage
If LOB storage is not defined and LOB attribute size exceeds 4000 characters the attributes which overflow will automatically be placed in the tables tablespace in default configured LOB storage and index. if LOB storage is allowed to go to defaults you will not get optimal use of resources and cocould cause contention for disk resources, both of which will reduce your system performance.


LOB storage is defined by the CREATE or alter table commands. The LOB storage clause is used to define the LOB storage profile. The LOB storage clause is shown in figure 1.


The LOB storage clause uses a LOB parameters section to specify the LOB tablespace, storage in row, CHUNK and PCTVERSION settings as well as CACHEstatus and if NOCACHE is specified whether the LOB storage shocould beLOGGING or NOLOGGING and the specification for the LOB index. the LOB Parameters section of the LOB storage clause is shown in figure 2.


The LOB index is specified through the LOB index clause. you can name or let the system name the index and then specify the normal index storage variables for the LOB index. the LOB index clause is shown in figure 3.





Whether the LOB datatype is BLOB, CLOB or NCLOB the storage clause format is identical. LOB storage specifications can be applied to bfile lob pes ypes but it doesn' t make sense to do so. if you do not specify the segname parameter the Oracle system will give the segment some wonderful name such as 'sys _ LOB0000001562C0035 $ 'so I suggest you name the segments.


BLOB and CLOB Creation


BLOB and CLOB datatypes are created by use of the CREATE or alter table or the CREATE or alter type commands. in fact, they are created identically to other non-sized datatypes such as DATE and LONG with the exception of theLOB storage clause. the LOB storage clause is not needed if the maximum size of the BLOB doesn't exceed 4000 bytes. up to 4000 bytes can be stored in-line with the other data in the tablespace. if the length of the BLOB exceeds 4000 bytes it must be stored in either a system defaulted storage (the same as the default for the table it resides in) or in an explicitly defined LOB storage area.


TIP:


I suggest always specify the LOB storage clause, if you force the system to do a default storage each time a BLOB or CLOB exceeds 4000 bytes you cocould cause datafile fragmentation and performance problems. the LOB storage clause gives you control instead of the system.


An example creation of a table using a BLOB datatype is shown in Listing 1. It just as easily cocould have been a CLOB.


 
SYS @ orcl11g> create table internal_graphics (graphic_id number, graphic_desc varchar2 (30), graphic_blob blob,
Graphic_type VARCHAR2 (4) lob (graphic_blob) store as SECUREFILE glob_store (tablespace ZBDBA storage
(Initial 100 k next 100 k pctincrease 0) chunk 4 pctversion 10 INDEX glob_index1 (tablespace zbdba ))
TABLESPACE zbdba storage (initial 1 m next 1 m pctincrease 0 );
 
Table created.
 
SYS @ orcl11g> select dbms_metadata.get_ddl ('table', 'Internal _ GRAPHICS ', 'sys') from dual;
DBMS_METADATA.GET_DDL ('table', 'Internal _ GRAPHICS ', 'sys ')
---------------------------
 
Create table "SYS". "INTERNAL_GRAPHICS"
("GRAPHIC_ID" NUMBER,
"GRAPHIC_DESC" VARCHAR2 (30 ),
"GRAPHIC_BLOB" BLOB,
"GRAPHIC_TYPE" VARCHAR2 (4)
) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255
NOCOMPRESS LOGGING
STORAGE (INITIAL 1048576 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
PCTINCREASE 0 FREELISTS 1 freelist groups 1
BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
TABLESPACE "ZBDBA"
LOB ("GRAPHIC_BLOB") store as securefile "GLOB_STORE "(
TABLESPACE "ZBDBA" enable storage in row chunk 8192
Nocache logging nocompress KEEP_DUPLICATES
STORAGE (INITIAL 106496 NEXT 106496 MINEXTENTS 1 MAXEXTENTS 2147483645
PCTINCREASE 0
BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT ))
 
Listing 1: Example Use of The LOB Storage Clause and LOB Use in Tables


BLOBs and CLOBs are identical in creation and use, their major difference is in that BLOBs are used for binary data (much like long raw) while CLOBs are used for single byte character storage (like VARCHAR2 ). the TYPE creation example in Listing 2 shows how a CLOB is specified for a TYPE.


SQL> CREATE OR REPLACE TYPE clob_demo (
2 clob_id NUMBER,
3 clob_value CLOB
4 );
 
SQL> CREATE TABLE clob_table OF clob_demo
5 LOB (clob_value) store as clob_store (
6 TABLESPACE raw_data
7 STORAGE (INITIAL 100 k next 100 k pctincrease 0)
8 CHUNK 4
9 PCTVERSION 10
10 INDEX clob_index (
11 TABLESPACE raw_index ))
12 TABLESPACE appl_data
12 * STORAGE (INITIAL 1 m next 1 m pctincrease 0)
SQL>/
Listing 2: Example Use of LOBs in a TYPE specification


Notice that no LOB storage is specified when a BLOB or a CLOB is used in aTYPE specification, the LOB storage clause is applied to the BLOB or CLOBTYPE only when it is used in a table.


For more infomation about securefile:

Http://docs.oracle.com/cd/B28359_01/appdev.111/b28393/adlob_smart.htm#BABDIEGE

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.