exam questions

Exam DP-700 All Questions

View all questions & answers for the DP-700 exam

Exam DP-700 topic 1 question 10 discussion

Actual exam question from Microsoft's DP-700
Question #: 10
Topic #: 1
[All DP-700 Questions]

You have a Fabric warehouse named DW1. DW1 contains a table that stores sales data and is used by multiple sales representatives.
You plan to implement row-level security (RLS).
You need to ensure that the sales representatives can see only their respective data.
Which warehouse object do you require to implement RLS?

  • A. STORED PROCEDURE
  • B. CONSTRAINT
  • C. SCHEMA
  • D. FUNCTION
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
QAZdbarhate12345678
Highly Voted 6 months, 2 weeks ago
Selected Answer: D
To implement Row-Level Security (RLS) in a Fabric warehouse like DW1, need to use a FUNCTION to define the filtering logic. Specifically, a user-defined function (UDF) is created and associated with the RLS policy to determine which rows each user can access.
upvoted 10 times
...
Wipag
Most Recent 1 week, 5 days ago
Selected Answer: D
To implement Row-Level Security (RLS) in a Microsoft Fabric warehouse (DW1), you need to define a security policy that uses a user-defined function to filter rows based on the current user.
upvoted 1 times
...
smanzana
2 weeks ago
Selected Answer: D
Función or Security Policy
upvoted 1 times
...
Evincible
3 weeks, 6 days ago
Selected Answer: D
In the exam, instead of function, they are given "Security Policy" option
upvoted 4 times
...
Adriel_1996
3 months, 1 week ago
Selected Answer: D
-- Creating schema for Security CREATE SCHEMA Security; GO -- Creating a function for the SalesRep evaluation CREATE FUNCTION Security.tvf_securitypredicate(@UserName AS varchar(50)) RETURNS TABLE WITH SCHEMABINDING AS RETURN SELECT 1 AS tvf_securitypredicate_result WHERE @UserName = USER_NAME() OR USER_NAME() = '[email protected]'; GO -- Using the function to create a Security Policy CREATE SECURITY POLICY YourSecurityPolicy ADD FILTER PREDICATE Security.tvf_securitypredicate(UserName_column) ON sampleschema.sampletable WITH (STATE = ON); GO
upvoted 4 times
...
prabhjot
4 months, 3 weeks ago
Selected Answer: D
you create a predicate function which gets evaluated to filter user access to certain rows in a Yes or No manner
upvoted 2 times
...
Tuki93
6 months, 3 weeks ago
Selected Answer: D
https://learn.microsoft.com/en-us/fabric/data-warehouse/tutorial-row-level-security#2-define-security-policies
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...