Donde esta el error??
Publicado por juan (6 intervenciones) el 07/11/2006 20:07:30
Un saludo a todos, tengo el siguiente script cuando le ejecuo mesale el siguiente error:
" Server: Msg 170, Level 15, State 1, Line 8
Line 8: Incorrect syntax near '('. "
le agradeceria me puedan ayudar a corregir el error, muchas gracias
USE [Acceso]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Biometrica](
[RowId] [bigint] IDENTITY(1,1) NOT NULL,
[Cedula] [int] NOT NULL,
[template] [varbinary](8000) NOT NULL,
CONSTRAINT [PK_Biometrica] PRIMARY KEY CLUSTERED
(
[RowId] ASC
)WITH (PAD_INDEX = OFF, IGNORE_DUP_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
" Server: Msg 170, Level 15, State 1, Line 8
Line 8: Incorrect syntax near '('. "
le agradeceria me puedan ayudar a corregir el error, muchas gracias
USE [Acceso]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Biometrica](
[RowId] [bigint] IDENTITY(1,1) NOT NULL,
[Cedula] [int] NOT NULL,
[template] [varbinary](8000) NOT NULL,
CONSTRAINT [PK_Biometrica] PRIMARY KEY CLUSTERED
(
[RowId] ASC
)WITH (PAD_INDEX = OFF, IGNORE_DUP_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
Valora esta pregunta


0