Rajib Deb
Rajib Deb

Reputation: 1774

Is it possible to have tag based access using UNITY Catalog

can we do a tag based access in Unity catalog as shown below

CREATE ATTRIBUTE pii
ALTER TABLE CUSTOMER ADD ATTRIBUTE pii ON CUSTOMER_CREDIT_CARD 

GRANT SELECT ON DATABASE CUSTOMER 
HAVING ATTRIBUTE NOT IN (pii)
TO NON_PII_ROLE

Upvotes: 1

Views: 1717

Answers (1)

Alex Ott
Alex Ott

Reputation: 87154

Not yet. In Unity Catalog it's called Attributed-Based Access Control (ABAC) and it's planned for release somewhere next year - there is no firm date yet, but you can check upcoming product roadmap sessions if it will be mentioned.

Upvotes: 2

Related Questions