cancel
Showing results for 
Search instead for 
Did you mean: 

Control Room - Work Queue View

RatnaRatna
Level 2
I wanted to know if there is a  view or a stored procedure by which BP is pulling the information on the front end Control Room Queue View . 
2 REPLIES 2

TomCirone
Level 6
All the information is stored in tables starting with BPAWorkQueue.  BPAWorkQueue table is the queue information, BPAWorkQueueItem is most of the information on the an item in the queue, BPAWorkQueueItemTag links the tags with the items, etc.

BenKirimlidis
Level 7
declare         @LoadFromDate as datetime set               @LoadFromDate = convert(date,getdate()-30);   -- gets everything from last 30 days select                             WQI.KeyValue                   ,WQI.LastUpdated                   ,WQI.Loaded                   ,WQI.Completed                      ,WQI.Exception                            ,WQI.Deferred                        ,WQI.Worktime                       ,WQI.Data           -- Might not be needed but handy if you can extract the data                   ,WQI.SessionID                   ,WQI.[Status]                   ,WQI.ExceptionReason from        XXXXXX.dbo.BPAWorkQueueItem as WQI with (nolock)    -- Replace XXXX with your DB name where       WQI.LastUpdated >= @LoadFromDate ;