<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>hive interview questions and answers - Wikitechy</title>
	<atom:link href="https://www.wikitechy.com/interview-questions/tag/hive-interview-questions-and-answers/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wikitechy.com/interview-questions/tag/hive-interview-questions-and-answers/</link>
	<description>Interview Questions</description>
	<lastBuildDate>Mon, 13 Sep 2021 06:07:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.wikitechy.com/interview-questions/wp-content/uploads/2025/10/cropped-wikitechy-icon-32x32.png</url>
	<title>hive interview questions and answers - Wikitechy</title>
	<link>https://www.wikitechy.com/interview-questions/tag/hive-interview-questions-and-answers/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>What is the difference between &#8216;select from table&#8217; and &#8216;select column from table&#8217; in hive ?</title>
		<link>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-select-from-table-and-select-column-from-table-in-hive/</link>
					<comments>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-select-from-table-and-select-column-from-table-in-hive/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 22:18:52 +0000</pubDate>
				<category><![CDATA[Hive]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[ANI Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[explain in hive]]></category>
		<category><![CDATA[explain the difference between sql and apache hive.]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[hive interview questions]]></category>
		<category><![CDATA[hive interview questions and answers]]></category>
		<category><![CDATA[hive query based interview questions]]></category>
		<category><![CDATA[hive query without mapreduce]]></category>
		<category><![CDATA[hive questions]]></category>
		<category><![CDATA[hive scenario based interview questions]]></category>
		<category><![CDATA[how will you optimize hive performance]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Impetus Technologies interview questions and answers]]></category>
		<category><![CDATA[Indiabulls Technology Solutions Ltd interview questions and answers]]></category>
		<category><![CDATA[Mindtree interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[Prokarma Softech Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[Synechron Te interview questions and answers]]></category>
		<category><![CDATA[Tata Consultancy Service interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Trigent Software interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Virtusa Consulting Services Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Wells Fargo interview questions and answers]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[Wipro interview questions and answers]]></category>
		<category><![CDATA[Yash Technologies interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=602</guid>

					<description><![CDATA[Answer : Table in Hive is stored as a directory in the HDFS...]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="difference-between-select-from-table-and-select-column-from-table-in-hive" class="color-green" style="text-align: justify;">Difference between &#8216;select * from table&#8217; and &#8216;select column from table&#8217; in hive</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>Table in Hive is stored as a directory in the HDFS.</li>
<li>Using select from table the Hive query processor simply goes directory that have one or more files in table schema.</li>
<li>You may do this if you have very small data like less than a Gigabyte.</li>
<li>In real clusters if you hit ‘select * from table’, it may have data in Terabytes and displaying that will run for long time.</li>
<li>Hive achieved sequence of map reduce programs that reads data from table stored on Hadoop Distributed File System.</li>
<li>Any data processing you do in Hive is achieved through sequence of map reduce programs that reads data from table stored on HDFS.</li>
<li>Hive map reduce based on query processing engine.</li>
<li>Tables have wide number of columns that representing different values.To perform select column the map reduce program will scan all rows and extract a column.</li>
</ul>
</div>
</div>
<div class="text-center row" style="text-align: justify;">
<div class="col-sm-12">
<div id="bsa-zone_1590522538159-8_123456"></div>
</div>
</div>
<div class="ImageContent">
<div class="hddn" style="text-align: justify;"><a href="https://cdn.wikitechy.com/interview-questions/hive/select-from-table-and-select-column-from-table-in-hive.png"><img decoding="async" class="aligncenter size-medium" src="https://cdn.wikitechy.com/interview-questions/hive/select-from-table-and-select-column-from-table-in-hive.png" alt="select-from-table-and-select-column-from-table-in-hive" width="288" height="149" /></a></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-select-from-table-and-select-column-from-table-in-hive/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is DDL statement in hive ?</title>
		<link>https://www.wikitechy.com/interview-questions/hive/what-is-ddl-statement-in-hive/</link>
					<comments>https://www.wikitechy.com/interview-questions/hive/what-is-ddl-statement-in-hive/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 21:19:35 +0000</pubDate>
				<category><![CDATA[Hive]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[ANI Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[create statement]]></category>
		<category><![CDATA[ddl commands in database]]></category>
		<category><![CDATA[ddl statements]]></category>
		<category><![CDATA[ddl statements in sql]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[hive case statement]]></category>
		<category><![CDATA[hive ddl]]></category>
		<category><![CDATA[hive ddl commands]]></category>
		<category><![CDATA[hive dml]]></category>
		<category><![CDATA[hive interview]]></category>
		<category><![CDATA[hive interview questions]]></category>
		<category><![CDATA[hive interview questions and answers]]></category>
		<category><![CDATA[hive interview questions and answers for experienced]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Impetus Technologies interview questions and answers]]></category>
		<category><![CDATA[Indiabulls Technology Solutions Ltd interview questions and answers]]></category>
		<category><![CDATA[interview questions on hive]]></category>
		<category><![CDATA[Mindtree interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[Prokarma Softech Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[Synechron Te interview questions and answers]]></category>
		<category><![CDATA[Tata Consultancy Service interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Trigent Software interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Virtusa Consulting Services Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Wells Fargo interview questions and answers]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[Wipro interview questions and answers]]></category>
		<category><![CDATA[Yash Technologies interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=563</guid>

					<description><![CDATA[Answer : The outline of the database schema typically change by SQL statements they are creating, deleting]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="ddl-statement-in-hive" class="color-green" style="text-align: justify;">DDL statement in hive</h2>
</div>
</div>
<div class="ImageContent" style="text-align: justify;">
<div class="hddn"><img fetchpriority="high" decoding="async" class="alignnone size-medium aligncenter" src="https://cdn.wikitechy.com/interview-questions/hive/webhcat-arch.png" alt="webhcat server" width="779" height="408" /></div>
</div>
<div class="TextHeading" style="text-align: justify;">
<div class="hddn">
<h2 id="ddl-data-definition-language" class="color-green">DDL (Data Definition Language):</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>The outline of the database schema typically change by SQL statements they are creating, deleting, or modifying schema objects such as databases, tables, and views.</li>
<li>Most statements starts with the keywords CREATE, DROP, or ALTER.</li>
</ul>
</div>
</div>
<div class="TextHeading" style="text-align: justify;">
<div class="hddn">
<h2 id="some-of-data-definition-language-statements-are" class="color-green">Some of Data Definition Language statements are:</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>CREATE &#8211; To create an object.</li>
<li>ALTER &#8211; To alter the structure of the existing object·</li>
<li>DROP &#8211; It used to delete objects.</li>
<li>TRUNCATE &#8211; Remove all records from a table, including spaces.</li>
<li>MSCK REPAIR TABLE &#8211; Refresh metadata information.</li>
</ul>
</div>
</div>
<p style="text-align: justify;">The DML statement define as INSERT statement, it involves metadata that must be have nodes, and is also damage the SYNC_DDL query option.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/hive/what-is-ddl-statement-in-hive/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is Data Hive ?</title>
		<link>https://www.wikitechy.com/interview-questions/hive/what-is-data-hive/</link>
					<comments>https://www.wikitechy.com/interview-questions/hive/what-is-data-hive/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 21:10:43 +0000</pubDate>
				<category><![CDATA[Hive]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[ANI Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[data types in hive]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[hadoop hive interview questions]]></category>
		<category><![CDATA[hadoop hive interview questions and answers]]></category>
		<category><![CDATA[hive big data]]></category>
		<category><![CDATA[hive create database]]></category>
		<category><![CDATA[hive current date]]></category>
		<category><![CDATA[hive data types]]></category>
		<category><![CDATA[hive database]]></category>
		<category><![CDATA[hive interview questions and answers]]></category>
		<category><![CDATA[hive load data]]></category>
		<category><![CDATA[hive questions and answers]]></category>
		<category><![CDATA[hive use database]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Impetus Technologies interview questions and answers]]></category>
		<category><![CDATA[Indiabulls Technology Solutions Ltd interview questions and answers]]></category>
		<category><![CDATA[load data inpath]]></category>
		<category><![CDATA[load data inpath hive]]></category>
		<category><![CDATA[Mindtree interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[Prokarma Softech Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[Synechron Te interview questions and answers]]></category>
		<category><![CDATA[Tata Consultancy Service interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Trigent Software interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Virtusa Consulting Services Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Wells Fargo interview questions and answers]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[Wipro interview questions and answers]]></category>
		<category><![CDATA[Yash Technologies interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=557</guid>

					<description><![CDATA[Answer : Data Hive is a data warehouse software project built on top of Apache Hadoop for providing query, and analysis.]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="data-hive" class="color-green" style="text-align: justify;">Data Hive</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>Data Hive is a data warehouse software project built on top of Apache Hadoop for providing query, and analysis.</li>
<li>Hive gives SQL like interface to query data stored in different databases and file systems that integrate with Hadoop.</li>
</ul>
</div>
</div>
<div class="ImageContent" style="text-align: justify;">
<div><img decoding="async" class="aligncenter size-medium" src="https://cdn.wikitechy.com/interview-questions/Hive/apache-hive-data-model.png" alt="Apache hive data model" width="696" height="244" /></div>
<div class="hddn"><span style="color: #000000; font-family: inherit; font-size: 2rem;">Data Processing Task</span></div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>Download the data</li>
<li>Upload the data</li>
<li>Start the hive view</li>
</ul>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li style="list-style-type: none;">
<ul>
<li style="text-align: justify;">Explore the hive user interface(UI)</li>
<li style="text-align: justify;">Create table temp_drivers</li>
<li style="text-align: justify;">Create query to populate hive table temp_drivers with drivers.csv data</li>
<li style="text-align: justify;">Create table drivers</li>
<li style="text-align: justify;">To create query for extract data from temp_drivers and store it to drivers.</li>
<li style="text-align: justify;">Create temp_timesheet and timesheet tables.</li>
<li style="text-align: justify;">For filter the data (driverid, hours_logged, miles_logged).</li>
<li style="text-align: justify;">For join the data (driverid, name, hours_logged, miles_logged).</li>
</ul>
</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/hive/what-is-data-hive/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is hive ?</title>
		<link>https://www.wikitechy.com/interview-questions/hive/what-is-hive/</link>
					<comments>https://www.wikitechy.com/interview-questions/hive/what-is-hive/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 21:09:15 +0000</pubDate>
				<category><![CDATA[Hive]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[ANI Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[data of partitioned columns in hive is physically present]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[hadoop hive interview questions]]></category>
		<category><![CDATA[hadoop hive interview questions and answers]]></category>
		<category><![CDATA[highest level data model in hive]]></category>
		<category><![CDATA[hive can be used for real time queries]]></category>
		<category><![CDATA[hive interview]]></category>
		<category><![CDATA[hive interview questions]]></category>
		<category><![CDATA[hive interview questions and answers]]></category>
		<category><![CDATA[hive interview questions and answers for experienced]]></category>
		<category><![CDATA[hive scenario based interview questions]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Impetus Technologies interview questions and answers]]></category>
		<category><![CDATA[Indiabulls Technology Solutions Ltd interview questions and answers]]></category>
		<category><![CDATA[interview questions on hive]]></category>
		<category><![CDATA[maximum size of string in hive]]></category>
		<category><![CDATA[Mindtree interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[pig interview questions]]></category>
		<category><![CDATA[Prokarma Softech Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[Synechron Te interview questions and answers]]></category>
		<category><![CDATA[Tata Consultancy Service interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Trigent Software interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Virtusa Consulting Services Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Wells Fargo interview questions and answers]]></category>
		<category><![CDATA[what is a hive]]></category>
		<category><![CDATA[what is a hive file]]></category>
		<category><![CDATA[what is hive allergy]]></category>
		<category><![CDATA[what is hive in hadoop]]></category>
		<category><![CDATA[what is pig in hadoop]]></category>
		<category><![CDATA[whats a hive]]></category>
		<category><![CDATA[whats hive]]></category>
		<category><![CDATA[whats hives]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[Wipro interview questions and answers]]></category>
		<category><![CDATA[Yash Technologies interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=548</guid>

					<description><![CDATA[Answer : Hive is a component of Hortonworks Data Platform(HDP).]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="hive" class="color-purple" style="text-align: justify;">Hive</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>Hive is a component of Hortonworks Data Platform(HDP).</li>
<li>Hive provides a SQL interface to data stored in HDP.</li>
<li>Hive has 3 main functions:</li>
</ul>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li style="list-style-type: none;">
<ul>
<li>Data Summarization</li>
<li>Query</li>
<li>Analysis.</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>It supports queries expressed language called HiveQL, which automatically translates SQL like queries into MapReduce jobs executed on Hadoop.</li>
<li>It also enables data serialization and increases flexibility in schema architecture including a system catalog called Hive Metastore.</li>
</ul>
</div>
</div>
<div class="text-center row" style="text-align: justify;"></div>
<div class="TextHeading" style="text-align: justify;">
<div class="hddn">
<h2 id="architecture-of-hive" class="color-purple">Architecture of hive :</h2>
</div>
</div>
<div class="ImageContent" style="text-align: justify;">
<div class="hddn"><img loading="lazy" decoding="async" class="aligncenter size-medium" src="https://cdn.wikitechy.com/interview-questions/Hive/what-is-hive.png" alt="what is hive" width="520" height="373" /></div>
</div>
<div class="TextHeading" style="text-align: justify;">
<div class="hddn">
<h2 id="features-of-hive" class="color-purple">Features of hive:</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>Different storage such as plain text, RCFile, ORC, HBase, and others.</li>
<li>Pre-defined functions (UDFs) to manipulate dates, strings, and other data-mining tools.</li>
<li>Hive supports extending the UDF set to handle use-cases not supported by built-in functions.</li>
</ul>
</div>
</div>
<div class="TextHeading" style="text-align: justify;">
<div class="hddn">
<h2 id="limitations-of-hive" class="color-purple">Limitations of Hive:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li style="text-align: justify;">Hive supports overwriting or hold data, but not updates and deletes.</li>
<li style="text-align: justify;">In Hive, sub queries are not supported</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/hive/what-is-hive/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
