I'm writing a database load script in ColdFusion. It loads about 150,000 records across a dozen tables. I am running the script through a web browser request. Is there any way to kill the process once I've requested the page? I can stop the page in the browser, but the database inserts continue on the backend until the script has completed, which makes the debugging process very slow since I have to run the entire script each time. Is there anything I can do through the Java backend?
The environment I'm in is ColdFusion 8 running through IIS. I have the performance monitoring disabled, but I'd like to be able to mimic the ability to kill jobs as in the performance monitor.