- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ06-15-2021 09:13 PM
I would like to provide row and column level security on my tables I have created in my workspace. Is there any way to do this?
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ06-21-2021 12:08 PM
Databricks includes two user functions that allow you to express column- and row-level permissions dynamically in the body of a view definition.
- current_user(): return the current user name.
- is_member(): determine if the current user is a member of a specific Databricks group.
Read more about our dynamic view capabilities here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ06-21-2021 12:08 PM
Databricks includes two user functions that allow you to express column- and row-level permissions dynamically in the body of a view definition.
- current_user(): return the current user name.
- is_member(): determine if the current user is a member of a specific Databricks group.
Read more about our dynamic view capabilities here.

