vote up 1 vote down star

Hi,

Can anyone please point out what im doing wrong with this Stored Procedure please. I cant get it to compile and my software isnt giving any useful clues as to what is wrong with it.

CREATE PROCEDURE web.createSubscriptions
   (
   @Member_Id BIGINT,
   @Trans_type VARCHAR(100),
   @Payment_Status VARCHAR(100),
   @Payment_Date DATETIME,
   @Trans_Id VARCHAR(100)
   )

AS
DECLARE @tmpType VARCHAR(15)
BEGIN

INSERT INTO TBL_SUBSCRIPTIONS (subs_MemberID, subs_Type, subs_Status, subs_DateGenerated, subs_PaypalTransaction) VALUES(@Member_Id, @Trans_Type, @Payment_Status, @Payment_Date, @Trans_Id)

IF(@Trans_type = 'subscr_signup')
    BEGIN
    @tmpType = 'premium'
    END
ELSE(@Trans_type = 'subscr_cancel')
    BEGIN
    @tmpType = 'basic'
    END

UPDATE TBL_MEMBERS
SET members_Type = @tmpType
WHERE members_Id = @Member_Id

END
flag

80% accept rate

7 Answers

vote up 3 vote down check

Nick is right. The next error is the else should be else if (you currently have a boolean expression in your else which makes no sense). Here is what it should be

ELSE IF(@Trans_type = 'subscr_cancel')
    BEGIN
    SET @tmpType = 'basic'
    END

You currently have the following (which is wrong):

ELSE(@Trans_type = 'subscr_cancel')
    BEGIN
    SET @tmpType = 'basic'
    END

Here's a tip for the future- double click on the error and SQL Server management Studio will go to the line where the error resides. If you think SQL Server gives cryptic errors (which I don't think it does), then you haven't worked with Oracle!

link|flag
Excellent thanks. Silly mistake to make. ;-( – Munklefish Nov 6 at 14:45
Glad it is sorted now. – RichardOD Nov 6 at 14:47
vote up 7 vote down

It isn't giving any errors? Try
SET @tmpType = 'premium'
and
SET @tmpType = 'basic'

link|flag
I just tried that and it returns the following unhelpful error Incorrect syntax near '@Trans_type'. – Munklefish Nov 6 at 14:39
That's definitely part of the problem – RichardOD Nov 6 at 14:41
My answer has the next fix. :-) – RichardOD Nov 6 at 14:42
vote up 2 vote down

Are you missing the 'SET' statement when assigning to your variables in the IF .. ELSE block?

link|flag
I just tried that and it returns the following unhelpful error "Incorrect syntax near '@Trans_type'" – Munklefish Nov 6 at 14:41
vote up 1 vote down

try

set @tmptype
link|flag
I just tried that and it returns the following unhelpful error "Incorrect syntax near '@Trans_type'" – Munklefish Nov 6 at 14:41
vote up 1 vote down

yeah Nick is right.

You need to use SET or SELECT to assign to @tmpType

link|flag
I just tried that and it returns the following unhelpful error "Incorrect syntax near '@Trans_type'" – Munklefish Nov 6 at 14:40
See my answer for the next fix... – RichardOD Nov 6 at 14:44
vote up 0 vote down

Just a tip for this, you don't need the BEGIN and END if it only contains a single statement.

ie:

IF(@Trans_type = 'subscr_signup')    
 set @tmpType = 'premium' 
ELSE iF(@Trans_type = 'subscr_cancel')  
     set    @tmpType = 'basic'
link|flag
vote up -1 vote down

try

IF(@Trans_type = 'subscr_signup')    
BEGIN 
 set @tmpType = 'premium' 
 END
ELSE iF(@Trans_type = 'subscr_cancel')  
  begin
     set    @tmpType = 'basic'  
  END
link|flag
That won't work. Else needs to be else if. – RichardOD Nov 6 at 14:47
bit of an odd comment coming so long after the real answer has been revealed. ;-) – Munklefish Nov 6 at 14:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.