<?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>question Re: MD5 value of a table in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/MD5-value-of-a-table/m-p/324642#M229426</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/92033"&gt;@Kiddo&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you check whether the below link helps your query?&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.cloudera.com/t5/Support-Questions/Hive-Do-we-have-checksum-in-hive/td-p/104490" target="_blank"&gt;https://community.cloudera.com/t5/Support-Questions/Hive-Do-we-have-checksum-in-hive/td-p/104490&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.cloudera.com/t5/Support-Questions/Hive-Can-t-get-the-md5-value/m-p/117696" target="_blank"&gt;https://community.cloudera.com/t5/Support-Questions/Hive-Can-t-get-the-md5-value/m-p/117696&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://cwiki.apache.org/confluence/display/Hive/LanguageManual+UDF" target="_blank"&gt;https://cwiki.apache.org/confluence/display/Hive/LanguageManual+UDF&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If you are happy with the reply, mark it Accept as Solution&lt;/P&gt;&lt;DIV class="view-original-post-link"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Fri, 17 Sep 2021 13:44:36 GMT</pubDate>
    <dc:creator>Shifu</dc:creator>
    <dc:date>2021-09-17T13:44:36Z</dc:date>
    <item>
      <title>MD5 value of a table</title>
      <link>https://community.cloudera.com/t5/Support-Questions/MD5-value-of-a-table/m-p/324586#M229413</link>
      <description>&lt;P&gt;How can we get 1 MD5 value for a hive table? Do not need a MD5 value for each record in the table.&amp;nbsp; Is there a way to query the MD5() at a table level. Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 17 Sep 2021 04:00:43 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/MD5-value-of-a-table/m-p/324586#M229413</guid>
      <dc:creator>Kiddo</dc:creator>
      <dc:date>2021-09-17T04:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: MD5 value of a table</title>
      <link>https://community.cloudera.com/t5/Support-Questions/MD5-value-of-a-table/m-p/324642#M229426</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/92033"&gt;@Kiddo&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you check whether the below link helps your query?&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.cloudera.com/t5/Support-Questions/Hive-Do-we-have-checksum-in-hive/td-p/104490" target="_blank"&gt;https://community.cloudera.com/t5/Support-Questions/Hive-Do-we-have-checksum-in-hive/td-p/104490&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.cloudera.com/t5/Support-Questions/Hive-Can-t-get-the-md5-value/m-p/117696" target="_blank"&gt;https://community.cloudera.com/t5/Support-Questions/Hive-Can-t-get-the-md5-value/m-p/117696&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://cwiki.apache.org/confluence/display/Hive/LanguageManual+UDF" target="_blank"&gt;https://cwiki.apache.org/confluence/display/Hive/LanguageManual+UDF&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If you are happy with the reply, mark it Accept as Solution&lt;/P&gt;&lt;DIV class="view-original-post-link"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Fri, 17 Sep 2021 13:44:36 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/MD5-value-of-a-table/m-p/324642#M229426</guid>
      <dc:creator>Shifu</dc:creator>
      <dc:date>2021-09-17T13:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: MD5 value of a table</title>
      <link>https://community.cloudera.com/t5/Support-Questions/MD5-value-of-a-table/m-p/324742#M229446</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/92033"&gt;@Kiddo&lt;/a&gt;&amp;nbsp;you either need to get the md5 of all the records or&amp;nbsp; you could collect it for the concatenated form of all the column names in a table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;select md5(concat(col1,col2)) from table1;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;select md5(concat(*)) from (SELECT collect_list(column_name) as col_name from information_schema.columns where table_schema='db1' and
table_name='table1')e;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this answers your question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Sep 2021 13:03:54 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/MD5-value-of-a-table/m-p/324742#M229446</guid>
      <dc:creator>smruti</dc:creator>
      <dc:date>2021-09-19T13:03:54Z</dc:date>
    </item>
  </channel>
</rss>

