René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

create table (heap) [Oracle SQL]

create table heap-table-name 
(            
  relational-properties
)
[ organization heap ] 
[ segment-attributes ] 
[ table-compression ] 
[ table-properties  ]
The organization heap makes the table be a heap table. For heap tables, it can be omitted because it's the default for create table.