Table Options are managed on the Options tab of the Table Designer. Just simply click an option for editing.
Tablespace
Define a tablespace different from the default tablespace to create a table.
Logging
Specify whether creation of a database object will be logged in the redo log file (LOGGING) or not (NOLOGGING).
Compression
Specify whether to compress data segments to reduce disk use. It is valid only for heap-organized tables.
- COMPRESS - enables table compression.
- COMPRESS FOR ALL OPERATIONS - attempts to compress data during all DML operations on the table.
- COMPRESS FOR DIRECT_LOAD OPERATIONS - attempts to compress data during direct-path INSERT operations when it is productive to do so.
- NOCOMPRESS - disables table compression.
Cache
Indicate how blocks are stored in the buffer cache.
- CACHE - indicates that the blocks retrieved for this table are placed at the most recently used end of the least recently used (LRU) list in the buffer cache when a full table scan is performed.
- NOCACHE - indicates that the blocks retrieved for this table are placed at the least recently used end of the LRU list in the buffer cache when a full table scan is performed.
Parallel With Degree
Specify the degree of parallelism, which is the number of parallel threads used in the parallel operation.
Row Movement
With the option on, it allows the database to move a table row. It is possible for a row to move, for example, during table compression or an update operation on partitioned data.
Physical Attributes
Refer to Editing Physical Attributes/Default Storage Characteristics.