what is base table in cmdb

akin9
Tera Contributor

what is base table in cmdb

2 ACCEPTED SOLUTIONS

Raj_Esh
Kilo Sage
Kilo Sage

Hi Sudhakar,

 

 

  • The Base Configuration Item [cmdb] table, which is the core CMDB table for non IT CIs (descending classes are non IT CIs).
  • The core Configuration Item [cmdb_ci] table, which stores the basic attributes of all the CIs. ...
  • The CI Relationship [cmdb_rel_ci] table, which defines all relationships between CIs.

 

Hope it helps.

 

Thanks,

Raj

--Raj

View solution in original post

5 REPLIES 5

Raj_Esh
Kilo Sage
Kilo Sage

Hi Sudhakar,

 

 

  • The Base Configuration Item [cmdb] table, which is the core CMDB table for non IT CIs (descending classes are non IT CIs).
  • The core Configuration Item [cmdb_ci] table, which stores the basic attributes of all the CIs. ...
  • The CI Relationship [cmdb_rel_ci] table, which defines all relationships between CIs.

 

Hope it helps.

 

Thanks,

Raj

--Raj

Hitoshi Ozawa
Giga Sage
Giga Sage

Hi Sudhakar,

Not sure about the question. If it's about tables in CMDB, following page list all the CMDB.

https://docs.servicenow.com/bundle/quebec-servicenow-platform/page/product/configuration-management/...

cmdb_ci inherits cmdb table. cmdb_rel_ci table does not have a parent table.

Following script will output parent table hierarchy.

var table = new TableUtils("<table name>"); // replace <table name> with table to find parent of. e.g. cmdb_ci
gs.print(table.getTables());

akin9
Tera Contributor

Thank you all for reply