|
|
|
|
|
|
|
|
|
|
|
|
|
For example:
create table sensor (
sensor_id number(5) NOT NULL ,
sensor_name varchar2(64) NOT NULL ,
description varchar2(80) NULL ,
brand_name varchar2(64) NULL ,
def_sampling_rate number(5) NOT NULL ,
manufacturer varchar2(64) NULL ,
)
pctfree 10
pctused 70
tablespace BLT_data
storage (initial 120k
next 4k
pctincrease 25);
Similarly; not all relations (tables) are created equal: e.g., ISAM (Index Sequential Access Method), VSAM (Virtual Storage Access Method, Btree, etc.)
Database administrators.