Params in sprocs

  • exec sp_DeleteDatafromAudit

    @ProcMonth = 9

    @Company = FUL

    @Extract_type =A

    Anyone know why the syntax for this statement is failing? Something about encapsulating the parameters??

  • You will need to put commas (,) between your Params..

    exec sp_DeleteDatafromAudit

    @ProcMonth = 9 ,

    @Company = 'FUL',

    @Extract_type ='A'

  • That worked grand, thanks for the quick reply!!!

    🙂

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

You must be logged in to reply to this topic. Login to reply