My concern was more the log format where I would have data like this:
itemId workOrderId SubORderId UserId TimeStamp Action
456 458 45814 8 01/01/04 04:15 Que
456 458 45815 7 01/01/04 05:17 Que
456 458 45815 7 01/01/04 05:19 stop
456 458 45815 9 01/01/04 05:32 Que
456 458 45814 8 01/01/04 05:33 start
456 458 45814 8 01/01/04 05:45 stop
456 458 45814 9 01/01/04 05:46 Que
456 458 45815 9 01/01/04 05:55 start
456 458 45815 9 01/01/04 06:45 compl
456 458 45814 9 01/01/04 07:15 start
456 458 45814 9 01/01/04 08:15 compl
This obviously being a small subset of data. I would want things like time from first que to last complete at the item, work order and sub workorder level, amount of time spent in que, amount of time spent actually working by user (and I didn't show it, but two users can be working on the same sub order at the same time)
It just looks like a nightmare to me. Especially because this must be combined with data from a different database server (at least they are the same type).
Lisa