Get a first look at what's coming. The Developer Passport Australia Release Preview kicks off March 12. Dive in! 

what is base table in cmdb

akin9
Tera Contributor

what is base table in cmdb

2 ACCEPTED SOLUTIONS

_raj_esh
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 | ServiceNow Certified Technical Architect

View solution in original post

5 REPLIES 5

_raj_esh
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 | ServiceNow Certified Technical Architect

Hitoshi Ozawa
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