我的Blob中保存的都是Rtf格式的文件 有文字和图片 还有Viso的图 大小每条大概在10兆左右 有方法能提高读取速度吗

解决方案 »

  1.   


    增加large pool的值,大字段都会用到这个池!
      

  2.   

    把lob单独存储到独立的表空间,并指定lob cache和设置lob chunk的大小为32k.
      

  3.   

    create table internal_graphics (
      graphic_id number,
        graphic_desc varchar2(30),
        graphic_blob blob,
         graphic_type VARCHAR2(4))
        lob (graphic_blob) store as glob_store (
        tablespace raw_data
        storage (initial 100k next 100k pctincrease 0)
        chunk 4
        pctversion 10
       INDEX glob_index (
       tablespace raw_index))
       TABLESPACE appl_data
      storage (initial 1m next 1m pctincrease 0)