<?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 Genie One – Unable to Extract Usage Details in Warehousing &amp; Analytics</title>
    <link>https://community.databricks.com/t5/warehousing-analytics/genie-one-unable-to-extract-usage-details/m-p/162892#M2643</link>
    <description>&lt;P&gt;We are looking to create a Genie usage report covering natural language querying activity across three channels — the Genie One web app, Genie One Teams app, and Genie One mobile app. The report is intended to surface insights around user activity, question types, query patterns, feedback, and session behaviour.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What we are currently able to extract via system tables (across all channels)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- User email&lt;BR /&gt;- Number of questions asked&lt;BR /&gt;- Source breakdown by channel (Web App / Teams / Mobile) with question counts&lt;BR /&gt;- First and last active date&lt;BR /&gt;- Feedback count&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What we are unable to extract&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For questions asked across all three channels (web app, Teams, and mobile), we are currently unable to retrieve:&lt;/P&gt;&lt;P&gt;- Actual question text asked by the user&lt;BR /&gt;- SQL queries executed in response to the question&lt;BR /&gt;- Tables and assets queried&lt;BR /&gt;- Feedback type (thumbs up / thumbs down) and associated feedback text where provided&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Questions&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1. Is there a system table that currently stores this information, or a mapping that would allow us to extract it?&lt;BR /&gt;2. If not, is there an alternative approach recommended by Databricks to access this data?&lt;/P&gt;</description>
    <pubDate>Tue, 14 Jul 2026 02:52:54 GMT</pubDate>
    <dc:creator>devyani_k</dc:creator>
    <dc:date>2026-07-14T02:52:54Z</dc:date>
    <item>
      <title>Genie One – Unable to Extract Usage Details</title>
      <link>https://community.databricks.com/t5/warehousing-analytics/genie-one-unable-to-extract-usage-details/m-p/162892#M2643</link>
      <description>&lt;P&gt;We are looking to create a Genie usage report covering natural language querying activity across three channels — the Genie One web app, Genie One Teams app, and Genie One mobile app. The report is intended to surface insights around user activity, question types, query patterns, feedback, and session behaviour.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What we are currently able to extract via system tables (across all channels)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- User email&lt;BR /&gt;- Number of questions asked&lt;BR /&gt;- Source breakdown by channel (Web App / Teams / Mobile) with question counts&lt;BR /&gt;- First and last active date&lt;BR /&gt;- Feedback count&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What we are unable to extract&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For questions asked across all three channels (web app, Teams, and mobile), we are currently unable to retrieve:&lt;/P&gt;&lt;P&gt;- Actual question text asked by the user&lt;BR /&gt;- SQL queries executed in response to the question&lt;BR /&gt;- Tables and assets queried&lt;BR /&gt;- Feedback type (thumbs up / thumbs down) and associated feedback text where provided&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Questions&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1. Is there a system table that currently stores this information, or a mapping that would allow us to extract it?&lt;BR /&gt;2. If not, is there an alternative approach recommended by Databricks to access this data?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2026 02:52:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/warehousing-analytics/genie-one-unable-to-extract-usage-details/m-p/162892#M2643</guid>
      <dc:creator>devyani_k</dc:creator>
      <dc:date>2026-07-14T02:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: Genie One – Unable to Extract Usage Details</title>
      <link>https://community.databricks.com/t5/warehousing-analytics/genie-one-unable-to-extract-usage-details/m-p/163038#M2646</link>
      <description>&lt;H3&gt;1. Is there a system table for this today?&lt;/H3&gt;
&lt;P&gt;&lt;STRONG&gt;Answer: not as a single supported system table.&lt;/STRONG&gt; Databricks system tables currently give you usage/billing, audit events, and executed SQL history, but not a complete per-message record containing the original natural-language prompt, generated SQL, queried assets, and detailed feedback text across Genie One web/Teams/mobile.&lt;/P&gt;
&lt;P&gt;What you get today:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Paid Genie usage by channel/surface&lt;/STRONG&gt; from &lt;CODE&gt;system.billing.usage&lt;/CODE&gt;, including &lt;CODE&gt;usage_metadata.genie.surface&lt;/CODE&gt;; only paid usage appears there, not free-allowance usage.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Executed SQL&lt;/STRONG&gt; from &lt;CODE&gt;system.query.history.statement_text&lt;/CODE&gt;, and you can identify Genie-originated executions via &lt;CODE&gt;query_source.genie_space_id&lt;/CODE&gt;.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Feedback rating&lt;/STRONG&gt; from audit logs via &lt;CODE&gt;system.access.audit&lt;/CODE&gt; on &lt;CODE&gt;updateConversationMessageFeedback&lt;/CODE&gt;, which includes &lt;CODE&gt;feedback_rating&lt;/CODE&gt;.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Feedback comments&lt;/STRONG&gt; via audit events like &lt;CODE&gt;createConversationMessageComment&lt;/CODE&gt;, but audit logs expose IDs/events, not the actual prompt or SQL text.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;What you cannot reliably get from system tables alone:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Original &lt;STRONG&gt;question text&lt;/STRONG&gt; asked by the user.&lt;/LI&gt;
&lt;LI&gt;A documented &lt;STRONG&gt;mapping from prompt → generated SQL → assets queried&lt;/STRONG&gt; across native Genie One channels.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Feedback text&lt;/STRONG&gt; in system tables.&lt;/LI&gt;
&lt;/UL&gt;
&lt;HR /&gt;
&lt;H3&gt;2. Recommendation&lt;/H3&gt;
&lt;P&gt;&lt;STRONG&gt;Use the Genie Conversation API for any channel/integration you control, and log the payloads yourself.&lt;/STRONG&gt; The API returns the message &lt;CODE&gt;content&lt;/CODE&gt; (prompt), generated &lt;CODE&gt;query&lt;/CODE&gt;, query results, conversation/message IDs, and supports listing conversations/messages/comments.&lt;/P&gt;
&lt;P&gt;Practical recommendation:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Keep using &lt;STRONG&gt;system tables&lt;/STRONG&gt; for adoption/cost/channel rollups.&lt;/LI&gt;
&lt;LI&gt;Use &lt;STRONG&gt;Conversation API + your own logging&lt;/STRONG&gt; if you need prompt text, generated SQL, assets, and feedback/comment detail at report level.&lt;/LI&gt;
&lt;LI&gt;For native Genie UI review, use the &lt;STRONG&gt;Monitor&lt;/STRONG&gt; experience; it shows saved questions, responses, and feedback, but it is not a system-table export.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Summary: &lt;STRONG&gt;No, not via a documented system table alone today; use Conversation API + custom logging for full-fidelity reporting.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2026 19:52:18 GMT</pubDate>
      <guid>https://community.databricks.com/t5/warehousing-analytics/genie-one-unable-to-extract-usage-details/m-p/163038#M2646</guid>
      <dc:creator>Lu_Wang_ENB_DBX</dc:creator>
      <dc:date>2026-07-14T19:52:18Z</dc:date>
    </item>
  </channel>
</rss>

