SnowPro Advanced: Data Engineer — Question 118

A Data Engineer is cloning a production database for use as a development environment using these commands:

USE ROLE CLONE_ADMIN;
CREATE DATABASE DB_DEV CLONE DE_PROD AT (OFFSET => -1800);

What must the Engineer do to ensure the cloned environment is ready to use?

Answer options

Correct answer: A

Explanation

The correct answer is A because running the command to resume loading from all pipes is necessary to ensure data is flowing into the development environment. Options B and C do not address the immediate requirement of preparing the database for use, while option D pertains to sequences, which is not a priority for the initial setup of the cloned environment.