<?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 MODFYING Data in HADOOP  from EG. in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/MODFYING-Data-in-HADOOP-from-EG/m-p/330111#M7296</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have been trying to update my master data in HADOOP with the transaction data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So my question is how to modify this master data in hadoop from Enterprise Guide.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;LIBNAME hdfs SASHDAT  PATH="/staging"  SERVER=SERVERNODE  INSTALL="/Hadoop/TKGrid";

			data hdfs.MASTER;
				set TRANSACTION;
				modify hdfs.MASTER key=Index;
				set TRANSACTION (drop=ObsCreatedDate);

				if _iorc_= 0 then
					replace;
				else output;
				call missing(of _all_);

			PROC DELETE data=TRANSACTION ;
			run;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It gives the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ERROR: The SASHDAT engine is a uni-directional engine. Data flows from the SAS client to the Hadoop Distributed File System. The 
engine cannot be used to fetch data from HDFS.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Then i tried with HPDS2 still the same error please help.&lt;/P&gt;</description>
    <pubDate>Mon, 06 Feb 2017 11:17:54 GMT</pubDate>
    <dc:creator>ankit___gupta</dc:creator>
    <dc:date>2017-02-06T11:17:54Z</dc:date>
    <item>
      <title>MODFYING Data in HADOOP  from EG.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/MODFYING-Data-in-HADOOP-from-EG/m-p/330111#M7296</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have been trying to update my master data in HADOOP with the transaction data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So my question is how to modify this master data in hadoop from Enterprise Guide.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;LIBNAME hdfs SASHDAT  PATH="/staging"  SERVER=SERVERNODE  INSTALL="/Hadoop/TKGrid";

			data hdfs.MASTER;
				set TRANSACTION;
				modify hdfs.MASTER key=Index;
				set TRANSACTION (drop=ObsCreatedDate);

				if _iorc_= 0 then
					replace;
				else output;
				call missing(of _all_);

			PROC DELETE data=TRANSACTION ;
			run;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It gives the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ERROR: The SASHDAT engine is a uni-directional engine. Data flows from the SAS client to the Hadoop Distributed File System. The 
engine cannot be used to fetch data from HDFS.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Then i tried with HPDS2 still the same error please help.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2017 11:17:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/MODFYING-Data-in-HADOOP-from-EG/m-p/330111#M7296</guid>
      <dc:creator>ankit___gupta</dc:creator>
      <dc:date>2017-02-06T11:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: MODFYING Data in HADOOP  from EG.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/MODFYING-Data-in-HADOOP-from-EG/m-p/330123#M7297</link>
      <description>&lt;P&gt;Your code defines library "hdfs", but the data step uses libraries "staging" and work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And it is what the message says, SASHDAT can only be used to write data to HDFS, not to read from there. At least in the way you tried.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you take your proc hpds2 example from&amp;nbsp;&lt;A href="http://support.sas.com/documentation/cdl/en/inmsref/67213/HTML/default/viewer.htm#p0kn1b8a7yt44fn1qwp8w1b8l92w.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/inmsref/67213/HTML/default/viewer.htm#p0kn1b8a7yt44fn1qwp8w1b8l92w.htm&lt;/A&gt;&amp;nbsp;(example 6)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post the complete log, including the libname(s) and data/proc steps.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2017 09:41:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/MODFYING-Data-in-HADOOP-from-EG/m-p/330123#M7297</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-02-06T09:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: MODFYING Data in HADOOP  from EG.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/MODFYING-Data-in-HADOOP-from-EG/m-p/330138#M7299</link>
      <description>&lt;P&gt;That was a typing error i'll just correct it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and yes i have tried the hpds2 technique.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2017 11:16:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/MODFYING-Data-in-HADOOP-from-EG/m-p/330138#M7299</guid>
      <dc:creator>ankit___gupta</dc:creator>
      <dc:date>2017-02-06T11:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: MODFYING Data in HADOOP  from EG.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/MODFYING-Data-in-HADOOP-from-EG/m-p/330396#M7315</link>
      <description>SASHDAT is mainly for LASR disk storage. What kind if data do you have and why do you need to use modify on it specifically using this engine? The engine is not optimal for DW data.</description>
      <pubDate>Tue, 07 Feb 2017 07:25:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/MODFYING-Data-in-HADOOP-from-EG/m-p/330396#M7315</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2017-02-07T07:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: MODFYING Data in HADOOP  from EG.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/MODFYING-Data-in-HADOOP-from-EG/m-p/330427#M7319</link>
      <description>&lt;P&gt;The other engines like SPDE or HADOOP is not&amp;nbsp;licensed to us thats why i was trying to figure all the other possible engine to edit the data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 09:37:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/MODFYING-Data-in-HADOOP-from-EG/m-p/330427#M7319</guid>
      <dc:creator>ankit___gupta</dc:creator>
      <dc:date>2017-02-07T09:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: MODFYING Data in HADOOP  from EG.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/MODFYING-Data-in-HADOOP-from-EG/m-p/330469#M7321</link>
      <description>&lt;P&gt;SPDE is included in the Base SAS&amp;nbsp;license, at least in the stand alone one. Not sure if you have "only" Visual Analytics embedded Base, if SPDE is supported. Have you verified this with SAS?&lt;/P&gt;
&lt;P&gt;But, don't use a tool that it isn't built for. Do you really need this&amp;nbsp;data to reside in Hadoop?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 14:17:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/MODFYING-Data-in-HADOOP-from-EG/m-p/330469#M7321</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2017-02-07T14:17:59Z</dc:date>
    </item>
  </channel>
</rss>

