INITIAL
INITIAL in SQL is a clause in Oracle database systems used to define the initial extent size that is to be used for a database segment when an object in a tablespace is created. The extent size is set in bytes and can influence the performance of the system based on how it is managed.
Example
Output
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.