INITIAL
Example
Section titled “Example”CREATE TABLE students( id INT, name VARCHAR(50), credit_taken INT DEFAULT 0)TABLESPACE students_data DATAFILE 'students_data01.dbf' SIZE 25M AUTOEXTEND ON NEXT 50M MAXSIZE 250M LOGGING INITIAL 25M MINEXTENTS 1 MAXEXTENTS 50 NOCOMPRESS;Output
Section titled “Output”Table STUDENTS created.Explanation
Section titled “Explanation”The above example illustrates the use of the INITIAL clause in Oracle SQL when creating a new table students. This creates an initial extent of 25MB. Extents are the smallest unit Oracle uses to manage database space. The INITIAL keyword indicates the initial amount of space that Oracle reserves when creating the object.