Important note: do not modify CSDB data and modules, just use READ operations only.
You can refer official documentation to explain part of CSDB information as CommCell Views, but no more information as of now. So it's slightly hard nowadays to generate your own reports and/or workflows directly refer to CSDB tables which contain all CommCell information.
This article provides simple examples to retrieve data by your own.
In the first place, you can run any SQL queries from Microsoft SQL Server Management Studio or DBeaver as you like (and recent Linix CommServe environment, still there must be some tricks to gain access, though).
To keep your activities safe you need to keep uncommitted read from any table as one of the following techniques:
-- place the following at the top of query
set transaction isolation level read uncommitted;
-- place with(nolock) statement in each table reference
select * from APP_Application with(nolock)
Most of you would like to get the list of subclients along with client information (you can obtain the same from CommCell Configuration reports but this provides slightly complicated and verbose information).
CSDB already have a view named CommCellSubClientConfig
which would serve the purpose, but it's slightly complicated
To ontain the list, you need to refer the following 4 tables:
select * from APP_Application
select * from APP_Client
select * from APP_InstanceName
select * from APP_BackupSetName
First one, App_Application
contains actual Subclient information, connecting to other 3 tabiles which has foreign keys to client, instance and backupset, each stored in straight-forward naming columns.
To combine these 4 tables, you can generate like the following query (this omits with(nolock)):
select
apc.name as 'Client Name'
,api.name as 'Instance Name'
,apb.name as 'BackupSet Name'
,apap.subclientName as 'Subclient Name'
from APP_Application apap
inner join app_client apc on apap.clientId = apc.id
inner join APP_InstanceName api on apap.instance = api.id
inner join APP_BackupSetName apb on apap.backupSet = apb.id
Additionally you can show the iDA Type defined in APP_iDAType
table, combining this (and adding last modified date of subclient) as:
select
apc.name as 'Client Name'
,api.name as 'Instance Name'
,apb.name as 'BackupSet Name'
,apap.id
,apap.subclientName as 'Subclient Name'
,apit.name as 'iDA Type'
,DateAdd(second, apap.modified+3600*0, '1970-01-01') as 'Last Modified (in GMT)'
from APP_Application apap
inner join app_client apc on apap.clientId = apc.id
inner join APP_InstanceName api on apap.instance = api.id
inner join APP_BackupSetName apb on apap.backupSet = apb.id
inner join APP_iDAType apit on apap.appTypeId = apit.type
order by apap.id
Hope this information helps a bit,