diff --git a/docs/dcu-datacatalog.md b/docs/dcu-datacatalog.md index a35b5d8..45240aa 100644 --- a/docs/dcu-datacatalog.md +++ b/docs/dcu-datacatalog.md @@ -85,4 +85,5 @@ Output tables (all SCD2): * [MPE_DATACATALOG_VARS](/tables/mpe_datacatalog_vars) - Column attributes * [MPE_DATASTATUS_CATS](/tables/mpe_datastatus_cats) - Frequently changing catalog attributes (such as created / modified datetimes and number of entries) * [MPE_DATASTATUS_LIBS](/tables/mpe_datastatus_libs) - Frequently changing library attributes (such as size & number of tables) +* [MPE_DATASTATUS_OBJS](/tables/mpe_datastatus_objs) - Frequently changing catalog object attributes (such as created / modified datetimes and library concatenation level) * [MPE_DATASTATUS_TABS](/tables/mpe_datastatus_tabs) - Frequently changing table attributes (such as size & number of rows) diff --git a/docs/img/datastatus_objs.png b/docs/img/datastatus_objs.png new file mode 100644 index 0000000..711e14c Binary files /dev/null and b/docs/img/datastatus_objs.png differ diff --git a/docs/tables/mpe_datacatalog_cats.md b/docs/tables/mpe_datacatalog_cats.md index 67be128..a2f3c0c 100644 --- a/docs/tables/mpe_datacatalog_cats.md +++ b/docs/tables/mpe_datacatalog_cats.md @@ -10,7 +10,7 @@ og_image: /img/datacatalog_cats.png The `MPE_DATACATALOG_CATS` table contains the catalogs available in each library. -More frequently changing attributes are stored in [MPE_DATASTATUS_CATS](/mpe_datastatus_cats). +More frequently changing attributes are stored in [MPE_DATASTATUS_CATS](/tables/mpe_datastatus_cats). To trigger a scan, see the Refresh Data Catalog [instructions](/dcu-datacatalog/#refreshing-the-data-catalog). diff --git a/docs/tables/mpe_datacatalog_objs.md b/docs/tables/mpe_datacatalog_objs.md index 902354a..248c001 100644 --- a/docs/tables/mpe_datacatalog_objs.md +++ b/docs/tables/mpe_datacatalog_objs.md @@ -22,7 +22,7 @@ To trigger a scan, see the Refresh Data Catalog [instructions](/dcu-datacatalog/ - 🔑 `TX_TO num`: SCD2 close datetime - 🔑 `LIBREF char(8)`: SAS Libref (8 chars) - 🔑 `MEMNAME char(64)`: The catalog member name -- `OBJNAME char(32)`: The object name -- `OBJTYPE char(8)`: The object type +- 🔑 `OBJNAME char(32)`: The object name +- 🔑 `OBJTYPE char(8)`: The object type - `OBJDESC char(256)`: The object description - `ALIAS char(32)`: The object alias \ No newline at end of file diff --git a/docs/tables/mpe_datastatus_cats.md b/docs/tables/mpe_datastatus_cats.md index 7efbf2d..0237e15 100644 --- a/docs/tables/mpe_datastatus_cats.md +++ b/docs/tables/mpe_datastatus_cats.md @@ -2,7 +2,7 @@ layout: article title: MPE_DATASTATUS_CATS description: The MPE_DATASTATUS_CATS table captures frequently changing SAS catalog attributes such as created / modified datetimes and number of entries. -og_title: MPE_DATACATALOG_CATS Table Documentation +og_title: MPE_DATASTATUS_CATS Table Documentation og_image: /img/datastatus_cats.png --- diff --git a/docs/tables/mpe_datastatus_objs.md b/docs/tables/mpe_datastatus_objs.md new file mode 100644 index 0000000..5e1a1ef --- /dev/null +++ b/docs/tables/mpe_datastatus_objs.md @@ -0,0 +1,28 @@ +--- +layout: article +title: MPE_DATASTATUS_OBJS +description: The MPE_DATASTATUS_OBJS table captures frequently changing SAS catalog object attributes such as created / modified datetimes and library concatenation level +og_title: MPE_DATASTATUS_OBJS Table Documentation +og_image: /img/datastatus_objs.png +--- + +# MPE_DATASTATUS_OBJS + +The `MPE_DATASTATUS_OBJS` table captures frequently changing SAS catalog object attributes such as created / modified datetimes and library concatenation level + +To trigger a scan, see the Refresh Data Catalog [instructions](/dcu-datacatalog/#refreshing-the-data-catalog). + +![](/img/datastatus_objs.png) + +## Columns + +- `TX_FROM num`: SCD2 open datetime +- 🔑 `TX_TO num`: SCD2 close datetime +- 🔑 `LIBREF char(8)`: SAS Libref (8 chars) +- 🔑 `MEMNAME char(64)`: The catalog member name +- 🔑 `OBJNAME char(32)`: The object name +- 🔑 `OBJTYPE char(8)`: The object type +- `CREATED num`: Creation datetime (based on earliest created object) +- `MODIFIED num`: Modified datetime (based on last modified object) +- `LEVEL num`: Library concatenation level + diff --git a/mkdocs.yml b/mkdocs.yml index 5b9337d..83c4e98 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -25,6 +25,7 @@ nav: - MPE_DATACATALOG_VARS: tables/mpe_datacatalog_vars.md - MPE_DATASTATUS_CATS: tables/mpe_datastatus_cats.md - MPE_DATASTATUS_LIBS: tables/mpe_datastatus_libs.md + - MPE_DATASTATUS_OBJ: tables/mpe_datastatus_objs.md - MPE_DATASTATUS_TABS: tables/mpe_datastatus_tabs.md - MPE_LOCKANYTABLE: tables/mpe_lockanytable.md - MPE_REQUESTS: tables/mpe_requests.md