- Put the BSV into test mode
- Open up a database workbench tool (in my case MySQL Workbench)
- In the workbench open up the table BASTESTDB(BS)WORKLOG
- Go back to AwareIM and login to test mode with admin account
- Press the "Start Clock" button which is in the administrator VP along the top of the screen
- Open up the workbench and look for the recent row entry it should be something like this below.
ID: 12345 (Actually the next number in sequence from BAS_IDGEN.MAX_ID)
BASVERSION: 1
BASTIMESTAMP: 2015-01-22 11:39:41 (Actually the current timestamp on the system at the time)
START_TIME: 2015-01-22 11:39:41 (Actually the current timestamp on the system at the time)
END_TIME: NULL
DURATION_SECONDS: NULL
- Go back to AwareIM Test Mode and now press "Stop Clock"
- Go back to the workbench and look at the updated row. It will look something like this.
ID: 12345 (Actually the next number in sequence from BAS_IDGEN.MAX_ID)
BASVERSION: 2
BASTIMESTAMP: 2015-01-22 11:40:06 (Actually the current timestamp on the system at the time)
START_TIME: 2015-01-22 11:39:41 (Actually the current timestamp on the system at the time)
END_TIME: 2015-01-22 11:40:00
DURATION_SECONDS: 0.316667
The correct answer should be
ID: 12345 (Actually the next number in sequence from BAS_IDGEN.MAX_ID)
BASVERSION: 2
BASTIMESTAMP: 2015-01-22 11:40:06 (Actually the current timestamp on the system at the time)
START_TIME: 2015-01-22 11:39:41 (Actually the current timestamp on the system at the time)
END_TIME: 2015-01-22 11:40:06
DURATION_SECONDS: 0.416667
note i know the DURATION_SECONDS column name is misleading, the reason why it named it this was purely due to me trying to figure out the difference in seconds, however for me it was easier just working with minutes. I just didn't update the attribute name.