13% Topic 6 – Data Migration & Integration Flashcards

(61 cards)

1
Q

What is data migration?

A

[Exam Weight: 13%] One-time movement of data into ServiceNow

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is an integration?

A

[Exam Weight: 13%] Ongoing data exchange between systems

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the key difference between migration and integration?

A

[Exam Weight: 13%] Migration is one-time; integration is ongoing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What tool is used for one-time data loads?

A

[Exam Weight: 13%] Import Sets

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What record defines where import data comes from?

A

[Exam Weight: 13%] Data Source

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Where is imported data stored initially?

A

[Exam Weight: 13%] Import Set table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What controls how import data moves to target tables?

A

[Exam Weight: 13%] Transform Map

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Can Transform Maps be reused?

A

[Exam Weight: 13%] Yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What feature allows recurring imports?

A

[Exam Weight: 13%] Scheduled Import

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What integration type uses REST APIs?

A

[Exam Weight: 13%] REST integration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What data format is commonly used with REST?

A

[Exam Weight: 13%] JSON

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Which integration type is more lightweight?

A

[Exam Weight: 13%] REST

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What CSA mistake is common with imports?

A

[Exam Weight: 13%] Treating them as integrations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What CSA mistake is common with integrations?

A

[Exam Weight: 13%] Using them for one-time loads

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What determines whether to use migration or integration?

A

[Exam Weight: 13%] Frequency of data exchange

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is data migration in ServiceNow?

A

[Exam Weight: 13%] [Migration] The process of importing data from external sources into ServiceNow tables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What tool is most commonly used for data migration in ServiceNow?

A

[Exam Weight: 13%] [Migration] Import Sets.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is an Import Set?

A

[Exam Weight: 13%] [Migration] A staging table used to temporarily store imported data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What is the purpose of an Import Set table?

A

[Exam Weight: 13%] [Migration] To hold raw data before it is transformed into target tables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What are common data sources for Import Sets?

A

[Exam Weight: 13%] [Migration] CSV files, Excel files, JDBC, and web services.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What process moves data from an Import Set to a target table?

A

[Exam Weight: 13%] [Migration] Transform Map.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

What is a Transform Map?

A

[Exam Weight: 13%] [Migration] A set of rules that maps fields from an Import Set to a target table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

What is a target table?

A

[Exam Weight: 13%] [Migration] The destination table where transformed data is stored.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

What happens during data transformation?

A

[Exam Weight: 13%] [Migration] Data is validated, mapped, and inserted or updated in the target table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Can data be modified during transformation?
[Exam Weight: 13%] [Migration] Yes, using transform scripts.
26
What types of transform scripts exist?
[Exam Weight: 13%] [Migration] onStart, onBefore, onAfter, and field scripts.
27
What determines whether records are inserted or updated?
[Exam Weight: 13%] [Migration] The coalesce field.
28
What is a coalesce field?
[Exam Weight: 13%] [Migration] A field used to uniquely identify records during import.
29
What happens if a matching coalesce value exists?
[Exam Weight: 13%] [Migration] The target record is updated.
30
What happens if no matching coalesce value exists?
[Exam Weight: 13%] [Migration] A new record is inserted.
31
Can multiple fields be used as coalesce?
[Exam Weight: 13%] [Migration] Yes.
32
What happens if coalesce is not defined?
[Exam Weight: 13%] [Migration] New records are created for every import row.
33
What table stores Import Set data?
[Exam Weight: 13%] [Migration] import_set tables (u_* or prefixed tables).
34
What happens to Import Set data after transformation?
[Exam Weight: 13%] [Migration] It remains unless manually deleted or cleaned up.
35
What is data migration in ServiceNow?
[Exam Weight: 13%] [Integration] The process of importing data from external sources into ServiceNow tables.
36
What tool is most commonly used for data migration in ServiceNow?
[Exam Weight: 13%] [Integration] Import Sets.
37
What is an Import Set?
[Exam Weight: 13%] [Integration] A staging table used to temporarily store imported data.
38
What is the purpose of an Import Set table?
[Exam Weight: 13%] [Integration] To hold raw data before it is transformed into target tables.
39
What are common data sources for Import Sets?
[Exam Weight: 13%] [Integration] CSV files, Excel files, JDBC, and web services.
40
What process moves data from an Import Set to a target table?
[Exam Weight: 13%] [Integration] Transform Map.
41
What is a Transform Map?
[Exam Weight: 13%] [Integration] A set of rules that maps fields from an Import Set to a target table.
42
What is a target table?
[Exam Weight: 13%] [Integration] The destination table where transformed data is stored.
43
What happens during data transformation?
[Exam Weight: 13%] [Integration] Data is validated, mapped, and inserted or updated in the target table.
44
Can data be modified during transformation?
[Exam Weight: 13%] [Integration] Yes, using transform scripts.
45
What types of transform scripts exist?
[Exam Weight: 13%] [Integration] onStart, onBefore, onAfter, and field scripts.
46
What determines whether records are inserted or updated?
[Exam Weight: 13%] [Integration] The coalesce field.
47
What is a coalesce field?
[Exam Weight: 13%] [Integration] A field used to uniquely identify records during import.
48
What happens if a matching coalesce value exists?
[Exam Weight: 13%] [Integration] The target record is updated.
49
What happens if no matching coalesce value exists?
[Exam Weight: 13%] [Integration] A new record is inserted.
50
Can multiple fields be used as coalesce?
[Exam Weight: 13%] [Integration] Yes.
51
What happens if coalesce is not defined?
[Exam Weight: 13%] [Integration] New records are created for every import row.
52
What table stores Import Set data?
[Exam Weight: 13%] [Integration] import_set tables (u_* or prefixed tables).
53
What happens to Import Set data after transformation?
[Exam Weight: 13%] [Integration] It remains unless manually deleted or cleaned up.
54
What role is required to configure integrations?
[Exam Weight: 13%] [Exam Favourite] admin (and sometimes security_admin).
55
How should credentials be stored for integrations?
[Exam Weight: 13%] [Exam Favourite] Securely using credentials records.
56
What should never be hard-coded in scripts?
[Exam Weight: 13%] [Exam Favourite] Passwords or credentials.
57
What ensures secure communication for integrations?
[Exam Weight: 13%] [Exam Favourite] HTTPS / TLS.
58
What is a common best practice for data migration testing?
[Exam Weight: 13%] [Exam Favourite] Test imports in a sub-production instance first.
59
What should be validated after a data import?
[Exam Weight: 13%] [Exam Favourite] Data accuracy, completeness, and relationships.
60
What happens if a transform map fails?
[Exam Weight: 13%] [Exam Favourite] Errors are logged for review.
61
Where can transform errors be reviewed?
[Exam Weight: 13%] [Exam Favourite] Import Set run history and logs.