CAD · Question #89
What is the purpose of the coalesce field when importing data?
The correct answer is B. To determine if a record matches an existing record or is a new record. The coalesce field in data imports is used to determine if an incoming record matches an existing record in the target table, guiding whether to update or insert.
Question
What is the purpose of the coalesce field when importing data?
Options
- AWhen a match is found, a new record is inserted
- BTo determine if a record matches an existing record or is a new record
- CIf a match is not found, the existing record is updated
- DTo identify and merge duplicate records
How the community answered
(30 responses)- A7% (2)
- B90% (27)
- D3% (1)
Why each option
The coalesce field in data imports is used to determine if an incoming record matches an existing record in the target table, guiding whether to update or insert.
If a match is found using a coalesce field, the existing record is updated, not a new record inserted.
The purpose of a coalesce field (or a combination of fields) in data imports is to serve as a unique key to identify if an incoming row from the import set matches an existing record in the target table. This identification dictates whether the import process should update the existing record or insert a new one.
If a match is not found based on the coalesce field, a new record is inserted into the target table, rather than updating an existing one.
While coalescing helps prevent duplicates, its primary purpose is record identification for update/insert logic, not a general 'merge duplicate records' function, which often implies a separate de-duplication process.
Concept tested: Data import coalesce function
Source: https://docs.servicenow.com/bundle/washingtondc-platform-administration/page/administer/import/concept/c_CoalescingRecords.html
Topics
Community Discussion
No community discussion yet for this question.