nerdexam
Microsoft

70-465 · Question #50

You need to recommend changes to the ERP application to resolve the search issue. The solution must minimize the impact on other queries generated from the ERP application. What should you recommend c

The correct answer is C. The collation of the ProductName column. The search issue is caused by a collation mismatch on the ProductName column, and changing only the column-level collation resolves it while minimizing impact on other queries.

Submitted by femi9· Mar 5, 2026Design and implement database solutions for SQL Server

Question

You need to recommend changes to the ERP application to resolve the search issue. The solution must minimize the impact on other queries generated from the ERP application. What should you recommend changing?

Options

  • AThe collation of the Products table
  • BThe index on the ProductName column
  • CThe collation of the ProductName column
  • DThe data type of the ProductName column

How the community answered

(55 responses)
  • A
    9% (5)
  • B
    4% (2)
  • C
    73% (40)
  • D
    15% (8)

Why each option

The search issue is caused by a collation mismatch on the ProductName column, and changing only the column-level collation resolves it while minimizing impact on other queries.

AThe collation of the Products table

Changing the collation of the entire Products table would require rebuilding all columns and could impact sorting, filtering, and comparison behavior for every column in the table, affecting far more queries than necessary.

BThe index on the ProductName column

Changing the index on the ProductName column addresses performance or index structure but does not resolve a collation-related search issue where string comparisons return incorrect or inconsistent results.

CThe collation of the ProductName columnCorrect

SQL Server allows collation to be set at the column level independently of the table or database collation. Changing the collation of the ProductName column (e.g., to a case-insensitive or accent-insensitive collation) directly resolves search inconsistencies caused by collation mismatch without affecting other columns or queries in the ERP application. This is the most targeted fix, as it scopes the change only to the problematic column rather than broader objects.

DThe data type of the ProductName column

Changing the data type of the ProductName column (e.g., from VARCHAR to NVARCHAR) addresses Unicode character storage but does not resolve collation-specific issues such as case sensitivity or accent sensitivity that cause incorrect search results.

Concept tested: SQL Server column-level collation configuration

Source: https://learn.microsoft.com/en-us/sql/relational-databases/collations/set-or-change-the-column-collation

Topics

#Collation#String comparison#Search performance#Data types

Community Discussion

No community discussion yet for this question.

Full 70-465 Practice