segment_attrib_clause

The following is the syntax for the segment_attrib_clause in the CREATE TABLE statement:

[PCTFREE integer]
   [PCTUSED integer]
   [INITRANS integer]
   [MAXTRANS integer]
   [TABLESPACE tablespace_name] 
   [LOGGING | NOLOGGING]  
   [STORAGE (
      [INITIAL integer[K | M] ]
      [MINEXTENTS integer]
      [MAXEXTENTS {integer | UNLIMITED} ]
      [PCTINCREASE integer]
      [FREELISTS integer]
      [FREELIST GROUPS integer]
      ) ]
PCTFREE

Specifies the percentage of space to be reserved in each data block for future updates to rows contained in that block. Valid values are - 99, and the default value is 10.

PCTUSED

Specifies the minimum percentage of space that will be maintained as used in each data block. Valid values are 1- 99, and the default value is 40.

INITRANS

Specifies the initial number of transaction entries allocated to each block.

MAXTRANS

Specifies the maximum number of transaction entries allocated to each block.

TABLESPACE

Specifies the tablespace for the table.

LOGGING

Specifies that the operation is to be logged to the redo logs.

NOLOGGING

Specifies that nothing is to be written to the redo logs for this operation.

STORAGE

Specifies the physical characteristics of the table as follows:

INITIAL

Specifies the size of the first extent for this table in bytes, kilobytes, or megabytes. If this value is not a multiple of the database blocksize, it will be rounded up to a multiple of the database blocksize.

NEXT

Specifies the size of the next extent in bytes, kilobytes, or megabytes. If this value is not a multiple of the database blocksize, it will be rounded up to a multiple of the database blocksize.

MINEXTENTS

Specifies the number of extents to be allocated when this table is created. The minimum and default value is 1.

MAXEXTENTS

Specifies the maximum number of extents that may be allocated for this table. The default will vary according to the database blocksize. Specify UNLIMITED for unlimited expansion.

PCTINCREASE

Specifies the percentage by which each extent will grow over the previous extent. The default is 50, which means that each extent will be one-and-one-half times larger than the previous extent.

FREELISTS

Specifies the number of free lists contained in each freelist group in this table. The default is 1 and the maximum depends on the database blocksize.

FREELIST GROUPS

Specifies the number of groups of free lists for this table. The default is 1. This parameter should be used only with the Parallel Server option running in parallel mode.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.116.14.118