bonjour,
voila , j'ai une table postgresql de la forme suivante:
create table plans (
id_plan integer not null default nextval('num_plan') primary key,
id_app int2
vplan varchar(8)
vapp varchar(8)
hostname varchar(40)
etat int2
date timestamp,
commentaire varchar (8192)
);
Cette table, je dois la recreer sous oracle. Mais je ne trouve pas la syntaxe pour la column id_plan . Sachant que num_plan est généré à partir d'une sequence.

D'avance merci .