<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>DataStax Support Forums &#187; Topic: Creating external Hive table fails</title>
		<link>http://www.datastax.com/support-forums/topic/creating-external-hive-table-fails</link>
		<description>Software, Support, and Training for Apache Cassandra</description>
		<language>en-US</language>
		<pubDate>Wed, 19 Jun 2013 16:45:24 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.3</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.datastax.com/support-forums/search.php</link>
		</textInput>
		<atom:link href="http://www.datastax.com/support-forums/rss/topic/creating-external-hive-table-fails" rel="self" type="application/rss+xml" />

		<item>
			<title>alexliu on "Creating external Hive table fails"</title>
			<link>http://www.datastax.com/support-forums/topic/creating-external-hive-table-fails#post-4277</link>
			<pubDate>Mon, 30 Jul 2012 16:58:13 +0000</pubDate>
			<dc:creator>alexliu</dc:creator>
			<guid isPermaLink="false">4277@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;You can use Alter table to change the table name. But you can't directly create a different name table form the cassandra column family name.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jonusko on "Creating external Hive table fails"</title>
			<link>http://www.datastax.com/support-forums/topic/creating-external-hive-table-fails#post-3917</link>
			<pubDate>Thu, 26 Jul 2012 21:36:34 +0000</pubDate>
			<dc:creator>jonusko</dc:creator>
			<guid isPermaLink="false">3917@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;I wanted to see if creating external tables in Hive work using a table name that is different from the Cassandra table name. However, I can no longer get Hive to run since I manually deleted a database in the MetaStore.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xedin on "Creating external Hive table fails"</title>
			<link>http://www.datastax.com/support-forums/topic/creating-external-hive-table-fails#post-3915</link>
			<pubDate>Thu, 26 Jul 2012 21:26:08 +0000</pubDate>
			<dc:creator>xedin</dc:creator>
			<guid isPermaLink="false">3915@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Ok, thank you for the information!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jonusko on "Creating external Hive table fails"</title>
			<link>http://www.datastax.com/support-forums/topic/creating-external-hive-table-fails#post-3914</link>
			<pubDate>Thu, 26 Jul 2012 21:25:25 +0000</pubDate>
			<dc:creator>jonusko</dc:creator>
			<guid isPermaLink="false">3914@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;I am using DSE 2.1.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xedin on "Creating external Hive table fails"</title>
			<link>http://www.datastax.com/support-forums/topic/creating-external-hive-table-fails#post-3910</link>
			<pubDate>Thu, 26 Jul 2012 20:12:02 +0000</pubDate>
			<dc:creator>xedin</dc:creator>
			<guid isPermaLink="false">3910@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Thanks for reporting this problem! This sounds like a bug, we will create an issue and investigate the cause. What version of DSE you are you currently using?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jonusko on "Creating external Hive table fails"</title>
			<link>http://www.datastax.com/support-forums/topic/creating-external-hive-table-fails#post-3907</link>
			<pubDate>Thu, 26 Jul 2012 19:47:00 +0000</pubDate>
			<dc:creator>jonusko</dc:creator>
			<guid isPermaLink="false">3907@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;It appears that create external table always fails if the table has already been created in Cassandra. It does not look like one can create a table in Hive that only references some of the columns in the Cassandra table.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jonusko on "Creating external Hive table fails"</title>
			<link>http://www.datastax.com/support-forums/topic/creating-external-hive-table-fails#post-3355</link>
			<pubDate>Fri, 20 Jul 2012 23:11:26 +0000</pubDate>
			<dc:creator>jonusko</dc:creator>
			<guid isPermaLink="false">3355@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Creating an external table in Hive displays an error if the table already exists in another keyspace. However, it appears that the Hive table was created. Steps to reproduce:&#60;/p&#62;
&#60;p&#62;Using CQL...&#60;/p&#62;
&#60;p&#62;1) Create a keyspace &#34;Company1&#34; with a replication factor = 1.&#60;br /&#62;
2) Create a table &#34;TestTable&#34; in Company1;&#60;br /&#62;
3) Insert a row of data in Company1.TestTable.&#60;br /&#62;
4) Create a keyspace &#34;Company2&#34; with a replication factor = 1.&#60;br /&#62;
5) Create a table &#34;TestTable&#34; in Company2;&#60;br /&#62;
6) Insert a row of data in Company2.TestTable. (Use different values.)&#60;/p&#62;
&#60;p&#62;Using Hive...&#60;br /&#62;
7) Create an external table &#34;TestTable&#34; with cassandra.ks.name = &#34;Company1&#34;.&#60;br /&#62;
8) Create an external table &#34;TestTable&#34; with cassandra.ks.name = &#34;Company2&#34;.&#60;/p&#62;
&#60;p&#62;Step #8 will cause and error: AlreadyExistsException(message: Table TestTable already exists)&#60;/p&#62;
&#60;p&#62;However, if you &#34;use Company2&#34; and &#34;show tables&#34;, TestTable exists. Selecting the data in TestTable displays the correct data. Using Company1 also displays the correct data.&#60;/p&#62;
&#60;p&#62;Is this error incorrect? Can Hive contain identical table names from two different keyspaces?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
