I understand that Oracle organizes data blocks into extents, and you should define initial and next extent when creating a table, so when table size becomes bigger than the size of the extent, a new extent is obtained.
But what happens when table size exceeds the size of the data block?
I'm assuming that the whole point of extent is to make sure the table size never exceeds the data block size, am I correct with my assumption?
Please explain in layman terms.