ayuda con este script( principiante)
Publicado por Deysi Laura (11 intervenciones) el 20/02/2009 23:07:59
me envia errores al ejecutarlo, podrian decirme en que estoy mal por favor, soy principiante.
de antemano gracias
create table dbo_compras.paascat_depen_entidad
(
ic_clave_dep number(10) not null,
cg_des_dep varchar2(200) not null
)
tablespace users
pctfree 10
initrans 1
maxtrans 255
storage(initial 64k
minextents 1
maxextents unlimited
pctincrease 0)
alter table dbo_compras.paascat_depen_entidad
add constraint cp_paascat_depen_entidad_pk
primary key (ic_clave_dep)
using index pctfree 10
initrans 2
maxtrans 255
tablespace users
storage(initial 64k
minextents 1
maxextents unlimited
pctincrease 0)
comment on table dbo_compras.paascat_depen_entidad is 'Catalogo dependencias /entidades';
comment on column dbo_compras.paascat_depen_entidad.ic_clave_dep is 'clave de la dependencia';
comment on column dbo_compras.paascat_depen_entidad.cg_des_dep is 'descripcion de la dependencia';
de antemano gracias
create table dbo_compras.paascat_depen_entidad
(
ic_clave_dep number(10) not null,
cg_des_dep varchar2(200) not null
)
tablespace users
pctfree 10
initrans 1
maxtrans 255
storage(initial 64k
minextents 1
maxextents unlimited
pctincrease 0)
alter table dbo_compras.paascat_depen_entidad
add constraint cp_paascat_depen_entidad_pk
primary key (ic_clave_dep)
using index pctfree 10
initrans 2
maxtrans 255
tablespace users
storage(initial 64k
minextents 1
maxextents unlimited
pctincrease 0)
comment on table dbo_compras.paascat_depen_entidad is 'Catalogo dependencias /entidades';
comment on column dbo_compras.paascat_depen_entidad.ic_clave_dep is 'clave de la dependencia';
comment on column dbo_compras.paascat_depen_entidad.cg_des_dep is 'descripcion de la dependencia';
Valora esta pregunta


0