<?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: What tool is the best tool for extract data from Teradata database to hortonworks HDFS? in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109403#M72253</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/369/amcbarnett.html" nodeid="369"&gt;@Ancil McBarnett :&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hortonworks.com/answers/19470/view.html#"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Can you plese help me out.&lt;/P&gt;&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/369/amcbarnett.html" nodeid="369"&gt;&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 25 Feb 2016 19:08:28 GMT</pubDate>
    <dc:creator>loknathsudhakar</dc:creator>
    <dc:date>2016-02-25T19:08:28Z</dc:date>
    <item>
      <title>What tool is the best tool for extract data from Teradata database to hortonworks HDFS?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109396#M72246</link>
      <description>&lt;P&gt;our hortonworks cluster look for an ETL tool to extract data from tara data to HDFS &lt;/P&gt;</description>
      <pubDate>Sun, 24 Jan 2016 03:11:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109396#M72246</guid>
      <dc:creator>robi</dc:creator>
      <dc:date>2016-01-24T03:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: What tool is the best tool for extract data from Teradata database to hortonworks HDFS?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109397#M72247</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2338/robindong2000.html" nodeid="2338"&gt;@Robin Dong&lt;/A&gt;&lt;/P&gt;&lt;P&gt; take a look at our add-on for teradata and hdp. &lt;A href="http://hortonworks.com/hdp/addons/"&gt;Link&lt;/A&gt;. Read the docs on the &lt;A href="http://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.3.2/bk_HortonworksConnectorForTeradata/content/index.html"&gt;Connector&lt;/A&gt;. In general you would use &lt;A href="http://sqoop.apache.org/docs/1.4.6/SqoopUserGuide.html"&gt;Sqoop&lt;/A&gt; to ingest into and out of an EDW or RDBMS.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jan 2016 03:28:30 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109397#M72247</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-01-24T03:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: What tool is the best tool for extract data from Teradata database to hortonworks HDFS?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109398#M72248</link>
      <description>&lt;P&gt;There is no one best tool.  &lt;/P&gt;&lt;P&gt;For an Opensource offering use the Hortonworks Connector for Teradata. This is the Sqoop Implementation to take data from Teradata to HDP.   Documentation for the connector is &lt;A target="_blank" href="https://hortonworks.com/wp-content/uploads/2015/04/hwx-connector-for-teradata.pdf"&gt;here.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hortonworks documentation is &lt;A target="_blank" href="http://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.3.2/bk_HortonworksConnectorForTeradata/content/index.html"&gt;here.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Teradata driver can be found  &lt;A target="_blank" href="http://hortonworks.com/hdp/addons/"&gt;here&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Save the files from the download to the SQOOP library folder /usr/hdp/current/sqoop-client/lib &lt;/P&gt;&lt;P&gt;#Set Classpath&lt;/P&gt;&lt;PRE&gt;export HIVE_HOME=/usr/hdp/current/hiveserver2 
export HADOOP_HOME=.usr/hdp/current/
export SQOOP_HOME=/usr/hdp/current/sqoop-client/lib
export HADOOP_CLASSPATH=$(hcat -classpath) 
export LIB_JARS=$(echo ${HADOOP_CLASSPATH} | sed -e 's/::*/,/g’)&lt;/PRE&gt;&lt;P&gt;Some command examples
# Hive Import:&lt;/P&gt;&lt;PRE&gt;sqoop —hive-import —hive-overwrite - -create-hive-table —hive-table &amp;lt;table-name&amp;gt; —null-string ‘\\N' —null-non-string ‘\\N'

#Define a Table based on one in a database (Eg. MySQL):
#Important because the Teradata Connector needs to have a Table exists first before importing data
sqoop create-hive-table --connect jdbc:mysql://db.example.com/corp  --table employees --hive-table emps&lt;/PRE&gt;&lt;PRE&gt; Store as ORC file

sqoop import -libjars ${LIB_JARS} 
-Dteradata.db.input.target.table.schema="cust_id int, acct_type string, 
acct_nbr string, acct_start_date date, acct_end_date date" 
-Dteradata.db.input.file.format=orcfile --connect 
jdbc:teradata://&amp;lt;teradata host ip address&amp;gt;/Database=financial 
--connection-manager org.apache.sqoop.teradata.TeradataConnManager 
--username dbc --password dbc --table accts --hive-import --hive-table 
financial.acctssqoop import —connect 
jdbc:teradata://192.168.1.13/Database=retail --connection-manager 
org.apache.sqoop.teradata.TeradataConnManager --username dbc --password 
dbc --table accts --hive-import --hive-table financial.accts&lt;/PRE&gt;&lt;P&gt;Info on Teradata offerings beyond Sqoop can be found at this link&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hortonworks.com/questions/4418/access-modes-for-teradata-beyond-sqoop-ingestion.html"&gt;https://community.hortonworks.com/questions/4418/access-modes-for-teradata-beyond-sqoop-ingestion.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://community.hortonworks.com/questions/8411/sqoop-job-too-slow-importing-data-from-teradata-to.html"&gt;https://community.hortonworks.com/questions/8411/sqoop-job-too-slow-importing-data-from-teradata-to.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;From HDFS to Teradata can be found here &lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://community.hortonworks.com/articles/6161/hdfs-to-teradata-example.html"&gt;https://community.hortonworks.com/articles/6161/hdfs-to-teradata-example.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hortonworks.com/questions/4418/access-modes-for-teradata-beyond-sqoop-ingestion.html"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Other ETL tools available are Talend Big Data Edition, Pentaho, Oracle Data Integrator&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jan 2016 03:32:40 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109398#M72248</guid>
      <dc:creator>amcbarnett</dc:creator>
      <dc:date>2016-01-24T03:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: What tool is the best tool for extract data from Teradata database to hortonworks HDFS?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109399#M72249</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/369/amcbarnett.html" nodeid="369"&gt;@Ancil McBarnett&lt;/A&gt;  Impressive response!!!&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jan 2016 03:51:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109399#M72249</guid>
      <dc:creator>nsabharwal</dc:creator>
      <dc:date>2016-01-24T03:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: What tool is the best tool for extract data from Teradata database to hortonworks HDFS?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109400#M72250</link>
      <description>&lt;P&gt;&lt;A href="https://community.hortonworks.com/users/369/amcbarnett.html"&gt;@Ancil McBarnett&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hortonworks.com/users/369/amcbarnett.html"&gt;&lt;/A&gt;Great, appreciated your quick respond. we will try this tool to see what comes out.&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;Robin&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jan 2016 04:22:00 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109400#M72250</guid>
      <dc:creator>robi</dc:creator>
      <dc:date>2016-01-24T04:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: What tool is the best tool for extract data from Teradata database to hortonworks HDFS?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109401#M72251</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2338/robindong2000.html" nodeid="2338"&gt;@Robin Dong&lt;/A&gt; has this been resolved? Can you post your solution or accept best answer?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 23:19:43 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109401#M72251</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-02-02T23:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: What tool is the best tool for extract data from Teradata database to hortonworks HDFS?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109402#M72252</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am getting the following ERROR:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;16/02/25 04:06:39 ERROR tool.BaseSqoopTool: Unrecognized argument: -Dteradata.db.input.file.format&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The command I am running:
&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;sqoop import -libjars ${LIB_JARS} --connect jdbc:teradata://&amp;lt;host_address&amp;gt;/TMODE=ANSI,CHARSET=UTF8,database=datatypes --connection-manager org.apache.sqoop.teradata.TeradataConnManager  --username dbc --password &amp;lt;password&amp;gt; --table test_datatype_numeric --split-by col_num --target-dir /sqoop/teratest/orc_new -Dteradata.db.input.file.format orcfile&lt;/P&gt;&lt;P&gt;Basically I am using &lt;STRONG&gt;Hortonworks Connector for Teradata. &lt;/STRONG&gt;I want to store the result in ORC format.&lt;STRONG&gt;
&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Can some one help.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2016 19:08:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109402#M72252</guid>
      <dc:creator>loknathsudhakar</dc:creator>
      <dc:date>2016-02-25T19:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: What tool is the best tool for extract data from Teradata database to hortonworks HDFS?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109403#M72253</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/369/amcbarnett.html" nodeid="369"&gt;@Ancil McBarnett :&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hortonworks.com/answers/19470/view.html#"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Can you plese help me out.&lt;/P&gt;&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/369/amcbarnett.html" nodeid="369"&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2016 19:08:28 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109403#M72253</guid>
      <dc:creator>loknathsudhakar</dc:creator>
      <dc:date>2016-02-25T19:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: What tool is the best tool for extract data from Teradata database to hortonworks HDFS?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109404#M72254</link>
      <description>&lt;P&gt;You're saying the format coming from teradata is orc what you need to do is import into Hive orc table. Look at sqoop user guide for Hive &lt;A href="https://sqoop.apache.org/docs/1.4.6/SqoopUserGuide.html#_importing_data_into_hive"&gt;https://sqoop.apache.org/docs/1.4.6/SqoopUserGuide.html#_importing_data_into_hive&lt;/A&gt;&lt;/P&gt;&lt;P&gt;And our documentation for sqoop&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2016 20:27:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/What-tool-is-the-best-tool-for-extract-data-from-Teradata/m-p/109404#M72254</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-02-25T20:27:17Z</dc:date>
    </item>
  </channel>
</rss>

