-- Create table create table MOVIMENTOS ( ID_MVTO NUMBER not null, DATA DATE, ID_PRODUTO VARCHAR2(30), QTDE NUMBER ) tablespace USERS pctfree 10 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table MOVIMENTOS add constraint ID_MOVTO primary key (ID_MVTO) using index tablespace USERS pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited );