J
jobs
I have a growning list of stored procedures that accept a single string
as a parameter.
The list and parameters are maintained in a table with two columns.
Some of the Stored procedures take hours to complete.
the stored procedure (like a job number) that can later be used to
report what stored procedures are still running.
Can I do this in ASP.NET via ADO.NET and sql commands?
If possible I don't want to create an sql server 2005 job for every
stored procedure. If possible, not have to create any jobs at all. I've
been able to do the above with an Oracle Procedures and the same
asp.net solution using DBMS.Job_Submit.
as a parameter.
The list and parameters are maintained in a table with two columns.
Some of the Stored procedures take hours to complete.
procedures and the page come right back and recording infomation aboutFrom asp.net, I want users to be able to select and launch the stored
the stored procedure (like a job number) that can later be used to
report what stored procedures are still running.
Can I do this in ASP.NET via ADO.NET and sql commands?
If possible I don't want to create an sql server 2005 job for every
stored procedure. If possible, not have to create any jobs at all. I've
been able to do the above with an Oracle Procedures and the same
asp.net solution using DBMS.Job_Submit.