Msg 8114, Level 16, State 4 ved stored procedure
HejsaHar problemer med en stored procedure.
Får følgende fejl:
Msg 8114, Level 16, State 4 ....
Error converting data type nvarchar to int.
SP:
CREATE PROCEDURE USP_AddNewManuscript
@uniqueIDCountry char(3),
@uniqueIDNo int,
@m_title char(300),
@country char(30),
@m_receivedDate datetime,
@Outvar Int = 0 OUTPUT
AS
INSERT INTO [Manuscript] (uniqueIDCountry, uniqueIDNo, m_title, country, m_receivedDate)
VALUES
(@uniqueIDCountry, @uniqueIDNo, @m_title, @country, @m_receivedDate)
SELECT @Outvar = @@IDENTITY
RETURN
GO
kalder med følgende data:
'DEN', 105, 'Denmark script','Denmark','2004-10-14'
Hvad går galt?