Why could this process have crashed?
I have an 8AM Access macro that verifies certain SQL tables are up to date. For business logic reasons, the Access file is stored and run on both my local machine and a virtual machine. It's pretty simple and almost always runs without problems:
- Windows task scheduler kicks off an Access macro.
- The ma开发者_开发百科cro runs queries on several tables from our SQL server to find the date those tables were last updated.
- Results are saved to a table in the same Access file.
This morning, the local process ran fine, but the VM process didn't return any records (I'm pretty sure it crashed, but I didn't capture the error message). Can anyone guess why the process on the virtual machine crashed, but the exact same process on the local didn't crash?
Edit
I should add that everything on my local and the virtual run independently of each other.
Are you positive the VM process started? at 8:00 AM?
If the virtual machine clock was running slow, perhaps the VM thought it was before 8:00 AM when you checked.
精彩评论