CREATE TABLE Uploads
(
id uniqueidentifier NOT NULL PRIMARY KEY,
DI_Id INT NOT NULL,
FileData VARBINARY(Max) NULL,
sFileName nvarchar(50) NOT NULL,
ContentType nvarchar(50) NOT NULL
)
Intenté crear una tabla como la anterior.varbinary (max) datatype invalid
Produce un error incorrecto cerca de varbinary(max)
.
Si proporciono un tamaño de columna fijo como varbinary(100)
, no se produce ningún error.
¿Cómo puedo declarar varbinary(max)
en SQL Server 2005?
SQL Server 2005 debería ser compatible con esto: ¿está seguro de que no está haciendo esto en un SQL Server ** 2000 **? ¿O el nivel de compatibilidad de su base de datos está establecido en 80 (= SQL Server 2000)? –
¿Qué mensaje de error? –
Sintaxis incorrecta cerca de varbinary. – user993935