Why is this error thrown and who can give you the required privilege?

You are creating a TASK to query a table streams created on the raw table and insert subsets of rows into multiple tables. You are following the below steps, but when you reached the step to resume the task, you received an error message as below.

Why is this error thrown and who can give you the required privilege?

Steps to be followed to get this error

— Create a landing table to store raw JSON data.

— Snowpipe could load data into this table. create or replace table raw (var variant);

— Create a stream to capture inserts to the landing table.

— A task will consume a set of columns from this stream. create or replace stream rawstream1 on table raw;

— Create a second stream to capture inserts to the landing table.

— A second task will consume another set of columns from this stream. create or replace stream rawstream2 on table raw;

— Create a table that stores the names of office visitors identified in the raw data. create or replace table names (id int, first_name string, last_name string);

— Create a table that stores the visitation dates of office visitors identified in the raw data.

create or replace table visits (id int, dt date);

— Create a task that inserts new name records from the rawstream1 stream into the names table

— every minute when the stream contains records.

— Replace the ‘mywh’ warehouse with a warehouse that your role has USAGE privilege on. create or replace task raw_to_names

warehouse = etl_wh

schedule = ‘1 minute’

when

system$stream_has_data(‘rawstream1’)

as

merge into names n

using (select var:id id, var:fname fname, var:lname lname from rawstream1) r1 on n.id = to_number(r1.id)

when matched then update set n.first_name = r1.fname, n.last_name = r1.lname

when not matched then insert (id, first_name, last_name) values (r1.id, r1.fname, r1.lname)

;

— Create another task that merges visitation records from the rawstream1 stream into the visits table

— every minute when the stream contains records.

— Records with new IDs are inserted into the visits table;

— Records with IDs that exist in the visits table update the DT column in the table.

— Replace the ‘mywh’ warehouse with a warehouse that your role has USAGE privilege on. create or replace task raw_to_visits

warehouse = etl_wh schedule = ‘1 minute’ when

system$stream_has_data(‘rawstream2’) as

merge into visits v

using (select var:id id, var:visit_dt visit_dt from rawstream2) r2 on v.id = to_number(r2.id) when matched then update set v.dt = r2.visit_dt

when not matched then insert (id, dt) values (r2.id, r2.visit_dt);

— Resume both tasks.

alter task raw_to_names resume;
A . The role used to resume the task does not have EXECUTE TASK privilege. Only ACCOUNTADMIN can provide that privilege to the role.
B. The role used to resume the task does not have EXECUTE TASK privilege. Both SECURITYADMIN and ACCOUNTADMIN can provide that privilege to the role.
C. The role used to resume the task does not have EXECUTE TASK privilege. Only TASK OWNER
can provide that privilege to the role.

Answer: A

Explanation:

Please try this out yourself as I do not want you to mug up this concept.

EXECUTE TASK privilege can be granted only by the ACCOUNTADMIN and not even by TASK OWNER.

To test this, when you get this error please run the below commands in a new worksheet.

USE ROLE SECURITYADMIN;

GRANT execute task on account TO role <role name>; — Replace the role you are using for the task

You will get an error as below

Grant not executed: Insufficient privileges.

Now try it again as below

USE ROLE ACCOUNTADMIN;

GRANT execute task on account TO role <role name>; — Replace the role you are using for the task

The grant should work now.

Go back and execute the resume task command alter task raw_to_names resume; . It should work like a charm.

You learnt two important things on which you will be tested in the exam

Latest ARA-C01 Dumps Valid Version with 156 Q&As

Latest And Valid Q&A | Instant Download | Once Fail, Full Refund

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments