S06 Security & Monitoring DWH

S06 Security & Monitoring DWH

Professional Development

5 Qs

quiz-placeholder

Similar activities

Assessment DxI 800/600 (Hardware)

Assessment DxI 800/600 (Hardware)

Professional Development

10 Qs

IM Lifecycle - Group A

IM Lifecycle - Group A

Professional Development

10 Qs

Assessment AU5800 (Hardware)

Assessment AU5800 (Hardware)

Professional Development

10 Qs

Multimedia Pro's

Multimedia Pro's

KG - Professional Development

10 Qs

The solar system

The solar system

6th Grade - Professional Development

10 Qs

Brain Basics

Brain Basics

Professional Development

10 Qs

STLP Tech Quiz 2

STLP Tech Quiz 2

KG - Professional Development

10 Qs

Module 7745 Chapter E

Module 7745 Chapter E

Professional Development

9 Qs

S06 Security & Monitoring DWH

S06 Security & Monitoring DWH

Assessment

Quiz

Science

Professional Development

Practice Problem

Hard

Created by

Eladio Yovera

Used 4+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You create a Warehouse table sales.Orders and apply a Security Policy that filters rows by the user’s region.
Which additional configuration is REQUIRED for users to successfully query the table?

Adding users to the workspace as Viewer

Granting SELECT on the table to the relevant database roles

Enabling Dynamic Data Masking on sensitive columns

Creating a Column-Level Security DENY on non-regional columns

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

In a Fabric Warehouse you need to prevent analysts from discovering that the table hr.EmployeeSalary even exists, while HR managers must retain full visibility.
Which TWO actions should you perform? (Choose 2.)

Grant SELECT on hr.EmployeeSalary to the Analyst role

DENY VIEW DEFINITION on schema hr to the Analyst role

DENY SELECT on schema hr to the Analyst role

Create a Row-Level Security filter that returns 0 rows for the Analyst role

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

You implement Column-Level Security (CLS) on sales.Orders so the column CostPrice is hidden from the Analyst role. Which statement about query results for that role is correct?

Queries return NULL in CostPrice for every row.

Queries fail with Msg 229 (permission denied) when CostPrice is referenced.

CostPrice is silently omitted from SELECT * result sets.

The column is visible only when accessed through a stored procedure.

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

You need to create a single Row-Level Security policy that grants full access to members of the Finance role and filters by region for all other users. Which predicate function satisfies the requirement?

RETURN SELECT 1 WHERE IS_MEMBER('Finance') = 0

RETURN SELECT 1 WHERE IS_MEMBER('Finance') = 1 OR @Region = USER_NAME()

RETURN SELECT 1 WHERE IS_MEMBER('Finance') = 1 OR @Region = 'Finance'

RETURN SELECT 1 WHERE IS_MEMBER('Finance') = 1 OR @Region = USER_NAME() OR 1=0

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You plan to create a Row-Level Security predicate that relies on the user identity. Which system function is SUPPORTED in Fabric Warehouses and can be safely used inside the predicate?

ORIGINAL_LOGIN()

SUSER_SID()

USER_NAME()

EXECUTE AS USER