CREATE A TABLE AND AN INDEX IN THE TABLESPACE

4. Create a table and an index in the tablespace:

create table mantab (c1 number) tablespace manualsegs;

create index mantabi on mantab(c1) tablespace manualsegs;

These segments will be created with freelists, not bitmaps.