Ok, I was able to resolve the problem. Here's the solution for anyone else who may come across this...
My original snippet from the update statement to convert seconds to minutes was:
load_duration = datediff(ss, last_load_start , getdate()) / 60
Let's say the duration was 2.73 minutes. The above would only return 2.0 minutes.When I change the...
Leave a comment: