Preguntas sobre Indexar una tabla
Publicado por Sebastian (32 intervenciones) el 19/06/2001 00:34:45
drop table dbo.acc_formularios
CREATE TABLE dbo.acc_formularios
(
codigo_sistema int NOT NULL,
codigo_formulario varchar(50) not NULL,
padre varchar(50) NULL,
tipo_formulario smallint NULL,
texto_icono varchar(50) NULL,
formulario varchar(50) NULL,
CONSTRAINT PK_acc_formularios
PRIMARY KEY NONCLUSTERED (codigo_sistema,codigo_formulario)
ON [PRIMARY]
)
de este código entiendo todo menos,
CONSTRAINT?
NONCLUSTERED?
CLUSTERED?
gracias
CREATE TABLE dbo.acc_formularios
(
codigo_sistema int NOT NULL,
codigo_formulario varchar(50) not NULL,
padre varchar(50) NULL,
tipo_formulario smallint NULL,
texto_icono varchar(50) NULL,
formulario varchar(50) NULL,
CONSTRAINT PK_acc_formularios
PRIMARY KEY NONCLUSTERED (codigo_sistema,codigo_formulario)
ON [PRIMARY]
)
de este código entiendo todo menos,
CONSTRAINT?
NONCLUSTERED?
CLUSTERED?
gracias
Valora esta pregunta


0