Viewing 7 posts - 1 through 7 (of 7 total)
the modified noting 'Error converting data type varchar to bigint'
even though CompanyID is a bigint in DB:
Alter PROCEDURE [dbo].[sp_GetCompany]
@CompanyID VARCHAR(200) OUTPUT
AS
SET NOCOUNT ON;
SELECT @CompanyID = ISNULL(CAST(@CompanyID AS VARCHAR(200))+ ',', '')...
July 10, 2009 at 2:26 am
hope someone will see this though is better that i post a new thread:
i need to add a comma to each output and got this error
'Error converting data type varchar...
July 9, 2009 at 9:35 pm
i want to output the CompanyID from t1 that exist in t2 & t3,
if possible to create a parameter explicitly without any input of external parameter like @CompanyID
which will be...
July 9, 2009 at 6:52 am
Thanks for explaining this to me, i was quite confused as a sql newbie lol =)
July 1, 2009 at 8:57 pm
i guess i tried to put "a" as a field in the column of T1 and not inside T2 & T3, it doesnt allow any form of deletion from the...
July 1, 2009 at 8:05 pm
was going to put it in the SP. Thanks, it works!
June 24, 2009 at 11:28 pm
Viewing 7 posts - 1 through 7 (of 7 total)