January 2012
Intermediate to advanced
542 pages
11h 28m
English
LOBs (Large OBjects) are a particular data type, used to store large binary or character objects inside the database or outside the database when using BFILEs. In this recipe, we will see how to use LOB fields to avoid performance degradation and space wasting.
The following steps have to be performed initially;
SYSDBA:
CONNECT /@TESTDB AS SYSDBA
SH:
GRANT CREATE ANY DIRECTORY TO SH;
CREATE TABLESPACE ASSM_TS DATAFILE 'ASSM_TS.DBF' SIZE 100M EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO;
In this recipe, we will see how to use LOB felds to avoid performance degradation and space wasting. Follow these steps: ...
Read now
Unlock full access