Oct 14, 2005 #1 phatening Programmer Aug 8, 2005 18 US Hello programmers, How would I use a stored procedure to access the database on a daily basis? How can I run a piece of code everytime my webapp has restarted and only once after each restart? I am using JSP's. Thanks =).
Hello programmers, How would I use a stored procedure to access the database on a daily basis? How can I run a piece of code everytime my webapp has restarted and only once after each restart? I am using JSP's. Thanks =).
Oct 18, 2005 #2 juliane26 Technical User Mar 10, 2004 207 GB the concept of a stored procedure is, that it runs inside the database. it can be scheduled over jobs that call it, but not by itself. so calling it would be part of your startup routine. Juliane Upvote 0 Downvote
the concept of a stored procedure is, that it runs inside the database. it can be scheduled over jobs that call it, but not by itself. so calling it would be part of your startup routine. Juliane