Data management
Summarize
Summary of Data Management Administer the ServiceNow AI Platform
Data management within the ServiceNow AI Platform allows administrators to effectively store, import, export, and archive data, ensuring a well-structured database environment. This includes configuring tables and fields that store information as records, which can be presented in various formats.
Show less
Key Features
- Database Structure: Information is organized in tables, each containing records and fields. Tables can extend other tables, create one-to-many relationships through reference fields, glide lists, and document ID fields, or establish many-to-many relationships for bidirectional access.
- Data Management Tools: Tools such as Schema Map provide a visual representation of table relationships, while Data Dictionary tables offer detailed information on database schema, including table definitions and field labels.
- Data Management Plugins: Key plugins include Data Archiving for performance optimization, Database Rotations for managing large tables, and Many to Many task relations for defining complex relationships between task tables.
- Record Management: The unique Sys ID identifies each record, facilitating effective tracking. Administrators can safely delete and update records using delete jobs and batch updates, respectively.
- System Clone: The System Clone application and Clone Admin Console streamline the process of copying data between instances, providing improved visibility and management during cloning operations.
- Domain Separation: Supports logical separation of data and tasks into domains, controlling user access and visibility effectively.
Key Outcomes
By leveraging these data management features and tools, ServiceNow customers can ensure efficient database performance, maintain data integrity, and manage large datasets effectively. This results in improved operational efficiency, reduced risks of performance issues, and enhanced data governance across their instances.
Data is stored and managed in your instance according to a principled structure that administrators can view and configure. Data management functions include importing, exporting, and archiving database data and configuring fields and tables.
Database structure
All of the information in the instances is stored in tables, which consist of a series of records. The record in turn holds a series of fields that hold the individual bits of data and can be viewed either as a list or a form.
- Extensions
- A table can extend another table. The table doing the extending (child class) includes all of the fields of the other table (parent class) and adds its own fields. For instance, the Incident [incident] table has all of the Task [task] table fields (because an incident is a special form of task) and has its own incident-specific tasks.
- One-to-Many
- Within a table, a field can hold a reference to a record on another table. There are three
types of one-to-many relationship fields:
- Reference Field: allow a user to select a record on a table defined by the reference field. For instance, the Caller field on the Incident table allows the user to select any record on the User table.
- Glide List: allows a user to select multiple records on a table defined by the glide list. For instance, the Watch list field on the Incident table allows the user to select records on the User table.
- Document ID Field: allows a user to select a record on any table in the instance. These fields are much less common, but one example is the Document field on the Translated Text [sys_translated_text] table.
- Many-to-Many
- Two tables can have a bi-directional relationship, so that the related records are visible from both tables in a related list.
- Database Views
- Two tables can be joined virtually with Database Views to enable reporting on data that might be stored over more than one table.
Data management tools
There are a number of tools that can help manage data within the instance.
- Schema map
The Schema Map displays the relationships between tables visually, helping to navigate through the database structure.
The Schema Map provides an interface for viewing the relationships between tables. The inter-table relationships it captures include many-to-many relationships, tables that extend other tables, and tables that reference other tables through reference fields.
- Data dictionary tables
Data dictionary tables holds information that defines the database and can be accessed for information on the database schema.
These tables hold important information on the database and its structure:
Tables [sys_db_object]: contains a record for each table.Dictionary Entries [sys_dictionary]: contains additional details for each table and the definition for every column on each table. Each row represents either a column on a table or a table.Field Labels [sys_documentation]: contains the human-readable labels and language information.
Data management plugins
| Plugin | Description |
|---|---|
| Data Archiving | Provides the ability to archive records to minimize performance issues. |
| Database Rotations | Provides tools for managing large tables to minimize performance issues. |
| Many to Many task relations | Provides the ability to define many-to-many relationships between task tables. |