Exam SnowPro Core All QuestionsBrowse all questions from this exam
Question 205

How can a row access policy be applied to a table or a view? (Choose two.)

    Correct Answer: B, E

    A row access policy can be applied to a table or a view using a create table or create view DDL (Data Definition Language). This allows for the policy to be included at the time the table or view is created. Additionally, it can be applied to an existing table or view using the ALTER command, specifically by using ALTER [object] ADD ROW ACCESS POLICY [policy]. This command modifies the existing table or view to include the specified row access policy.

Discussion
tejarunOptions: BE

B, E https://docs.snowflake.com/en/user-guide/security-row-intro.html#apply-a-row-access-policy-to-a-table-or-view

HarpreetwalOptions: BE

B,E Correct. A is not correct as it is only defining not applying to table or view, Question is about applying to table/View https://docs.snowflake.com/en/user-guide/security-row-intro

OTEOptions: BE

Create / Alter Table/View DDL with row access policy

EmiBOptions: AE

A. Within the policy DDL - CREATE TABLE t .. WITH ROW ACCESS POLICY p ON (c); E. Using the command ALTER TABLE t ADD ROW ACCESS POLICY p ON (c);

Omkarshingare

that is option B and E ryt

Mallikharjuna452Options: BE

B and E are correct

_yyuktaOptions: BE

BE are correct

Avi0407Options: BE

Table level is the key

MultiCloudIronManOptions: BE

Correct

weuzOptions: AE

A & E are the correct choices