0
votes
Stored Procedure returning an int
The first SELECT in your SPROC is yielding an INT into the temporary variable
SELECT @CONTRACT = CONTRACT FROM [tbl_property] WHERE [PROPREF] = @PROPREF
which is …
