Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
mobile@digitaltrendz.co.z
Starting Member
25 Posts |
Posted - 2009-01-21 : 04:57:30
|
Hi. I hope this is the correct place for this issueI have created an extended SP that has 3 input parameters, which updates a table . This SP works fine. I created an extended SP from this.The extended SP was created fine. I have to execute it from a SQL function. It just has to be that way so please do not ask why.When I execute the extended SP it executes with no errors I can see, but it does not update the required table.I tried the following to executeEXEC Master..Review_CalcBenefitBy 1,0,2285701.81this with and without quotation marks;EXEC Master..Review_CalcBenefitBy @SelectedClassInt='1',@SelectedPID='0',@BasicSalary='2285701.81'this with declared parametersEXEC Master..Review_CalcBenefitBy @SelectedClassInt=@ClassInt,@SelectedPID=@PID,@BasicSalary=@Salary |
|
|
|
|