BusinessObjects Environment Cleanup activity using Query builder
BusinessObjects Environment assessment using Query builder This includes identifying unused BI content (Users, Universes, reports,etc.). We are going to see more in detail about identification of unused objects using Query Builder in this document. Let us see how to identify unused objects in each category listed below 1. User Community a. Users not logged in for the past 6 months SELECT TOP 1000 SI_NAME, SI_LASTLOGONTIME FROM CI_SYSTEMOBJECTS WHERE SI_NAME NOT IN ('ADMINISTRATOR','GUEST') AND SI_KIND='USER' AND SI_LASTLOGONTIME < '2013.06.30' ORDER BY SI_NAME b. Users who never logged in to system SELECT TOP 1000 SI_NAME, SI_LASTLOGONTIME FROM CI_SYSTEMOBJECTS WHE...