<?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 posted in July 2018 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853372#M337292</link>
    <description>&lt;P&gt;Look at the actual content of the file and see if they are in fact SAS datasets.&lt;/P&gt;
&lt;P&gt;For example here is code to dump the first 240 bytes of a SAS dataset, a SAS transport file made with PROC CPORT, and a SAS version 5 transport file.&lt;/P&gt;
&lt;PRE&gt;1865  options ls=132 ps=60;
1866
1867  data _null_;
1868    infile "%sysfunc(pathname(work))/class.sas7bdat" lrecl=80 recfm=f obs=3;
1869    input;
1870    list;
1871  run;

NOTE: The infile ...
      RECFM=F,LRECL=80,File Size (bytes)=131072,
      Last Modified=11Jan2023:18:13:41,
      Create Time=11Jan2023:18:11:37

RULE:     ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0

1   CHAR  ............Âê.`³..Ï½’...Ç1Œ...."".33..2................"".33..2.3.#3.&amp;gt;.........
    ZONE  000000000000CE86B11CB9000C381111220330030000000000001111220330030302303001000000
    NUMR  0000000000002A10341FD280971C8F01220331224000000000318F0122033122431330E000310000

2   CHAR  ....SAS FILECLASS                           ................................DATA
    ZONE  00005452444444455222222222222222222222222222000000000000000000000000000000004454
    NUMR  0000313069C53C133000000000000000000000000000000000000000000000000000000000004141

3   CHAR      ....žïgõ¼£ÝAžïgõ¼£ÝA.....”ÑÀ.....”ÑÀ....................9.0401M5X64_10PRO...
    ZONE  222200009E6FBAD49E6FBAD4000009DC000009DC0000000000000000000032333343533533554000
    NUMR  00000000EF75C3D1EF75C3D10000041000000410001000101000000000009E0401D5864F1002F000
NOTE: 3 records were read from the infile ...
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds


1872  data _null_;
1873    infile "%sysfunc(pathname(work))/class.cport" lrecl=80 recfm=f obs=3;
1874    input;
1875    list;
1876  run;

NOTE: The infile ...\class.cport,
      RECFM=F,LRECL=80,File Size (bytes)=1840,
      Last Modified=11Jan2023:18:13:41,
      Create Time=11Jan2023:18:11:37

RULE:     ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0
1         **COMPRESSED** **COMPRESSED** **COMPRESSED** **COMPRESSED** **COMPRESSED********

2   CHAR  LIB CONTROL X64_10PR¼. SAS9.4¼ƒI¼¥D901WORK¼‚CLASS¼™VC5¼‚RC19¼ˆRL40¼ˆ1¼‡S 0  0  0
    ZONE  44424445544253353355B02545323B84BA43335454B844455B9543B85433B85433B83B8523223223
    NUMR  C9203FE42FC0864F1002C603139E4C39C549017F2BC23C133C9635C22319C82C40C81C7300000000

3   CHAR    NO¼„0¼‰1¼•wlt1¼‚¼.¼‚¼Î¼ÎSPAN CONTROL -7¼‚40¼…1¼†40¼ŠL¼ˆ40¼Ž¼&amp;amp;¼¦SPAN CONTROL -1
    ZONE  2244B83B83B97673B8B0B8BCBC554424445544223B833B83B833B84B833B8B2BA554424445544223
    NUMR  00EFC40C91C57C41C2C2C2CECE301E03FE42FC0D7C240C51C640CACC840CEC6C6301E03FE42FC0D1
NOTE: 3 records were read from the infile ...
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds


1877  data _null_;
1878    infile "%sysfunc(pathname(work))/class.xport" lrecl=80 recfm=f obs=3;
1879    input;
1880    list;
1881  run;

NOTE: The infile "...\class.xport,
      RECFM=F,LRECL=80,File Size (bytes)=2080,
      Last Modified=11Jan2023:18:13:41,
      Create Time=11Jan2023:18:12:00

RULE:     ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0
1         HEADER RECORD*******LIBRARY HEADER RECORD!!!!!!!000000000000000000000000000000
2         SAS     SAS     SASLIB  9.4     X64_10PR                        11JAN23:18:13:42
3         11JAN23:18:13:42
NOTE: 3 records were read from the infile 
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds


&lt;/PRE&gt;</description>
    <pubDate>Wed, 11 Jan 2023 23:18:13 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2023-01-11T23:18:13Z</dc:date>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853280#M337247</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I read the post above - thank Tom for the solution.&lt;/P&gt;
&lt;P&gt;In my case, I have a similar issue and tried with Tom's recommendation - But I cannot resolve the issue.&lt;/P&gt;
&lt;P&gt;Anyone have suggestion? Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PhanS_0-1673452408397.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/79276iAAB30BA7842849A8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PhanS_0-1673452408397.png" alt="PhanS_0-1673452408397.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PhanS_1-1673452469954.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/79277iF153EF3E6B43F8DD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PhanS_1-1673452469954.png" alt="PhanS_1-1673452469954.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 15:57:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853280#M337247</guid>
      <dc:creator>PhanS</dc:creator>
      <dc:date>2023-01-11T15:57:30Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853285#M337248</link>
      <description>&lt;P&gt;What do you expect as a resolution?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 16:11:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853285#M337248</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-01-11T16:11:40Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853289#M337252</link>
      <description>&lt;P&gt;There is no issue, it's a note that processing may take longer than expected. If you want to resolve it, convert it to a native format but that would mean recreating the data. Which your last step does, so using the data in the new library (OUT) wouldn't have the same message.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31493"&gt;@PhanS&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I read the post above - thank Tom for the solution.&lt;/P&gt;
&lt;P&gt;In my case, I have a similar issue and tried with Tom's recommendation - But I cannot resolve the issue.&lt;/P&gt;
&lt;P&gt;Anyone have suggestion? Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PhanS_0-1673452408397.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/79276iAAB30BA7842849A8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PhanS_0-1673452408397.png" alt="PhanS_0-1673452408397.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PhanS_1-1673452469954.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/79277iF153EF3E6B43F8DD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PhanS_1-1673452469954.png" alt="PhanS_1-1673452469954.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 16:35:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853289#M337252</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-01-11T16:35:16Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853308#M337259</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;SAS 7bdat file cannot be opened - this is my concern.&lt;/P&gt;
&lt;P&gt;Therefore, I can ran my SAS codes.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PhanS_0-1673458716100.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/79289iF134B19200FA58E2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PhanS_0-1673458716100.png" alt="PhanS_0-1673458716100.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 17:40:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853308#M337259</guid>
      <dc:creator>PhanS</dc:creator>
      <dc:date>2023-01-11T17:40:24Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853311#M337261</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Thank you - how long it would take?.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Last night and this morning, I did - but SAS 7bdat still cannot be opened. So, I cannot ran any my codes.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PhanS_0-1673459018727.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/79290i9313C1A23B2BC354/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PhanS_0-1673459018727.png" alt="PhanS_0-1673459018727.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 17:43:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853311#M337261</guid>
      <dc:creator>PhanS</dc:creator>
      <dc:date>2023-01-11T17:43:49Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853314#M337262</link>
      <description>&lt;P&gt;How long depends on the size or the dataset(s) and the speed of your computer and the disks being used to store the dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But that note should not prevent you from using the existing dataset.&lt;/P&gt;
&lt;P&gt;If you cannot use the existing dataset then you cannot copy it to a new format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suspect that perhaps your real issue is something else.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you show what happens if you attempt to use the dataset for something?&amp;nbsp; For example can you run PROC MEANS against it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note: Please post logs as text and not pictures.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 17:51:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853314#M337262</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-01-11T17:51:31Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853321#M337264</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc datasets lib=in details;
run;quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please post the output from the code above to ensure you have data.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 18:29:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853321#M337264</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-01-11T18:29:58Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853327#M337266</link>
      <description>&lt;P&gt;Hi Tom,&lt;/P&gt;
&lt;P&gt;Please see below - and in the attachment&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname in '/home/phan.sok/Data_foreign';&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;libname in '/home/phan.sok/Data_foreign';&lt;BR /&gt;libname out '/home/phan.sok/Data_recover';&lt;BR /&gt;proc copy inlib=in outlib=out noclone datecopy;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;/*log file&lt;BR /&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;68 &lt;BR /&gt;69 libname in '/home/phan.sok/Data_foreign';&lt;BR /&gt;NOTE: Libref IN refers to the same physical library as AS.&lt;BR /&gt;NOTE: Libref IN was successfully assigned as follows: &lt;BR /&gt;Engine: V9 &lt;BR /&gt;Physical Name: /home/phan.sok/Data_foreign&lt;BR /&gt;70 libname out '/home/phan.sok/Data_recover';&lt;BR /&gt;NOTE: Libref OUT was successfully assigned as follows: &lt;BR /&gt;Engine: V9 &lt;BR /&gt;Physical Name: /home/phan.sok/Data_recover&lt;BR /&gt;71 proc copy inlib=in outlib=out noclone datecopy;&lt;BR /&gt;72 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: Copying IN.BN to OUT.BN (memtype=DATA).&lt;BR /&gt;NOTE: Data file IN.BN.DATA is in a format that is native to another host, or the &lt;BR /&gt;file encoding does not match the session encoding. Cross Environment Data &lt;BR /&gt;Access will be used, which might require additional CPU resources and might &lt;BR /&gt;reduce performance.&lt;BR /&gt;NOTE: System Options for BUFSIZE and REUSE were used at user's request.&lt;BR /&gt;NOTE: Libname and/or system options for compress, pointobs, data representation and &lt;BR /&gt;encoding attributes were used at user's request.&lt;BR /&gt;NOTE: There were 0 observations read from the data set IN.BN.&lt;BR /&gt;NOTE: The data set OUT.BN has 0 observations and 674 variables.&lt;BR /&gt;NOTE: PROCEDURE COPY used (Total process time):&lt;BR /&gt;real time 0.02 seconds&lt;BR /&gt;user cpu time 0.02 seconds&lt;BR /&gt;system cpu time 0.00 seconds&lt;BR /&gt;memory 2281.12k&lt;BR /&gt;OS Memory 22440.00k&lt;BR /&gt;Timestamp 01/11/2023 06:57:25 PM&lt;BR /&gt;Step Count 141 Switch Count 1&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 323&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 39&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 272&lt;BR /&gt;*/&lt;BR /&gt;option nodate nonumber ps=65 ls=85;&lt;BR /&gt;libname out '/home/phan.sok/Data_recover'; &lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;data bn_T;&lt;BR /&gt;set out.bn;&lt;BR /&gt;run;&lt;BR /&gt;/*log file&lt;BR /&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;68 &lt;BR /&gt;69 option nodate nonumber ps=65 ls=85;&lt;BR /&gt;70 libname out '/home/phan.sok/Data_recover';&lt;BR /&gt;NOTE: Libref OUT was successfully assigned as follows: &lt;BR /&gt;Engine: V9 &lt;BR /&gt;Physical Name: /home/phan.sok/Data_recover&lt;BR /&gt;71 run;&lt;BR /&gt;72 &lt;BR /&gt;73 data bn_T;&lt;BR /&gt;74 set out.bn;&lt;BR /&gt;75 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 0 observations read from the data set OUT.BN.&lt;BR /&gt;NOTE: The data set WORK.BN_T has 0 observations and 674 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;user cpu time 0.00 seconds&lt;BR /&gt;system cpu time 0.00 seconds&lt;BR /&gt;memory 1816.18k&lt;BR /&gt;OS Memory 21932.00k&lt;BR /&gt;Timestamp 01/11/2023 06:58:31 PM&lt;BR /&gt;Step Count 147 Switch Count 2&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 290&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 16&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 264&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;76 &lt;BR /&gt;77 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;87 &lt;BR /&gt;*/&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 19:07:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853327#M337266</guid>
      <dc:creator>PhanS</dc:creator>
      <dc:date>2023-01-11T19:07:32Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853329#M337267</link>
      <description>&lt;P&gt;Hi Reeza&lt;/P&gt;
&lt;P&gt;Please kindly see the outcome&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PhanS_0-1673464132895.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/79295i2ABE3AD213351CD3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PhanS_0-1673464132895.png" alt="PhanS_0-1673464132895.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 19:09:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853329#M337267</guid>
      <dc:creator>PhanS</dc:creator>
      <dc:date>2023-01-11T19:09:05Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853337#M337269</link>
      <description>&lt;P&gt;Looks like it worked, but since there are zero observations there is nothing there for you use.&lt;/P&gt;
&lt;PRE&gt;NOTE: There were 0 observations read from the data set IN.BN.
NOTE: The data set OUT.BN has 0 observations and 674 variables.&lt;/PRE&gt;
&lt;P&gt;I worry that there are zero because you previously overwrote the original file.&amp;nbsp; Do you have a backup?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another possibility is that that you had previously and an error and the system option OBS was set to zero.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might try the copy step in a new SAS session and see if the finds more than zero observations to copy.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 19:34:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853337#M337269</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-01-11T19:34:16Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853349#M337274</link>
      <description>I agree with Tom's assessment. Replace your IN data set from a back up if you have one. Something likely wrecked that file and you need to recover it.</description>
      <pubDate>Wed, 11 Jan 2023 20:42:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853349#M337274</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-01-11T20:42:05Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853367#M337287</link>
      <description>&lt;P&gt;Hello Tom,&lt;/P&gt;
&lt;P&gt;I do have a backup for this file in several locations in my pc and my external disks.&lt;/P&gt;
&lt;P&gt;I restarted and reuploaded some of the files but none of them can be opened.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please note this file, and others of my SAS files (prior 2018), I used a SAS license and saved them. They appear that all of these files cannot be opened with SAS on Demand.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also used data transfer in SPSS - but they still cannot transfer/open.&lt;/P&gt;
&lt;P&gt;However, I tested several of my SAS files (after 2018), which I worked with SAS studio - they have no issue; they all can be transferred to SPSS data as well.&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any advice on this.&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 22:51:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853367#M337287</guid>
      <dc:creator>PhanS</dc:creator>
      <dc:date>2023-01-11T22:51:39Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853368#M337288</link>
      <description>&lt;P&gt;Dear Reeza,&lt;/P&gt;
&lt;P&gt;I replied to Tom - it appeared that all my SAS files (prior to 2018) that I used and saved with a SAS license cannot be opened in SAS on Demand.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do not know why - my SAS files (after 2018) that I worked and saved with SAS Studio, I have no issue with.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please note, these SAS files can be transferred in SPSS, but not for any SAS files prior to 2018.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may have any thoughts - let me know. Thanks a lot !&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 22:59:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853368#M337288</guid>
      <dc:creator>PhanS</dc:creator>
      <dc:date>2023-01-11T22:59:33Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853369#M337289</link>
      <description>&lt;P&gt;I cannot think of why a file created around 2015 to 2018 would not be usable.&lt;/P&gt;
&lt;P&gt;Unless they were made on an IBM mainframe.&amp;nbsp; Files made with SAS version 9 on windows or linux machines should be cross platform readable.&lt;/P&gt;
&lt;P&gt;Perhaps your transfer method or backup method corrupted the older files?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you made the files with SAS version 6 (.ssd or .ssd01 file extension) then you cannot read them with SAS version 9.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 23:07:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853369#M337289</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-01-11T23:07:50Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853370#M337290</link>
      <description>&lt;P&gt;Please show the SAS logs of the attempts to read one of the older files that does not work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If they also say the file has zero observations then perhaps the issue was with how you saved them prior to 2018.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 23:10:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853370#M337290</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-01-11T23:10:04Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853371#M337291</link>
      <description>That's very weird, are the files proprietary or can you share one? &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jan 2023 23:16:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853371#M337291</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-01-11T23:16:33Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853372#M337292</link>
      <description>&lt;P&gt;Look at the actual content of the file and see if they are in fact SAS datasets.&lt;/P&gt;
&lt;P&gt;For example here is code to dump the first 240 bytes of a SAS dataset, a SAS transport file made with PROC CPORT, and a SAS version 5 transport file.&lt;/P&gt;
&lt;PRE&gt;1865  options ls=132 ps=60;
1866
1867  data _null_;
1868    infile "%sysfunc(pathname(work))/class.sas7bdat" lrecl=80 recfm=f obs=3;
1869    input;
1870    list;
1871  run;

NOTE: The infile ...
      RECFM=F,LRECL=80,File Size (bytes)=131072,
      Last Modified=11Jan2023:18:13:41,
      Create Time=11Jan2023:18:11:37

RULE:     ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0

1   CHAR  ............Âê.`³..Ï½’...Ç1Œ...."".33..2................"".33..2.3.#3.&amp;gt;.........
    ZONE  000000000000CE86B11CB9000C381111220330030000000000001111220330030302303001000000
    NUMR  0000000000002A10341FD280971C8F01220331224000000000318F0122033122431330E000310000

2   CHAR  ....SAS FILECLASS                           ................................DATA
    ZONE  00005452444444455222222222222222222222222222000000000000000000000000000000004454
    NUMR  0000313069C53C133000000000000000000000000000000000000000000000000000000000004141

3   CHAR      ....žïgõ¼£ÝAžïgõ¼£ÝA.....”ÑÀ.....”ÑÀ....................9.0401M5X64_10PRO...
    ZONE  222200009E6FBAD49E6FBAD4000009DC000009DC0000000000000000000032333343533533554000
    NUMR  00000000EF75C3D1EF75C3D10000041000000410001000101000000000009E0401D5864F1002F000
NOTE: 3 records were read from the infile ...
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds


1872  data _null_;
1873    infile "%sysfunc(pathname(work))/class.cport" lrecl=80 recfm=f obs=3;
1874    input;
1875    list;
1876  run;

NOTE: The infile ...\class.cport,
      RECFM=F,LRECL=80,File Size (bytes)=1840,
      Last Modified=11Jan2023:18:13:41,
      Create Time=11Jan2023:18:11:37

RULE:     ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0
1         **COMPRESSED** **COMPRESSED** **COMPRESSED** **COMPRESSED** **COMPRESSED********

2   CHAR  LIB CONTROL X64_10PR¼. SAS9.4¼ƒI¼¥D901WORK¼‚CLASS¼™VC5¼‚RC19¼ˆRL40¼ˆ1¼‡S 0  0  0
    ZONE  44424445544253353355B02545323B84BA43335454B844455B9543B85433B85433B83B8523223223
    NUMR  C9203FE42FC0864F1002C603139E4C39C549017F2BC23C133C9635C22319C82C40C81C7300000000

3   CHAR    NO¼„0¼‰1¼•wlt1¼‚¼.¼‚¼Î¼ÎSPAN CONTROL -7¼‚40¼…1¼†40¼ŠL¼ˆ40¼Ž¼&amp;amp;¼¦SPAN CONTROL -1
    ZONE  2244B83B83B97673B8B0B8BCBC554424445544223B833B83B833B84B833B8B2BA554424445544223
    NUMR  00EFC40C91C57C41C2C2C2CECE301E03FE42FC0D7C240C51C640CACC840CEC6C6301E03FE42FC0D1
NOTE: 3 records were read from the infile ...
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds


1877  data _null_;
1878    infile "%sysfunc(pathname(work))/class.xport" lrecl=80 recfm=f obs=3;
1879    input;
1880    list;
1881  run;

NOTE: The infile "...\class.xport,
      RECFM=F,LRECL=80,File Size (bytes)=2080,
      Last Modified=11Jan2023:18:13:41,
      Create Time=11Jan2023:18:12:00

RULE:     ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0
1         HEADER RECORD*******LIBRARY HEADER RECORD!!!!!!!000000000000000000000000000000
2         SAS     SAS     SASLIB  9.4     X64_10PR                        11JAN23:18:13:42
3         11JAN23:18:13:42
NOTE: 3 records were read from the infile 
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds


&lt;/PRE&gt;</description>
      <pubDate>Wed, 11 Jan 2023 23:18:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853372#M337292</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-01-11T23:18:13Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853373#M337293</link>
      <description>&lt;P&gt;Can I send the file via email? Let me know.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 23:18:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853373#M337293</guid>
      <dc:creator>PhanS</dc:creator>
      <dc:date>2023-01-11T23:18:54Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853374#M337294</link>
      <description>You can in a DM on here I think &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Wed, 11 Jan 2023 23:24:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853374#M337294</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-01-11T23:24:38Z</dc:date>
    </item>
    <item>
      <title>RE: Data file is in a format that is native to another host posted in July 2018</title>
      <link>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853375#M337295</link>
      <description>&lt;P&gt;SAS On Demand runs on linux. If you created the SAS datasets you are trying to read on a different operating system, like Windows, for example then you may well have problems reading these on linux. SAS datasets are stored in OS-specific format.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 23:27:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/RE-Data-file-is-in-a-format-that-is-native-to-another-host/m-p/853375#M337295</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-01-11T23:27:34Z</dc:date>
    </item>
  </channel>
</rss>

