Batches in KAFC and Kofax Capture
308216
Question / Problem:
Is there a query to compare the batches reported by KAFC vs Kofax Capture?
Answer / Solution:
You can run the following query to find a list of batches that KAFC has of currently active batches in Kofax Capture:
SELECT batchguid, COUNT(*) , MIN(sessionendtime), MAX(sessionendtime) FROM kafc_data..InstantQueue
GROUP BY BatchGuid HAVING COUNT(*) >= 1 ORDER BY MIN(sessionendtime) DESC
The query will return a count result of batches in KAFC, with the BatchGuid and the Session End time is descending order. This is useful to troubleshoot batches not matching with KAFC and Batch Manager. The BatchGuid represents a batch and a batch name and can be used to query HistoryOfBatch table to find the batch.

Applies to:
Product | Version | Category |
---|---|---|
KAFC | 2.0 | Database |
KAFC | 2.1 | Database |