ExamGecko
Question list
Search
Search

List of questions

Search

Question 88 - DEA-C01 discussion

Report
Export

Data Engineer is using existing pipe that automates data loads using event notifications, later he figured out the needs to modify pipe properties. For the same, He decided to recreate the pipe as best practice. He followed the below steps for the same.

A.
Query the SYSTEM$PIPE_STATUS function and verify that the pipe execution state is RUN-NING.
Answers
A.
Query the SYSTEM$PIPE_STATUS function and verify that the pipe execution state is RUN-NING.
B.
Recreate the pipe (using CREATE OR REPLACE PIPE).
Answers
B.
Recreate the pipe (using CREATE OR REPLACE PIPE).
C.
Query the SYSTEM$PIPE_STATUS function and verify that the pipe execution state is RUN-NING.Which are the Missing recommended steps while Recreating Pipes for Automated Data Loads?
Answers
C.
Query the SYSTEM$PIPE_STATUS function and verify that the pipe execution state is RUN-NING.Which are the Missing recommended steps while Recreating Pipes for Automated Data Loads?
D.
CREATE OR REPLACE PIPE command will recreate the PIPE successfully.
Answers
D.
CREATE OR REPLACE PIPE command will recreate the PIPE successfully.
E.
Terminate the existing pipe (using ALTER PIPE … SET PIPE_EXECUTION_TERMINATE = true) before recreation.
Answers
E.
Terminate the existing pipe (using ALTER PIPE … SET PIPE_EXECUTION_TERMINATE = true) before recreation.
F.
Pause the pipe (using ALTER PIPE … SET PIPE_EXECUTION_PAUSED = true) Pre & Post recreation & Resume after recreation (using ALTER PIPE … SET PIPE_EXECUTION_PAUSED = false).
Answers
F.
Pause the pipe (using ALTER PIPE … SET PIPE_EXECUTION_PAUSED = true) Pre & Post recreation & Resume after recreation (using ALTER PIPE … SET PIPE_EXECUTION_PAUSED = false).
G.
Force the pipe to resume (using SYSTEM$PIPE_FORCE_RESUME).
Answers
G.
Force the pipe to resume (using SYSTEM$PIPE_FORCE_RESUME).
Suggested answer: C

Explanation:

Recreating a pipe (using a CREATE OR REPLACE PIPE statement) is necessary to modify most pipe properties.

Recreating Pipes for Automated Data Loads When recreating a pipe that automates data loads using event notifications, it's recommended that Data Engineer complete the following steps:

1. Pause the pipe (using ALTER PIPE … SET PIPE_EXECUTION_PAUSED = true).

2. Query the SYSTEM$PIPE_STATUS function and verify that the pipe execution state is PAUSED.

3. Recreate the pipe (using CREATE OR REPLACE PIPE).

4. Pause the pipe again.

5. Review the configuration steps for your cloud messaging service to ensure the settings are still accurate.

6. Query the SYSTEM$PIPE_STATUS function again and verify that the pipe execution state is RUNNING.

asked 23/09/2024
Olaf Messerschmidt
31 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first