70-463 · Question #112
You are in the process of creating a SQL Server Integration Services (SSIS) package. The package will be configured to make use of the Generate And Persist New Index Fuzzy Lookup transformation…
The correct answer is C. It allows for a new index to be created and saved, without maintaining it. The 'Generate And Persist New Index' Fuzzy Lookup option builds a new match index and saves it to the database for reuse, but does not automatically maintain or refresh it when reference data changes.
Question
You are in the process of creating a SQL Server Integration Services (SSIS) package. The package will be configured to make use of the Generate And Persist New Index Fuzzy Lookup transformation option. Which of the following is the purpose of this option?
Options
- AIt allows for a current index to be reused.
- BIt allows for a new index to be created, without saving it.
- CIt allows for a new index to be created and saved, without maintaining it.
- DIt allows for a new index to be created, saved, and maintained.
How the community answered
(55 responses)- A9% (5)
- B2% (1)
- C85% (47)
- D4% (2)
Why each option
The 'Generate And Persist New Index' Fuzzy Lookup option builds a new match index and saves it to the database for reuse, but does not automatically maintain or refresh it when reference data changes.
Reusing an existing saved index is the purpose of the 'Use Existing Index' option, not 'Generate And Persist New Index'.
Creating a new index without saving it describes the 'Generate New Index' option, which builds a temporary index discarded after the package completes.
When 'Generate And Persist New Index' is selected, the Fuzzy Lookup transformation builds a new full-text index on the reference table and persists it to SQL Server for reuse across package runs. However, this index is not automatically maintained when reference data changes, so it can become stale without manual intervention.
Automatically maintaining the index when reference data changes is not a feature of this option; the persisted index must be manually rebuilt when the reference table is updated.
Concept tested: Fuzzy Lookup transformation Generate And Persist New Index option
Source: https://learn.microsoft.com/en-us/sql/integration-services/data-flow/transformations/fuzzy-lookup-transformation
Topics
Community Discussion
No community discussion yet for this question.