Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)

  • RE: output parameter Question

    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))+ ',', '')...

  • RE: output parameter Question

    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...

  • RE: output parameter Question

    Glad that it works thanks!

  • RE: output parameter Question

    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...

  • RE: Deletion with LIKE Variable

    Thanks for explaining this to me, i was quite confused as a sql newbie lol =)

  • RE: Deletion with LIKE Variable

    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...

  • RE: Insert DateTime into SP

    was going to put it in the SP. Thanks, it works!

Viewing 7 posts - 1 through 7 (of 7 total)