<?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 Re: Data file is in a format that is native to another host in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Data-file-is-in-a-format-that-is-native-to-another-host/m-p/373996#M275823</link>
    <description>I will try this out. Thank you so much!</description>
    <pubDate>Fri, 07 Jul 2017 15:09:01 GMT</pubDate>
    <dc:creator>yiyizhao86</dc:creator>
    <dc:date>2017-07-07T15:09:01Z</dc:date>
    <item>
      <title>Data file is in a format that is native to another host</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-file-is-in-a-format-that-is-native-to-another-host/m-p/370707#M275819</link>
      <description>&lt;P&gt;Hi! I am reading in a SAS data file but it still shows in the log that :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;NOTE: Data file EGFR.REPATED_MEASUREMENTS.DATA is in a format that is native to another host,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;or the file encoding does not match the session encoding. Cross Environment Data Access&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;will be used, which might require additional CPU resources and might reduce performance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am working with large datasets and the total processing time is way too long. Is it possible to pre-process the data into a dataset that is "native to SAS environment" so that I can use it later in other steps? Thank you so much!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2017 18:36:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-file-is-in-a-format-that-is-native-to-another-host/m-p/370707#M275819</guid>
      <dc:creator>yiyizhao86</dc:creator>
      <dc:date>2017-06-26T18:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: Data file is in a format that is native to another host</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-file-is-in-a-format-that-is-native-to-another-host/m-p/370708#M275820</link>
      <description>&lt;P&gt;Yes, just copy it over. The new WANT dataset will be in your native format. In general, moving data to your work library will allow for faster processing, but if it's a large file may take it's own time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set egr.repated_measurements;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 26 Jun 2017 18:38:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-file-is-in-a-format-that-is-native-to-another-host/m-p/370708#M275820</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-26T18:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: Data file is in a format that is native to another host</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-file-is-in-a-format-that-is-native-to-another-host/m-p/370728#M275821</link>
      <description>&lt;P&gt;Look into proc migrate. I had a similar issue as yours a while ago and this fixed it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname Source &amp;lt;engine&amp;gt; 'source-library-pathname';
libname Target base 'target-library-pathname';

proc migrate in=Source out=Target;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;Reference&lt;/EM&gt;:&amp;nbsp;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/70377/HTML/default/viewer.htm#n0twretj3hlz1pn1cqhio4akyrkp.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/70377/HTML/default/viewer.htm#n0twretj3hlz1pn1cqhio4akyrkp.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2017 19:40:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-file-is-in-a-format-that-is-native-to-another-host/m-p/370728#M275821</guid>
      <dc:creator>Rwon</dc:creator>
      <dc:date>2017-06-26T19:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Data file is in a format that is native to another host</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-file-is-in-a-format-that-is-native-to-another-host/m-p/373995#M275822</link>
      <description>Sounds good.Thank you so much!</description>
      <pubDate>Fri, 07 Jul 2017 15:08:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-file-is-in-a-format-that-is-native-to-another-host/m-p/373995#M275822</guid>
      <dc:creator>yiyizhao86</dc:creator>
      <dc:date>2017-07-07T15:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Data file is in a format that is native to another host</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-file-is-in-a-format-that-is-native-to-another-host/m-p/373996#M275823</link>
      <description>I will try this out. Thank you so much!</description>
      <pubDate>Fri, 07 Jul 2017 15:09:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-file-is-in-a-format-that-is-native-to-another-host/m-p/373996#M275823</guid>
      <dc:creator>yiyizhao86</dc:creator>
      <dc:date>2017-07-07T15:09:01Z</dc:date>
    </item>
  </channel>
</rss>

