An Azure data analytics service for real-time analysis on large volumes of data streaming from sources including applications, websites, and internet of things devices.
Hello Michael,
You can do one thing, execute below command to restrict access to particular table or materialized view:
For Table:
.alter table <table_name> policy restricted_view_access true
For Materialized View:
.alter materialized-view <materialized-view_name>policy restricted_view_access true
And then assign Database unrestrictedviewer role to specific user. So he will only will be able to access that particular table or mv
And to managing roles and permissions, please take a look at below link:
If this solves your query, do click on Accept Answer.
Thanks,
Rahul