<?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: How to import .txt files in SAS Software for Learning Community</title>
    <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785643#M312</link>
    <description>&lt;P&gt;There is no need to "import" a text file. Just READ the text file.&lt;/P&gt;
&lt;P&gt;It looks like your files do NOT have any tabs in them.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The CLASS file seems to be using multiple spaces so the columns will align when printed/viewed with a fixed width font.&lt;/P&gt;
&lt;PRE&gt;Name     Gender   Age                                                           
Joyce    F        11                                                            
Thomas   M        11                                                            
Jane     F        12                                                            
Louise   F        12  &lt;/PRE&gt;
&lt;P&gt;So just read them "normally" and see if that works.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class ;
  infile '/home/u58841625/Cert/class.txt' firstobs=2 truncover ;
  input name :$20. gender :$1. age ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The other file&lt;/P&gt;
&lt;PRE&gt;Region State Capital Bird                                                       
South Georgia Atlanta 'Brown Thrasher'                                          
South 'North Carolina' Raleigh Cardinal                                         
North Connecticut Hartford Robin                                                
West Washington Olympia 'American Goldfinch'                                    
Midwest Illinois Springfield Cardinal&lt;/PRE&gt;
&lt;P&gt;appears to have a single space between the values and quotes around values that contain spaces. So use the DSD option with space as the delimiter.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data state;
  infile '/home/u58841625/Cert/state_data.txt' dsd dlm=' ' firstobs=2 truncover;
  input Region :$10. State :$30.  Capital :$30.  Bird :$40. ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 12 Dec 2021 19:50:43 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2021-12-12T19:50:43Z</dc:date>
    <item>
      <title>How to import .txt files</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/784827#M294</link>
      <description>&lt;P&gt;I am trying to import .txt files (I have attached the files below). Here is the code I wrote:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc import datafile='/home/u58841625/Cert/class.txt' dbms=tab out=class&lt;BR /&gt;replace;&lt;BR /&gt;delimiter='09'x;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc import datafile="/home/u58841625/Cert/state_data.txt" out=work.state&lt;BR /&gt;dbms=tab replace;&lt;BR /&gt;delimiter='09'x;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output tables are expected to have 3 and 4 columns respectively but there is only a single column in both tables. (All the columns are merged into one column. Images attached below). Can anyone please explain to me what is the mistake in my code?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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="nbav_1-1638946886740.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66484i164F71B6E9751A67/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nbav_1-1638946886740.png" alt="nbav_1-1638946886740.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;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nbav_2-1638946918529.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66485i1D5CFF647A9461C3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nbav_2-1638946918529.png" alt="nbav_2-1638946918529.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, 08 Dec 2021 07:02:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/784827#M294</guid>
      <dc:creator>nbav</dc:creator>
      <dc:date>2021-12-08T07:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to import .txt files</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/784840#M295</link>
      <description>&lt;P&gt;Open both text files with a&amp;nbsp;&lt;EM&gt;good&lt;/EM&gt; text editor (e.g. Notepad++) which can display special characters and/or has a hex display mode, before uploading, to verify which delimiter is used.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 07:47:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/784840#M295</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-12-08T07:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to import .txt files</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/784878#M296</link>
      <description>Your TXT is delimited by white blank not TAB character.&lt;BR /&gt;&lt;BR /&gt;proc import datafile='/home/u58841625/Cert/class.txt' dbms=DLM  out=class&lt;BR /&gt;replace;&lt;BR /&gt;delimiter=' ';&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc import datafile="/home/u58841625/Cert/state_data.txt" out=work.state&lt;BR /&gt;dbms=CSV  replace;&lt;BR /&gt;delimiter=' ';&lt;BR /&gt;run;</description>
      <pubDate>Wed, 08 Dec 2021 11:42:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/784878#M296</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-12-08T11:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to import .txt files</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785631#M310</link>
      <description>&lt;P&gt;Thank you for your reoly. I have opened both files in notepad++ and there were no special characters.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:34:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785631#M310</guid>
      <dc:creator>nbav</dc:creator>
      <dc:date>2021-12-12T16:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to import .txt files</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785635#M311</link>
      <description>&lt;P&gt;Thank you for your reply. I have tried this code before. It is partially working. Please look at the images below I am getting so many unwanted columns with missing values. Is there a solution to get rid of those unwanted columns??&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="nbav_0-1639326998454.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66672i002DE90F4A3294ED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nbav_0-1639326998454.png" alt="nbav_0-1639326998454.png" /&gt;&lt;/span&gt;&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="nbav_1-1639327037180.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66673i97106E1D2D0D8802/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nbav_1-1639327037180.png" alt="nbav_1-1639327037180.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:37:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785635#M311</guid>
      <dc:creator>nbav</dc:creator>
      <dc:date>2021-12-12T16:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to import .txt files</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785643#M312</link>
      <description>&lt;P&gt;There is no need to "import" a text file. Just READ the text file.&lt;/P&gt;
&lt;P&gt;It looks like your files do NOT have any tabs in them.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The CLASS file seems to be using multiple spaces so the columns will align when printed/viewed with a fixed width font.&lt;/P&gt;
&lt;PRE&gt;Name     Gender   Age                                                           
Joyce    F        11                                                            
Thomas   M        11                                                            
Jane     F        12                                                            
Louise   F        12  &lt;/PRE&gt;
&lt;P&gt;So just read them "normally" and see if that works.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class ;
  infile '/home/u58841625/Cert/class.txt' firstobs=2 truncover ;
  input name :$20. gender :$1. age ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The other file&lt;/P&gt;
&lt;PRE&gt;Region State Capital Bird                                                       
South Georgia Atlanta 'Brown Thrasher'                                          
South 'North Carolina' Raleigh Cardinal                                         
North Connecticut Hartford Robin                                                
West Washington Olympia 'American Goldfinch'                                    
Midwest Illinois Springfield Cardinal&lt;/PRE&gt;
&lt;P&gt;appears to have a single space between the values and quotes around values that contain spaces. So use the DSD option with space as the delimiter.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data state;
  infile '/home/u58841625/Cert/state_data.txt' dsd dlm=' ' firstobs=2 truncover;
  input Region :$10. State :$30.  Capital :$30.  Bird :$40. ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 12 Dec 2021 19:50:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785643#M312</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-12-12T19:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to import .txt files</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785694#M313</link>
      <description>&lt;P&gt;Thank you. Your solution worked. But I am still trying to find out how to import those files.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 08:45:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785694#M313</guid>
      <dc:creator>nbav</dc:creator>
      <dc:date>2021-12-13T08:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to import .txt files</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785695#M314</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;gave you working code for both files. Where is the issue?&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 08:58:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785695#M314</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-12-13T08:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to import .txt files</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785700#M315</link>
      <description>&lt;P&gt;I am a student and learning SAS by SAS Certified Specialist preparation guide. I am practicing all the examples given in the guide and only these two import procedures failed. (Reference: SAS Certified Specialist preparation guide, pg: 41, Importing a Tab-Delimited File).&lt;/P&gt;&lt;P&gt;Example code which they gave is:&lt;/P&gt;&lt;P&gt;proc import datafile='C:\Users\Student1\cert\class.txt'&amp;nbsp;&lt;BR /&gt;dbms=tab&lt;BR /&gt;out=class&lt;BR /&gt;replace;&lt;BR /&gt;delimiter='09'x;&amp;nbsp;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;I am not able to understand why the code is not working.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 09:17:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785700#M315</guid>
      <dc:creator>nbav</dc:creator>
      <dc:date>2021-12-13T09:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to import .txt files</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785725#M316</link>
      <description>&lt;P&gt;Whenever code gives you issues, please post the &lt;EM&gt;complete&lt;/EM&gt; log of a failing step by &lt;EM&gt;copy/pasting&lt;/EM&gt; it &lt;EM&gt;directly&lt;/EM&gt; from your SAS interface (SAS Studio, Enterprise Guide) into a window opened with this button:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/54552i914D97BE1B0F21E5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;As already mentioned, your files as posted do not use tabs, but white space. Maybe the original tabs were replaced by blanks during the whole transport operation.&lt;/P&gt;
&lt;P&gt;Next, I suspect that you do not have SAS installed on your desktop or on any Windows system, instead using SAS On Demand. ODA runs on a UNIX platform, you have to upload the files first and then use the UNIX pathname to address them. Retrieve the correct name by right-clicking on the file after the upload and copying it from the Properties.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 10:26:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785725#M316</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-12-13T10:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to import .txt files</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785743#M317</link>
      <description>&lt;P&gt;Try Tom's code a.k.a import txt file via data step!&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 12:43:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785743#M317</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-12-13T12:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to import .txt files</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785796#M318</link>
      <description>&lt;P&gt;Thank you. Yes, I am using the &lt;SPAN&gt;SAS On-Demand&lt;/SPAN&gt;&amp;nbsp;(SAS studio not installed on my computer). I am using windows not UNIX.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have checked my log there are no errors but some notes are as follows:&lt;/P&gt;&lt;DIV class=""&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class=""&gt;72&lt;/DIV&gt;&lt;DIV class=""&gt;73 proc import datafile='/home/u58841625/Cert/class.txt' dbms=tab out=work.class&lt;/DIV&gt;&lt;DIV class=""&gt;74 replace;&lt;/DIV&gt;&lt;DIV class=""&gt;75 delimiter='09'x;&lt;/DIV&gt;&lt;DIV class=""&gt;76 run;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;/DIV&gt;&lt;DIV class=""&gt;WORK.PARMS.PARMS.SLIST.&lt;/DIV&gt;&lt;DIV class=""&gt;77 /**********************************************************************&lt;/DIV&gt;&lt;DIV class=""&gt;78 * PRODUCT: SAS&lt;/DIV&gt;&lt;DIV class=""&gt;79 * VERSION: 9.4&lt;/DIV&gt;&lt;DIV class=""&gt;80 * CREATOR: External File Interface&lt;/DIV&gt;&lt;DIV class=""&gt;81 * DATE: 13DEC21&lt;/DIV&gt;&lt;DIV class=""&gt;82 * DESC: Generated SAS Datastep Code&lt;/DIV&gt;&lt;DIV class=""&gt;83 * TEMPLATE SOURCE: (None Specified.)&lt;/DIV&gt;&lt;DIV class=""&gt;84 ***********************************************************************/&lt;/DIV&gt;&lt;DIV class=""&gt;85 data WORK.CLASS ;&lt;/DIV&gt;&lt;DIV class=""&gt;86 %let _EFIERR_ = 0; /* set the ERROR detection macro variable */&lt;/DIV&gt;&lt;DIV class=""&gt;87 infile '/home/u58841625/Cert/class.txt' delimiter='09'x MISSOVER DSD lrecl=32767 firstobs=2 ;&lt;/DIV&gt;&lt;DIV class=""&gt;88 informat "Name Gender Age"N $20. ;&lt;/DIV&gt;&lt;DIV class=""&gt;89 format "Name Gender Age"N $20. ;&lt;/DIV&gt;&lt;DIV class=""&gt;90 input&lt;/DIV&gt;&lt;DIV class=""&gt;91 "Name Gender Age"N $&lt;/DIV&gt;&lt;DIV class=""&gt;92 ;&lt;/DIV&gt;&lt;DIV class=""&gt;93 if _ERROR_ then call symputx('_EFIERR_',1); /* set ERROR detection macro variable */&lt;/DIV&gt;&lt;DIV class=""&gt;94 run;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: The infile '/home/u58841625/Cert/class.txt' is:&lt;/DIV&gt;&lt;DIV class=""&gt;Filename=/home/u58841625/Cert/class.txt,&lt;/DIV&gt;&lt;DIV class=""&gt;Owner Name=u58841625,Group Name=oda,&lt;/DIV&gt;&lt;DIV class=""&gt;Access Permission=-rw-r--r--,&lt;/DIV&gt;&lt;DIV class=""&gt;Last Modified=14Dec2021:05:22:59,&lt;/DIV&gt;&lt;DIV class=""&gt;File Size (bytes)=1620&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: 19 records were read from the infile '/home/u58841625/Cert/class.txt'.&lt;/DIV&gt;&lt;DIV class=""&gt;The minimum record length was 80.&lt;/DIV&gt;&lt;DIV class=""&gt;The maximum record length was 80.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: The data set WORK.CLASS has 19 observations and 1 variables.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class=""&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class=""&gt;user cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class=""&gt;system cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class=""&gt;memory 9373.93k&lt;/DIV&gt;&lt;DIV class=""&gt;OS Memory 41508.00k&lt;/DIV&gt;&lt;DIV class=""&gt;Timestamp 12/13/2021 04:36:16 PM&lt;/DIV&gt;&lt;DIV class=""&gt;Step Count 168 Switch Count 2&lt;/DIV&gt;&lt;DIV class=""&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class=""&gt;Page Reclaims 173&lt;/DIV&gt;&lt;DIV class=""&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class=""&gt;Voluntary Context Switches 13&lt;/DIV&gt;&lt;DIV class=""&gt;Involuntary Context Switches 0&lt;/DIV&gt;&lt;DIV class=""&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class=""&gt;Block Output Operations 272&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;19 rows created in WORK.CLASS from /home/u58841625/Cert/class.txt.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: WORK.CLASS data set was successfully created.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: The data set WORK.CLASS has 19 observations and 1 variables.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;/DIV&gt;&lt;DIV class=""&gt;real time 0.07 seconds&lt;/DIV&gt;&lt;DIV class=""&gt;user cpu time 0.03 seconds&lt;/DIV&gt;&lt;DIV class=""&gt;system cpu time 0.02 seconds&lt;/DIV&gt;&lt;DIV class=""&gt;memory 9373.93k&lt;/DIV&gt;&lt;DIV class=""&gt;OS Memory 41768.00k&lt;/DIV&gt;&lt;DIV class=""&gt;Timestamp 12/13/2021 04:36:16 PM&lt;/DIV&gt;&lt;DIV class=""&gt;Step Count 168 Switch Count 10&lt;/DIV&gt;&lt;DIV class=""&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class=""&gt;Page Reclaims 2614&lt;/DIV&gt;&lt;DIV class=""&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class=""&gt;Voluntary Context Switches 89&lt;/DIV&gt;&lt;DIV class=""&gt;Involuntary Context Switches 0&lt;/DIV&gt;&lt;DIV class=""&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class=""&gt;Block Output Operations 328&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;95&lt;/DIV&gt;&lt;DIV class=""&gt;96 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class=""&gt;108&lt;/DIV&gt;</description>
      <pubDate>Mon, 13 Dec 2021 16:51:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785796#M318</guid>
      <dc:creator>nbav</dc:creator>
      <dc:date>2021-12-13T16:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to import .txt files</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785899#M319</link>
      <description>&lt;P&gt;You&amp;nbsp;&lt;STRONG&gt;ARE&lt;/STRONG&gt; using UNIX, SAS On Demand runs solely on Linux, which is a UNIX variant.&lt;/P&gt;
&lt;P&gt;And you still try to use tabs as delimiters; we have told you&amp;nbsp;&lt;EM&gt;several&amp;nbsp;&lt;/EM&gt;times by now that your files do not contain tabs.&lt;/P&gt;
&lt;P&gt;Run &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;'s code.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 22:24:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-import-txt-files/m-p/785899#M319</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-12-13T22:24:02Z</dc:date>
    </item>
  </channel>
</rss>

