Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Converstion Failed
Message
From
24/04/2009 02:32:32
 
 
To
All
General information
Forum:
Microsoft SQL Server
Category:
Stored procedures, Triggers, UDFs
Title:
Converstion Failed
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01396197
Message ID:
01396197
Views:
139
Hi ,

I am also having same problem but its not because of the list , i am using a store proc below :


CREATE PROC dbo.testingloop

(

DECLARE @testid varchar(max)
)

AS
BEGIN
SET NOCOUNT ON

DECLARE @SQL varchar(600)

SET @testvalue = CURSOR FOR
SELECT [test ID]) FROM Data42 where [test ID] = 36

OPEN @testvalue

FETCH NEXT
FROM @testvalue INTO @testid

WHILE @@FETCH_STATUS = 0

BEGIN

' My update statement here

END

END

but i am getting error where there is a [test id] value 12345 - 5 , actually in Data42 table the type of [test id] is nvarchar and in my updating table is varchar , but i think the error is at line 'SET @testvalue = CURSOR FOR

My Error Message 'Conversion failed when converting the varchar value '12345-2' to data type int.'
Next
Reply
Map
View

Click here to load this message in the networking platform