<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How can I give users permissions to see the objects metadata without access to data in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20154#M13598</link>
    <description>&lt;P&gt;You can refer this as well.&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;GRANT USAGE ON SCHEMA database TO user&lt;/P&gt;&lt;P&gt;GRANT READ_METADATA ON SCHEMA database TO user&lt;/P&gt;</description>
    <pubDate>Tue, 29 Nov 2022 18:50:36 GMT</pubDate>
    <dc:creator>SS2</dc:creator>
    <dc:date>2022-11-29T18:50:36Z</dc:date>
    <item>
      <title>How can I give users permissions to see the objects metadata without access to data</title>
      <link>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20149#M13593</link>
      <description>&lt;P&gt;Only permissions I can see are select and this gives access to data and that is very unwanted. I only want users to see the metadata, like table/view/column names and descriptions/comments and location and such but not to see any data.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 06:34:01 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20149#M13593</guid>
      <dc:creator>merca</dc:creator>
      <dc:date>2022-11-29T06:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: How can I give users permissions to see the objects metadata without access to data</title>
      <link>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20150#M13594</link>
      <description>&lt;P&gt;Hi @Merca Ovnerud​&amp;nbsp;, you have 'READ_METADATA' privilege that you can set for a data object. &lt;/P&gt;&lt;P&gt;Example code in SQL: GRANT READ_METADATA ON SCHEMA schema_name TO user/user_group;&lt;/P&gt;&lt;P&gt;Reference link: &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/security/access-control/table-acls/object-privileges" target="test_blank"&gt;https://learn.microsoft.com/en-us/azure/databricks/security/access-control/table-acls/object-privileges&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 11:04:17 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20150#M13594</guid>
      <dc:creator>Geeta1</dc:creator>
      <dc:date>2022-11-29T11:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: How can I give users permissions to see the objects metadata without access to data</title>
      <link>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20151#M13595</link>
      <description>&lt;P&gt;Unfortunately I get error on this grant:&lt;/P&gt;&lt;P&gt;`Value 'READ_METADATA' is not a valid permission`&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 11:30:56 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20151#M13595</guid>
      <dc:creator>merca</dc:creator>
      <dc:date>2022-11-29T11:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: How can I give users permissions to see the objects metadata without access to data</title>
      <link>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20152#M13596</link>
      <description>&lt;P&gt;Hi @Merca Ovnerud​&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can try in the same method @Geeta Sai Boddu​&amp;nbsp;suggested. &lt;/P&gt;&lt;P&gt;Before trying make sure that your cluster has table access control enabled.  Only if your cluster is a shared access cluster, it will be enabled by default.&lt;/P&gt;&lt;P&gt;Also someone with admin privileges must enable table access control to your workspace. &lt;/P&gt;&lt;P&gt;Do check out these prerequisites before running that SQL code.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 17:57:46 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20152#M13596</guid>
      <dc:creator>UmaMahesh1</dc:creator>
      <dc:date>2022-11-29T17:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: How can I give users permissions to see the objects metadata without access to data</title>
      <link>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20153#M13597</link>
      <description>&lt;P&gt;Enabling Table Access Control for your workspace : &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/administration-guide/access-control/table-acl" target="test_blank"&gt;https://learn.microsoft.com/en-us/azure/databricks/administration-guide/access-control/table-acl&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Enabling Table ACL for cluster : &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/security/access-control/table-acls/table-acl#table-access-control" target="test_blank"&gt;https://learn.microsoft.com/en-us/azure/databricks/security/access-control/table-acls/table-acl#table-access-control&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 17:59:28 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20153#M13597</guid>
      <dc:creator>UmaMahesh1</dc:creator>
      <dc:date>2022-11-29T17:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: How can I give users permissions to see the objects metadata without access to data</title>
      <link>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20154#M13598</link>
      <description>&lt;P&gt;You can refer this as well.&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;GRANT USAGE ON SCHEMA database TO user&lt;/P&gt;&lt;P&gt;GRANT READ_METADATA ON SCHEMA database TO user&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 18:50:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20154#M13598</guid>
      <dc:creator>SS2</dc:creator>
      <dc:date>2022-11-29T18:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: How can I give users permissions to see the objects metadata without access to data</title>
      <link>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20155#M13599</link>
      <description>&lt;P&gt;@Uma Maheswara Rao Desula​&amp;nbsp;, @Geeta Sai Boddu​&amp;nbsp; and @S S​&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thank you for the responses. I have gotten answer from Databricks and it seems this is not possible and this is something that is investigated as a capability. &lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 04:29:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/20155#M13599</guid>
      <dc:creator>merca</dc:creator>
      <dc:date>2022-11-30T04:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: How can I give users permissions to see the objects metadata without access to data</title>
      <link>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/45379#M27861</link>
      <description>&lt;P&gt;Can someone confirm that when using Unity Catalog we cannot restrict a user only for metadata access ?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2023 20:59:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-can-i-give-users-permissions-to-see-the-objects-metadata/m-p/45379#M27861</guid>
      <dc:creator>RonMoody</dc:creator>
      <dc:date>2023-09-19T20:59:36Z</dc:date>
    </item>
  </channel>
</rss>

