Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
How to grant access for specific tables to e-mail address in Fabric Data Warehouse and Lakehouse
Solved! Go to Solution.
You can use Grant command to give access on specific tables in fabric warehouse:
for lakehouse, you can create a role:
syntax to give permission on tables and schemas. Below works on both lakehouse and warehouse.
grant select on dbo.table_name to [myname@mail.com]
GRANT select on schema :: schema_name to [myname@mail.com]
syntax to give permission on tables and schemas. Below works on both lakehouse and warehouse.
grant select on dbo.table_name to [myname@mail.com]
GRANT select on schema :: schema_name to [myname@mail.com]
Can I use this to grant select access to a onelake security role?
Hi @dinesh01 ,
Your solution is great, @NandanHegde . It worked like a charm!
For Fabric Data Warehouse:
Assign workspace roles:
Grant granular permissions:
For more information, please see:
SQL granular permissions - Microsoft Fabric | Microsoft Learn
For Lakehouse:
Share a Lakehouse:
Manage permissions:
Folder-level access control:
For more information, please see:
Lakehouse sharing and permission management - Microsoft Fabric | Microsoft Learn
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
You can use Grant command to give access on specific tables in fabric warehouse:
for lakehouse, you can create a role:
It might sound like a stupid question. I have given a user access to a table in Fabric warehouse via the grant command, but as this user doesn't have acess to the Fabric warehouse, how can he/she access the table? I tried the absf path and Power BI desktop - onelake hub, neither works.