What are the changes that happen to the 'core_company' table with Normalized Data services setup.Summary<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } These are the changes that happen to the 'core_company' table with NDS setup.1. A column called 'normalized' along with few other columns are added during the setup. By default, the value will be `false` for all the records. 2. During final steps of NDS setup, it loops through all the `core_company` records. a. If the company record we are looking at has an entry with same name in the `Normalized Mappings --> Discovered Name` then check if there is an entry in `core_company` table with the same name as `Normalized Mappings --> Normalized Name`. Normalized mappings table: cds_client_mapping:https://<instance-name>.service-now.com/cds_client_mapping_list.do?sysparm_query=&sysparm_view= i). If this exist set the 'normalized' column to 'true' for this row. ii). If doesn't exist create a record in `core_company` table with `Normalized Mappings --> Normalized Name` and set the 'normalized' column to 'true'. b. If there is no entry in `Normalized Mappings --> Discovered Name`, it assumes that the current record is normalized which doesn't exist in the 'Normalized Companies' and sets the 'normalized' flag of that row to 'true'. 3. After the guided setup is complete, if you add a new company to `core_company` table, steps 2a and 2b listed above are followed to set 'normalized' flag. After the plugin is installed there is an unique index on the core_company table which prevents adding duplicate companies.