Service Operations Insight

 View Only
  • 1.  SOI - Query all CIs in maintenance mode from the database

    Posted Jul 15, 2019 09:12 AM
    Hello All,

    I have to create a report to show all the current CIs in maintenance in SOI, does anyone know the fields in the database to query?

    thanks in advance,

    Best Regards,
    Rui Dinis
    HCL-PT


  • 2.  RE: SOI - Query all CIs in maintenance mode from the database

    Broadcom Employee
    Posted Jul 16, 2019 08:17 AM
    Hello Rui,

    Please use this query to list CIs in Maintenance

    select * from CI where Offline = 1

    Offline = 0 --> Production
    Offline = 1 --> Maintenance

    Thanks
    Brahma


  • 3.  RE: SOI - Query all CIs in maintenance mode from the database

    Posted Jul 16, 2019 11:27 AM
    Thanks Brahma.