ServiceNow Certified Implementation Specialist – Discovery — Question 60
Given a custom column named u_custom_column on table cmdb_ci_linux_server, which variable syntax should be used to populate the column in a horizontal discovery pattern using the Set Parameter Value operation?
Answer options
- A. $user_var_custom_column
- B. $cmdb_ci_linux_server.u_custom_column.INSERT
- C. $u_custom_column[1].cmdb_ci_linux_server
- D. $cmdb_ci_linux_server[*].u_custom_column
Correct answer: D
Explanation
The correct answer is D because it correctly uses the wildcard notation to target all instances of u_custom_column across the cmdb_ci_linux_server table. Option A is incorrect as it references a user variable rather than the custom column. Option B incorrectly attempts to use a method that does not apply, and option C targets a specific index instead of all entries.