# Data Objects in Detail

## Databases

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXf29f8CafuwdnkW5M5AjSI2FRCBVpyoqy7XBE214UFlaL4c000s-yOinFg_q9W5-L_adGPGIVAMKrh5u_mGWi2Nce1anflS_ZuRe2JAT4sLuHNv9Bm9d5S5YANWaNcBPb0bujmgcw?key=eh27jyUTYPq1_oVnDl43yA" alt=""><figcaption></figcaption></figure>

The databases display the list of schema’s objects, along with Queries, Codes, Functions, Views, Procedures, Triggers, Synonyms, and other query types of a Schema in separate tabs at the bottom of the page.

Here are additional attributes displayed on the schema-level summary page alongside the fundamental attributes explained earlier.

| Attributes                  | Description                                                                                                          |
| --------------------------- | -------------------------------------------------------------------------------------------------------------------- |
| Row Count                   | The row count at the schema level displays the total number of rows across all tables within that particular schema. |
| Table Count                 | Displays the total number of tables in a Schema.                                                                     |
| Last Anomaly Detection Date | Displays the date and time when a data anomaly was last detected on the data object                                  |

9-Dots Action Items specific to Databases

| Actions                    | Meta Read | Meta Write |
| -------------------------- | --------- | ---------- |
| Profile                    | ❌         | ✅          |
| Profile Unprofiled Tables  | ❌         | ✅          |
| Profile & Detect Anomalies | ❌         | ✅          |

## Tables

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXc8vhnn0jKJ2oiq8zMzrw6LtvXBLzsppSw-4ZXekezfAtEznJ2D9lFeBk1yCiTe-J-425w7OU3s6J_dB_1D3SF0pTLKlOeDBYZLGDdRzqBk90ulVPp28rjzA9y8WsUJgnALmKCa?key=eh27jyUTYPq1_oVnDl43yA" alt=""><figcaption></figcaption></figure>

Tables, topics, and views are included as a part of Tables. The table summary page displays a complete list of table columns associated with the table and their profiling attributes, shown in a convenient list view.

Below are additional attributes presented on the Table-level summary page alongside the fundamental attributes explained earlier.

| Attributes   | Description                                                                                                                                                                                                                                                                                                                                           |
| ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Row Count    | The row count at the schema level displays the total number of rows across all tables within that particular schema.                                                                                                                                                                                                                                  |
| Column Count | Displays the total number of columns present within that specific table.                                                                                                                                                                                                                                                                              |
| Type         | Specifies whether it falls into the categories of Tables, Views, or Materialized Views.                                                                                                                                                                                                                                                               |
| Has Relation | Indicates whether the table has relationships. Yes implies the presence of relationships; No indicates the absence of relationships.                                                                                                                                                                                                                  |
| Density      | <p>Indicates the degree to which a table is filled with unique values. It is the proportion of distinct values compared to the total values in the table. A higher density suggests more unique values, while a lower density indicates a more repetitive or uniform set of values. </p><p>Density formula - (Distinct Count / Total Count)\*100.</p> |
| Null Density | <p>Displays the ratio of null values to total values in a table.</p><p>Null Density formula - (Null Count / Total Count)\*100</p>                                                                                                                                                                                                                     |

9-Dots Action Items specific to Tables

| Actions                             | Meta Read | Meta Write |
| ----------------------------------- | --------- | ---------- |
| Profile                             | ❌         | ✅          |
| Profile & Execute Anomaly Detection | ❌         | ✅          |
| View in Query Sheet                 | ❌         | ✅          |

## Table Columns

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXc7WVE63ZFk4DjYAUNfsmHrN0vygmJTV2XWwZrsPCr-e7cXdJ8QMuZ-J6ljk_Re_gd8vChUfUU8K7I9lBywMPIrF21k6ha77M5U5gxrEC4G701lArnI9V15xFh-DmrpQy7GWoO2?key=eh27jyUTYPq1_oVnDl43yA" alt=""><figcaption></figcaption></figure>

The left panel menu displays all columns associated with a table and allows sorting and viewing based on preferences.

Each Table Column has a dedicated summary page with attribute details highlighting its distinctive characteristics. Lineage provides visibility at the column level, whereas pattern relationships provide a deeper understanding of how different data elements are interconnected within the application.

Here is the list of exclusive tabs associated with Table Columns.&#x20;

* **Relationships:** It displays a tabular list of all relationships gathered from remote sources via Primary Key - Foreign Key relationships, through advanced jobs, or manually added using the "Add Relationships" button within the application.
* **Pattern Relationships:** It identifies and displays the connections between table columns by analyzing data patterns. During profiling, pattern-matching algorithms detect matching patterns, such as repeated values or specific data structures. Pattern match score of secondary column = (Count of rows with matching patterns to the base column\* 50 ) / row count of the secondary table.

Below are additional attributes displayed on the Table-level summary page alongside the fundamental attributes explained earlier.

| Attributes                  | Description                                                                                                                                                                                                                                                                                           |
| --------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Length                      | Represents the maximum number of characters or bytes it can store.                                                                                                                                                                                                                                    |
| Key                         | Identifies if it is a Primary key or a Foreign Key.                                                                                                                                                                                                                                                   |
| Data Type                   | It denotes whether the column denotes an integer, varchar, char, date, time, boolean, decimal, float, text, etc.                                                                                                                                                                                      |
| Nullable                    | Table Columns are configured to permit or restrict null values at the time of creation at the remote source. If set to True, a column can have null values, signifying the absence of a value. Conversely, if set to False, a column must have a complete set of data and cannot contain blank cells. |
| Has Relation                | Indicates whether the table has relationships. Yes implies the presence of relationships; No shows the absence of relationships.                                                                                                                                                                      |
| Distinct Value/Percentage   | Refers to unique values not repeated in a data object or column. It helps to understand the uniqueness of the data object.                                                                                                                                                                            |
| Minimum Value               | Displays the lowest value from all the records in the column.                                                                                                                                                                                                                                         |
| Maximum Value               | Displays the highest value of all records in the column.                                                                                                                                                                                                                                              |
| Empty Count                 | Displays the number of empty records in a table column.                                                                                                                                                                                                                                               |
| Zero Count                  | Displays the number of records with values as ‘0’.                                                                                                                                                                                                                                                    |
| Null Value Count/Percentage | Null Value refers to the number of null or missing values in a specific column.                                                                                                                                                                                                                       |
| Is Masked                   | Indicates whether a column has been subjected to any masking policies.                                                                                                                                                                                                                                |
| Is Restricted               | Prevents unauthorized access by making the data object completely invisible or inaccessible when the option is applied. Only authorized users can view or interact with the data object.                                                                                                              |

**Top Values**

The Top Values section displays the table column's top 50 profiling statistics, which are repetitive.

{% hint style="info" %}
The Top Values only display the top 5 profiling statistics, but clicking “View All Values” displays the remaining ones.
{% endhint %}

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXeiYUshHaiku5IdsBnWfRCHt0X5C0E0sZYCjtjpkA4YRPp3X87qgOoyxyHxN9iCpgx3__y2nvrSJi4tvklF2FEhmMk2IbKOyg2QYvJ5CPUaKbClOPtfjLevSxxrqhYjQWfiWW7QLQ?key=eh27jyUTYPq1_oVnDl43yA" alt=""><figcaption></figcaption></figure>

9-Dots Action Items specific to Table Columns

| Actions                             | Meta Read | Meta Write |
| ----------------------------------- | --------- | ---------- |
| Profile                             | ❌         | ✅          |
| Profile & Execute Anomaly Detection | ❌         | ✅          |
| View in Query Sheet                 | ❌         | ✅          |

## Files

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXcCKtVaAjzGROecuDbAb6ZA5dX7o1DvR_wYIUnOW0E5h4u40FCN4fI7Sj88hQvZwwB2zVHRmTOJuIfRtKiH0IGHAzILRu32CDQ6jsn94OSDFLNDTzorSF5Js2TP4PgOtlELrM_rkg?key=eh27jyUTYPq1_oVnDl43yA" alt=""><figcaption></figcaption></figure>

The Data Catalog stores the first-level folders fetched from remote data sources directly, but subsequent sub-folders and files are not initially cataloged; instead, their file structure is stored in the File Manager module. Catalog all sub-folders and files to the Data Catalog directly from the File Manager.

Here is the list of exclusive tabs associated with Files.&#x20;

* **Cataloged Files (Folder):** It displays the Sub Folders and Files within a folder.&#x20;
* **Folder Analysis (Folder):** It provides valuable insights into the composition and arrangement of a selected folder in a connector.
* **Data (only for profiled File formats):** The Data tab for Files is available only for the file types that can be profiled. They are: .csv, .json, .parquet, .orc, .xlsx, .xls, .avro, .gz.
* **Sub Files (xlsx):** The Sub Files tab is present in .xlsx format and shows all the sheets available for an Excel file.

Below are additional attributes presented on the File level summary page alongside the fundamental attributes explained earlier. &#x20;

| Attributes  | Description                                                                 |
| ----------- | --------------------------------------------------------------------------- |
| Type        | Denotes whether it is a File or Folder.                                     |
| File Size   | Size of a specific file (not a folder) in bytes.                            |
| Remote Tags | Displays the list of tags assigned to the data object at the remote source. |

9-Dots Action Items specific to Files

| Actions                                             | Meta Read | Meta Write |
| --------------------------------------------------- | --------- | ---------- |
| Catalog all the subfolders (Folder only)            | ❌         | ✅          |
| Catalog all the files (Folder only)                 | ❌         | ✅          |
| Profile folders assuming same content (Folder only) | ❌         | ✅          |
| Uncatalog File/Folder                               | ❌         | ✅          |
| Run Folder Analysis (Folder only)                   | ❌         | ✅          |
| Profile file (File only)                            | ❌         | ✅          |

## File Columns

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXfcFrOBKO46TEPsYhDakzalkuOfKGb7lR2LDgbEbGXSKOgWIhW7IWtDsrfZWGhh-qnur6fLLEJmFEb1U65RL6QHbpRP8rIBxZkoMTLxIi-oqUlhJ1PB3CpcyuCKhGJ6wjQEqGnS?key=eh27jyUTYPq1_oVnDl43yA" alt=""><figcaption></figcaption></figure>

The File Columns tab displays the columns associated with the cataloged files.

Below are additional attributes presented on the File level summary page alongside the fundamental attributes explained earlier.&#x20;

| Attributes                  | Description                                                                                                           |
| --------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| Maximum Value               | Displays the highest value among all records in the File Column.                                                      |
| Minimum Value               | Displays the lowest value among all records in the File Column.                                                       |
| Data Type                   | It denotes whether the File Column denotes an integer, varchar, char, date, time, boolean, decimal, float, text, etc. |
| Zero Count                  | Indicates that the File Column has no data entries or records.                                                        |
| Empty Count                 | Displays the number of empty records.                                                                                 |
| Distinct Count/Percentage   | Represents the count of distinct values, excluding duplicates.                                                        |
| Null Value Count/Percentage | Refers to the number of occurrences of null or missing values.                                                        |

#### **Top Values**

The Top Values section displays the file column's top 50 profiling statistics, which are repetitive.

{% hint style="info" %}
The Top Values only display the top 5 profiling statistics, but clicking “View All Values” displays the remaining ones.
{% endhint %}

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXevVDiEUKuAYZcWbOY8ZbdskJd2ho8kBsCZynCHVrdDsIz-J8S8qIiNejEsTrRlxX_zA525bQCDrjUy-WDEj87yVN4ORqcKLI1ZUeYhYHTIt6G4QZe6HNjzvEIj3muYOgdsJQtUew?key=eh27jyUTYPq1_oVnDl43yA" alt=""><figcaption></figcaption></figure>

## Reports

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXeQIGd2k0l9xLJy937n3bVBV4mIv2f1fEHmGLT_crTxpe5Bs1BqxGkk42ezxIWgA8KNAtu1Thxf7qaP38m3y16ZxbtEBdDwbTwGGmNq2wWzKhY8sbOzMqA519cpD1FitddJkaqpXQ?key=eh27jyUTYPq1_oVnDl43yA" alt=""><figcaption></figcaption></figure>

In the Data Catalog, the Reports tab showcases all the reports crawled from connected source systems.&#x20;

Here is the list of exclusive sections associated with Reports.

* **Eye Frame:** The Eye Frame appears at the bottom of the Reports Summary Page. Clicking on it will redirect to the corresponding report in the Data Source.

Below are additional attributes displayed on the Report-level summary page alongside the fundamental attributes explained earlier. &#x20;

| Attributes   | Description                                                                                                                             |
| ------------ | --------------------------------------------------------------------------------------------------------------------------------------- |
| Column Count | Indicates the number of columns present in the report.                                                                                  |
| Path         | It represents the remote folder path where the report is stored.                                                                        |
| Type         | It displays the report type, such as datasets, workbooks, dashboards, titles, views, Webi, CrystalReports, Page, ColumnChart, map, etc. |

9-Dots Action Items specific to Reports

| Actions                       | Meta Read | Meta Write |
| ----------------------------- | --------- | ---------- |
| Add Reports to Dashboard      | ✅         | ✅          |
| Remove Reports from Dashboard | ✅         | ✅          |

## Report Columns

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXfj8Dyu3-xQHEZscTOdsiYstXxo4TJo4du1Th4RtWxCB4Rgz_q_zmizp4AtyQm0jlQty0H_v_h23eHswde0fiKW3uPXbw-0OXpOrIpI5lZnueN85qteBlRH7Ylt4G1W4KAbiUz2iw?key=eh27jyUTYPq1_oVnDl43yA" alt=""><figcaption></figcaption></figure>

The Report Columns tab displays report columns associated with a Report. The Data Source shows the columns used to build the Report after crawling the Connector.

Below are additional attributes displayed on the Report level summary page alongside the fundamental attributes explained earlier.

| Attributes | Description                                                                                         |
| ---------- | --------------------------------------------------------------------------------------------------- |
| Path       | Denotes the report's location, i.e., the folder path where the report is stored in a remote system. |
| Formula    | Displays the mathematical or logical expression used to analyze and present the data in a report.   |

## Codes

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXfeVglSRCmNCZ85R-CUHG2jCSj7YYTdxvAdSBg4PU9iQlWZA6pCqzJtKvDD8pL_b3P1YX2s2tm-_aH043LpMZmxeeKJ5-kT857uj069hv7tWjopo4remLeRTykTxO55YEjOFhui5A?key=eh27jyUTYPq1_oVnDl43yA" alt=""><figcaption></figcaption></figure>

Codes display queries crawled from connected data sources, queries executed using the Query Sheet,  and queries added through the  "Data Catalog > Codes > Add New Code" option for a selected  Connector/Schema.

Here is the list of exclusive tabs associated with Codes.

* **Associations:** It displays a single, cohesive view of the data objects (Tables, Files, or Reports) on which queries execute within the system.

Below are additional attributes displayed on the Code summary page alongside the fundamental attributes explained earlier. &#x20;

| Attributes              | Description                                                                                                                                       |
| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
| Catalog Status          | If it is cataloged in the Data Catalog, it shows as "Yes." If not, it shows as "No."                                                              |
| Last Run Date           | Represents the date when the specified codes were last executed or run.                                                                           |
| Job Type                | Denotes the type of job associated with the code, such as View, Function, Procedure, Trigger, workflow, extraction, transformation, loading, etc. |
| SQL Type                | Denotes whether DDL, DML, DCL, and supported formats.                                                                                             |
| Lineage Status          | Indicates success, failure, or partial building of lineages.                                                                                      |
| Parent Query            | Distinguishes between datasets that are considered parent datasets, especially when working with codes with similar names.                        |
| Has Association         | Indicates the presence of connections or links a query has with other data objects, enhancing the understanding of relationships.                 |
| Last Lineage Build Date | Displays the date when the lineage was built for data objects using this query or code.                                                           |

9-Dots Action Items specific to Codes

| Actions                          | Meta Read | Meta Write |
| -------------------------------- | --------- | ---------- |
| Add New Code                     | ❌         | ✅          |
| Recommend Lineage and References | ❌         | ✅          |
| Delete Association               | ❌         | ✅          |
| Delete Lineage                   | ❌         | ✅          |
| Delete Code                      | ❌         | ❌          |

## APIs&#x20;

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXfm0Q04HjK5hoA4QndwN9oRZau4IL6D9_WlA9nXjZelNIQ2IlAw_vmRUjkt4katBrskFddYNEQ-EnO-ZiQgw6ZibMKOrapDZYv6xmqMJaDLf7LeEVVsf_-HP9K8cqzGOCM36Y9gPg?key=eh27jyUTYPq1_oVnDl43yA" alt=""><figcaption></figcaption></figure>

The API Connector allows the crawling of APIs with support for Swagger and OpenAPIv3 types, enabling security measures to limit API access to authorized users.

Below are additional attributes displayed on the API level summary page alongside the fundamental attributes explained earlier.

| Attributes      | Description                                                                                                                              |
| --------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| URL             | Denotes the web address where the API can be accessed. It defines the location for making requests and receiving responses from the API. |
| Path            | Denotes the NFS or GIT path where APIs are stored.                                                                                       |
| Method          | Defines the actions or operations that can be performed by calling specific functions or endpoints within the API.                       |
| Endpoint        | Defines the various operations and data manipulations that can be performed using the API.                                               |
| Attribute Count | Displays the total number of attributes present in the API.                                                                              |

## API Attributes

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXf8qm4KSMOkhtUS7RyeyfH9CpkwyeSjZK7tBNJ2ljf2O-bVCmeh4Nb7o22_FHbBo7KisorxF6Q5zGMkwAUFsrILjfaZUHmSO5Pfl8OLH7tAyRtynIrqLglxUZAbRKiOmBEje7ftyg?key=eh27jyUTYPq1_oVnDl43yA" alt=""><figcaption></figcaption></figure>

API Attributes are the Request and the Response Parameters inside any API. They can be crawled into the Data Catalog, allowing for the assignment of tags, business glossary terms, classifications, and other metadata-related actions.

Below are additional attributes displayed on the API level summary page alongside the fundamental attributes explained earlier.

| Attributes | Description                                                                                        |
| ---------- | -------------------------------------------------------------------------------------------------- |
| Type       | The Type shows whether the Attribute is a Request or a Response parameter.                         |
| Data Type  | Specifies the Data Type of an API Attribute and shows if it’s a string, integer, array, or number. |

## Actions on Data Catalog Objects

The Data Catalog 9-Dots icon provides various options for efficient control and organization of data objects, from raising service requests to adding objects to data quality, impact analysis, watchlist, dashboard, and more. Actions are customized based on access permissions. The 9-Dots option is available in the List View for bulk action and on the Summary Page of that selected data object.

{% hint style="info" %}
Database (DB), Tables (T), Table Column (TC), Files (F), File Columns (FC), Reports (R), Reports Columns (RC), Codes (C), Application Programming Interface (API) & Application Programming Interface Attributes (APIA).
{% endhint %}

| Action                              | Objects                                          | Meta Read | Meta Write |
| ----------------------------------- | ------------------------------------------------ | --------- | ---------- |
| Add/ Remove to My Watchlist         | <p>DB, T, TC, R, RC, C, API, APIA</p><p><br></p> | ✅         | ✅          |
| Add/Remove Tags                     | DB, T, TC, F, FC, R, RC, C, API, APIA            | ❌         | ✅          |
| Add /Remove Terms                   | DB, T, TC, F, FC, R, RC, C, API, APIA            | ❌         | ✅          |
| Add/Remove to Default Project       | DB, T, TC, F, FC, R, RC, C, API, APIA            | ✅         | ✅          |
| Service Desk                        | DB, T, TC, F, FC, R, RC, APIs, APIA              | ✅         | ✅          |
| Data Quality                        | DB, T, TC, F, FC, C, APIs, APIA                  | ✅         | ✅          |
| Update Governance Roles             | T, TC, F, FC, R, RC, C, API, APIA                | ❌         | ✅          |
| Change Certification Type           | T, TC, F, FC, R, API, APIA                       | ❌         | ❌          |
| Anomaly Detection Settings          | DB, T, TC                                        | ✅         | ✅          |
| Add to Impact Analysis              | T, TC, F, FC, R, RC, API, APIA                   | ✅         | ✅          |
| Process Upstream/Downstream Objects | T, TC, F, FC, R, RC, C, API, APIA                | ❌         | ✅          |
| Custom Fields History               | DB, T, TC, F, FC, R, RC, C, API, APIA            | ✅         | ✅          |
| Configure Search Keyword            | DB, T, TC, F, FC, R, RC, C, API, APIA            | ❌         | ✅          |
| Download                            | DB, T, TC, F, FC, R, RC, C, API, APIA            | ✅         | ✅          |

{% hint style="info" %}
Certification Type can only be changed by the Governance Roles of the object and the Admin. For details of 9 Dots actions, please click [here.](https://docs.ovaledge.com/~/changes/968/references/data-catalog/9-dots-action-menu)&#x20;
{% endhint %}

***

Copyright © 2025, OvalEdge LLC, Peachtree Corners, GA USA
