存储过程中为什么总是在报“将截断字符串或二进制数据”错误
第一张图是我在SQL Server Management Studio中设计的表
第二图是我的报错内容。老是提示“将截断字符串或二进制数据。”
附上我写的存储过程
CREATE PROCEDURE [dbo].[Uploadfile]
@fileName nchar(50),
@fileName_old nchar(50),
@filePath ntext,
@fileSize int,
@fileContent varbinary(MAX),
@fileType nchar(10)
AS
INSERT files(fileName, fileName_old, filePath, fileSize, fileContent, fileType)
VALUES(@fileName, @fileName_old, @filePath, @fileSize, @fileContent, @fileType)