nerdexam
ServiceNow

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.

Submitted by saadiq_pk· Apr 18, 2026Integrating with Other Applications

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)
  • A
    7% (2)
  • B
    90% (27)
  • D
    3% (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.

AWhen a match is found, a new record is inserted

If a match is found using a coalesce field, the existing record is updated, not a new record inserted.

BTo determine if a record matches an existing record or is a new recordCorrect

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.

CIf a match is not found, the existing record is updated

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.

DTo identify and merge duplicate records

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

#Import Sets#Coalesce#Data Import#Record Matching

Community Discussion

No community discussion yet for this question.

Full CAD Practice