
Ultimate access to all questions.
A marketing team needs to share data from an aggregate table with the sales team. However, the two teams use different field naming conventions, and specific marketing-only fields must remain restricted. Which of the following approaches is the simplest way to provide the sales team with the necessary data while adhering to these constraints?
A
Execute a CREATE TABLE AS SELECT (CTAS) statement to generate a new table and schedule a production job to refresh it periodically.
B
Utilize Delta Lake’s DEEP CLONE functionality to create a synchronized copy of the table with the modified schema.
C
Establish a view on the marketing table that selects only the authorized fields and uses aliases to map them to the sales team's naming standards.
D
Incorporate a parallel write step into the current production pipeline to create a secondary sales-specific table.