<?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: &amp;quot;DATA is in a format that is native to another host&amp;quot;, not solved by usual solutions in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/528482#M144244</link>
    <description>&lt;P&gt;Where you create your library "circuit" , try this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;library circuit "path"&amp;nbsp;inencoding=any outencoding=any;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 18 Jan 2019 23:38:22 GMT</pubDate>
    <dc:creator>saslove</dc:creator>
    <dc:date>2019-01-18T23:38:22Z</dc:date>
    <item>
      <title>"DATA is in a format that is native to another host", not solved by usual solutions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/526447#M143363</link>
      <description>&lt;P&gt;I know there has been several posts about this, I've read many of them, but sadly the solutions (mainly, using Unicode server) do not work and I still get the mistake as soon as I try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATA CIRCUIT.FVEALL;&lt;/P&gt;&lt;P&gt;set DATA CIRCUIT.FVE;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some variables contain text and it was written in French; could that be the issue? I tried to remove the variables, but I hit a wall as soon as SAS reads the dataset and get the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you think this is the issue? Not sure what else it could be. Also, what could I do to fix the issue or even to just remove the variables without getting the error?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EDIT: I have tried outencoding (moving library to new one), I have tried to rename file, nothing works on SAS 9.4 on my laptop; however, I have noticed that while I get the warning, it still works on another computer (using SAS 9.3).&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 21:53:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/526447#M143363</guid>
      <dc:creator>bwg</dc:creator>
      <dc:date>2019-01-18T21:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: "DATA is in a format that is native to another host", not solved by usual solutions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/526465#M143372</link>
      <description>Need more info to help, first off, did you mean SET in the second line?  Where/how was the original dataset created?</description>
      <pubDate>Fri, 11 Jan 2019 19:47:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/526465#M143372</guid>
      <dc:creator>RyanK</dc:creator>
      <dc:date>2019-01-11T19:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: "DATA is in a format that is native to another host", not solved by usual solutions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/526495#M143389</link>
      <description>&lt;P&gt;Generally that message means that you are using a SAS data set that was created on a different operating system. Depending on the OS SAS will be able to use the data but it provides that message because it may take more time to process as a conversion takes place and sometimes there may be some slightly different results then if the file was used in it's native OS and SAS version.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is &lt;STRONG&gt;not&lt;/STRONG&gt; and error or mistake, just a notification.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The resulting data set FVEALL of&lt;/P&gt;
&lt;P&gt;DATA CIRCUIT.FVEALL;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; set&amp;nbsp;CIRCUIT.FVE;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;should not generate that message when used. You could overwrite the existing FVE by&lt;/P&gt;
&lt;P&gt;DATA CIRCUIT.FVEALL;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; set&amp;nbsp;CIRCUIT.FVE;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;DATA CIRCUIT.FVE;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; set&amp;nbsp;CIRCUIT.FVEALL;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;which means future use of FVE shouldn't generate the message.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 20:49:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/526495#M143389</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-01-11T20:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: "DATA is in a format that is native to another host", not solved by usual solutions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/528458#M144235</link>
      <description>&lt;P&gt;I apologize. It does have 'set' in the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know how it was created; I was given the database. I was able to work on it on SAS 9.3 on a desktop in my lab yesterday. But it won't work on my laptop (SAS 9.4).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For some reason that issue causes errors and thus I can't proceed with statistical analyses.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 21:45:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/528458#M144235</guid>
      <dc:creator>bwg</dc:creator>
      <dc:date>2019-01-18T21:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: "DATA is in a format that is native to another host", not solved by usual solutions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/528464#M144237</link>
      <description>&lt;P&gt;That's what I understood from reading about it online. However, I still get the 'error' message as soon as the first part of the code is read in SAS, thus this trick does not work for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried to do 'outencoding' and it doesn't work either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Despite the 'warning', I was able to perform some statistical analyses on another computer using SAS 9.3. However, it does not work on my laptop (SAS 9.4). I have tried using the Unicode Server and Unicode Support; both don't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm a bit at lost.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 21:49:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/528464#M144237</guid>
      <dc:creator>bwg</dc:creator>
      <dc:date>2019-01-18T21:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: "DATA is in a format that is native to another host", not solved by usual solutions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/528481#M144243</link>
      <description>&lt;P&gt;Can you run the following proc code on your file and post the results here please&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents data=circuit.fve;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This will tell us what operating system the file was created on and its encoding (although I don't think the encoding is the problem).&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 23:37:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/528481#M144243</guid>
      <dc:creator>ChrisBrooks</dc:creator>
      <dc:date>2019-01-18T23:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: "DATA is in a format that is native to another host", not solved by usual solutions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/528482#M144244</link>
      <description>&lt;P&gt;Where you create your library "circuit" , try this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;library circuit "path"&amp;nbsp;inencoding=any outencoding=any;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 23:38:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/528482#M144244</guid>
      <dc:creator>saslove</dc:creator>
      <dc:date>2019-01-18T23:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: "DATA is in a format that is native to another host", not solved by usual solutions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/528540#M144268</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/43019"&gt;@bwg&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;That's what I understood from reading about it online. However, I still get the 'error' message as soon as the first part of the code is read in SAS, thus this trick does not work for me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also tried to do 'outencoding' and it doesn't work either.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Despite the 'warning', I was able to perform some statistical analyses on another computer using SAS 9.3. However, it does not work on my laptop (SAS 9.4). I have tried using the Unicode Server and Unicode Support; both don't work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm a bit at lost.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If you are using different versions of SAS on different operating systems then you will definitely trigger the need to use CEDA engine to convert the files for you on the fly.&amp;nbsp; But you should not have any problems using the data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will have issues with format catalogs.&amp;nbsp; If you are using formats then either keep the source code and define the formats into WORK for each session that needs them.&amp;nbsp; Or create separate catalogs for each version/operating system combination that you are using and point your FMTSEARCH option setting to the correct catalog(s).&lt;/P&gt;</description>
      <pubDate>Sat, 19 Jan 2019 16:03:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/528540#M144268</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-01-19T16:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: "DATA is in a format that is native to another host", not solved by usual solutions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/528751#M144344</link>
      <description>&lt;P&gt;If you have problems moving datasets between computers, trying using PROC CPORT to create a transport file.&amp;nbsp; If all else fails, dump the dataset contents to a flat file then reimport it.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jan 2019 13:16:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/quot-DATA-is-in-a-format-that-is-native-to-another-host-quot-not/m-p/528751#M144344</guid>
      <dc:creator>RyanK</dc:creator>
      <dc:date>2019-01-21T13:16:41Z</dc:date>
    </item>
  </channel>
</rss>

