![]() |
ChatGPT 6/16/2025 |
Certainly! To run a stored procedure from an ASPRunner.NET application when a user saves a record on an Edit page, you can use the following steps: Steps to Execute a Stored Procedure on Save
Important Considerations
By following these steps, you should be able to execute a stored procedure with a value passed from the edit page effectively. If you have any further questions or need more assistance, feel free to ask! |
![]() |
Sergey Kornilov admin 6/16/2025 |
Did you have a chance to check this relevant article in the manual? |
M
|
MSchell author 6/18/2025 |
Edit Page - After Record updated string sql = DB.PrepareSQL("EXEC SendSSIS_PTF_EMAIL ':1'", values["PTFTrackingNumber"].ToString()); Doesn't appear to work, builds successfully, no errors |
![]() |
Sergey Kornilov admin 6/19/2025 |
Did you perform any troubleshooting? I.e. did you try to hardcode the stored procedure parameter? |
M
|
MSchell author 6/20/2025 |
this Stored Procedure was running an SSIS Integration Package. It appears to be a security issue that to execute an SSIS package from a Stored Procedure requires a windows account and not a SQL account "The CLR methods specifically reject non-Windows authentication" I do have a Proxy account, but can't figure out how to pass it downstream for the Web Server to use it. Any suggestions? The error usin a SQL account is: The method referenced didn't return any errors. I changed it to this, and was able to capture the error: string PTFNumber = values["PTFTrackingNumber"].ToString(); |
![]() |
Sergey Kornilov admin 6/20/2025 |
This is not something we can help you with. Talk to your web server or SQL Server admin. Maybe they know how to configure it properly. |