<?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: Very Large Text Delimited File Not Readable So Far in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Very-Large-Text-Delimited-File-Not-Readable-So-Far/m-p/595997#M15880</link>
    <description>&lt;P&gt;In the SAS log you posted you will note there is a DATA step starting - &lt;EM&gt;data TLAIVS.ITEM&lt;/EM&gt;; - and ending with - &lt;EM&gt;run;&lt;/EM&gt; -.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first step to getting this program working is to copy the DATA step lines into your program editor so you can then customise how it runs. The trick to doing a "block" copy from the SAS log to avoid the line numbers is to press the ALT key while highlighting the code block with your mouse.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you have the program in the program editor, remove the line - title $ - to stop reading the title you don't want. Now re-run your program then tell us how you got on.&lt;/P&gt;</description>
    <pubDate>Sat, 12 Oct 2019 22:35:08 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2019-10-12T22:35:08Z</dc:date>
    <item>
      <title>Very Large Text Delimited File Not Readable So Far</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Very-Large-Text-Delimited-File-Not-Readable-So-Far/m-p/595994#M15879</link>
      <description>&lt;P&gt;Hi, I'm trying to import a semicolon-delimited text file into SAS.&amp;nbsp; The file is large, consisting of ~35 million observations.&amp;nbsp; &amp;nbsp;Data transfer stops at observation 10,892,049.&amp;nbsp; The file consist of technical documents that have titles.&amp;nbsp; It has six variables (not enclosed in parentheses), and the fourth variable is the title of the document, which is VARCHAR 1500--you can see why the title could be very long, for example in the case of a chemistry paper that reports on a large biological molecule, while in other cases, it could be very short.&amp;nbsp; Titles contain heterogeneous text data.&amp;nbsp; When I examine the final observation, 10,892,049, execution ceases in the middle of the title field, with character '/'.&amp;nbsp; And yes, I know that this is a special character in SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I have three questions.&amp;nbsp; First, I do not really need the title variable.&amp;nbsp; Using INFILE and INFORMATS, is there a way to skip over the title field?&amp;nbsp; Second,&amp;nbsp; and alternatively, can I tell SAS to accept special characters as part of the title field?&amp;nbsp; Finally, I am not thinking that memory problems are causing execution to stop, but am I correct in this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running SAS 9.4 on Windows 10 installed on an HP server.&amp;nbsp; The code that I have been using so far is PROC IMPORT, and that code is as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;options nocenter replace ls=76 ps=54;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;libname tlaivs 'C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\sasdsns';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc import datafile="C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\item.txt"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; dbms=dlm&lt;BR /&gt;&amp;nbsp; &amp;nbsp; out=tlaivs.item&lt;BR /&gt;&amp;nbsp; &amp;nbsp; replace;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; delimiter=';';&lt;BR /&gt;&amp;nbsp; &amp;nbsp; getnames=yes;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; guessingrows=MAX;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc contents data=tlaivs.item;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;--------&lt;/P&gt;&lt;P&gt;The log file looks like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Copyright (c) 2016 by SAS Institute Inc., Cary, NC, USA.&lt;BR /&gt;NOTE: SAS (r) Proprietary Software 9.4 (TS1M6)&lt;BR /&gt;Licensed to JAMES ADAMS, Site 70250096.&lt;BR /&gt;NOTE: This session is executing on the X64_10PRO platform.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Analytical products:&lt;/P&gt;&lt;P&gt;SAS/STAT 15.1&lt;/P&gt;&lt;P&gt;NOTE: Additional host information:&lt;/P&gt;&lt;P&gt;X64_10PRO WIN 10.0.18362 Workstation&lt;/P&gt;&lt;P&gt;NOTE: SAS initialization used:&lt;BR /&gt;real time 1.43 seconds&lt;BR /&gt;cpu time 1.28 seconds&lt;/P&gt;&lt;P&gt;1 options nocenter replace ls=76 ps=54;&lt;BR /&gt;2 libname tlaivs&lt;BR /&gt;2 ! 'C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\sasdsns';&lt;BR /&gt;NOTE: Libref TLAIVS was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name:&lt;BR /&gt;C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\sasdsns&lt;BR /&gt;3&lt;BR /&gt;4 proc import&lt;BR /&gt;4 ! datafile="C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\item.tx&lt;BR /&gt;4 ! t"&lt;BR /&gt;5 dbms=dlm&lt;BR /&gt;6 out=tlaivs.item&lt;BR /&gt;7 replace;&lt;BR /&gt;8&lt;BR /&gt;9 delimiter=';';&lt;BR /&gt;10 getnames=yes;&lt;BR /&gt;11 guessingrows=MAX;&lt;BR /&gt;12 run;&lt;/P&gt;&lt;P&gt;13 /*********************************************************************&lt;BR /&gt;13 ! *&lt;BR /&gt;14 * PRODUCT: SAS&lt;BR /&gt;15 * VERSION: 9.4&lt;BR /&gt;16 * CREATOR: External File Interface&lt;BR /&gt;17 * DATE: 11OCT19&lt;BR /&gt;18 * DESC: Generated SAS Datastep Code&lt;BR /&gt;19 * TEMPLATE SOURCE: (None Specified.)&lt;BR /&gt;20 **********************************************************************&lt;BR /&gt;20 ! */&lt;BR /&gt;21 data TLAIVS.ITEM ;&lt;BR /&gt;22 %let _EFIERR_ = 0; /* set the ERROR detection macro variable */&lt;BR /&gt;23 infile&lt;BR /&gt;23 ! 'C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\item.txt'&lt;BR /&gt;23 ! delimiter = ';' MISSOVER DSD lrecl=32767 firstobs=2 ;&lt;BR /&gt;24 informat item_id $15. ;&lt;BR /&gt;25 informat issue_id $10. ;&lt;BR /&gt;26 informat item_number best32. ;&lt;BR /&gt;27 informat title $819. ;&lt;BR /&gt;28 informat doc_type $32. ;&lt;BR /&gt;29 informat ref_count $4. ;&lt;BR /&gt;30 format item_id $15. ;&lt;BR /&gt;31 format issue_id $10. ;&lt;BR /&gt;32 format item_number best12. ;&lt;BR /&gt;33 format title $819. ;&lt;BR /&gt;34 format doc_type $32. ;&lt;BR /&gt;35 format ref_count $4. ;&lt;BR /&gt;36 input&lt;BR /&gt;37 item_id $&lt;BR /&gt;38 issue_id $&lt;BR /&gt;39 item_number&lt;BR /&gt;40 title $&lt;BR /&gt;41 doc_type $&lt;BR /&gt;42 ref_count $&lt;BR /&gt;43 ;&lt;BR /&gt;44 if _ERROR_ then call symputx('_EFIERR_',1); /* set ERROR detection&lt;BR /&gt;44 ! macro variable */&lt;BR /&gt;45 run;&lt;/P&gt;&lt;P&gt;NOTE: The infile&lt;BR /&gt;'C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\item.txt' is:&lt;/P&gt;&lt;P&gt;Filename=C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\item.tx&lt;BR /&gt;t,&lt;BR /&gt;RECFM=V,LRECL=32767,&lt;BR /&gt;File Size (bytes)=4792868783,&lt;BR /&gt;Last Modified=16Jul2015:16:45:04,&lt;BR /&gt;Create Time=07Oct2019:08:55:42&lt;/P&gt;&lt;P&gt;NOTE: 10892049 records were read from the infile&lt;BR /&gt;'C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\item.txt'.&lt;BR /&gt;The minimum record length was 40.&lt;BR /&gt;The maximum record length was 865.&lt;BR /&gt;NOTE: The data set TLAIVS.ITEM has 10892049 observations and 6 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 50.38 seconds&lt;BR /&gt;cpu time 11.95 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;10892049 rows created in TLAIVS.ITEM from&lt;BR /&gt;C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\item.txt.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: TLAIVS.ITEM data set was successfully created.&lt;BR /&gt;NOTE: The data set TLAIVS.ITEM has 10892049 observations and 6 variables.&lt;BR /&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;BR /&gt;real time 31:17.49&lt;BR /&gt;cpu time 30:35.93&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;46&lt;BR /&gt;47 proc contents data=tlaivs.item;&lt;BR /&gt;NOTE: Writing HTML Body file: sashtml.htm&lt;BR /&gt;48 run;&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;BR /&gt;real time 2.98 seconds&lt;BR /&gt;cpu time 0.57 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;------------------------------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help! I regret having to issue this post, but none of the white papers that I have read have directly addressed the questions that I have posed above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;James D. Adams&lt;/P&gt;&lt;P&gt;SAS User&lt;/P&gt;</description>
      <pubDate>Sat, 12 Oct 2019 21:25:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Very-Large-Text-Delimited-File-Not-Readable-So-Far/m-p/595994#M15879</guid>
      <dc:creator>jdadams</dc:creator>
      <dc:date>2019-10-12T21:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Very Large Text Delimited File Not Readable So Far</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Very-Large-Text-Delimited-File-Not-Readable-So-Far/m-p/595997#M15880</link>
      <description>&lt;P&gt;In the SAS log you posted you will note there is a DATA step starting - &lt;EM&gt;data TLAIVS.ITEM&lt;/EM&gt;; - and ending with - &lt;EM&gt;run;&lt;/EM&gt; -.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first step to getting this program working is to copy the DATA step lines into your program editor so you can then customise how it runs. The trick to doing a "block" copy from the SAS log to avoid the line numbers is to press the ALT key while highlighting the code block with your mouse.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you have the program in the program editor, remove the line - title $ - to stop reading the title you don't want. Now re-run your program then tell us how you got on.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Oct 2019 22:35:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Very-Large-Text-Delimited-File-Not-Readable-So-Far/m-p/595997#M15880</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-10-12T22:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Very Large Text Delimited File Not Readable So Far</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Very-Large-Text-Delimited-File-Not-Readable-So-Far/m-p/596035#M15887</link>
      <description>&lt;P&gt;You shouldn't need to resort to using a guessing procedure to read a file with only 6 variables. It will be faster to type the variable names yourself than it would be to type the PROC IMPORT code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From your description of what is in the file the biggest problem might be that the file is not properly formatted to be read.&amp;nbsp; Make sure that none of the titles or other variables contain end of line characters.&amp;nbsp; Also make sure that if any of the values contain the delimiter character (semi-colon) that those values are enclosed in quotes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try just reading it with a simple data step.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want (compress=yes);
  infile "C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\item.txt"
  dsd dlm=';' truncover firstobs=2;
  length var1-var6 $2000 ;
  input var1-var6;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then check it and perhaps make adjustments.&amp;nbsp; Check things like: that the values look like they ended up in the right columns.&amp;nbsp; That the number of observations matches how many should be in the file. etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Oct 2019 04:50:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Very-Large-Text-Delimited-File-Not-Readable-So-Far/m-p/596035#M15887</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-10-13T04:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: Very Large Text Delimited File Not Readable So Far</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Very-Large-Text-Delimited-File-Not-Readable-So-Far/m-p/596049#M15889</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/262000"&gt;@jdadams&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Memory won't be the issue as SAS only reads one line at a time into memory.&lt;/P&gt;
&lt;P&gt;If reading a file using a delimiter then you can't really skip reading a column in the middle - but you can read only a single character from this column and then drop it so it doesn't get added to the target table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below code based on the log you've posted should work as long as there isn't a semicolon in your free-text column "title". If there can be semicolons in your text then things become a bit more complicated and one would have to count semicolons to work out where the actual data for column &lt;EM&gt;doc_type&lt;/EM&gt; starts.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data TLAIVS.ITEM;
  infile
     'C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\item.txt'
     delimiter = ';' truncover DSD lrecl=1600 firstobs=2;
  input
    item_id :$15.
    issue_id :$10.
    item_number :best32.
    _dummy :$1.
    doc_type :$32.
    ref_count :$4.
    ;
  drop _dummy;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I believe a forward slash in column &lt;EM&gt;doc_type&lt;/EM&gt; shouldn't cause any issues. Only an end-of-line character would - but it appears your file is on Windows so end-of-line will be CRLF and even an LF only shouldn't create issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could use below code to check how many semicolons you've got in a row of source data.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
  infile
     'C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\item.txt'
     delimiter = ';' MISSOVER DSD lrecl=1600 firstobs=2;
  input;
  data_row=_n_;
  delim_count=countc(_infile_,';');
run;

proc freq data=test;
  table delim_count /nocum nopercent;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And just in case here how you could read your data if there are semicolons in your free text column.&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname TLAIVS "%sysfunc(pathname(work))";
filename have temp;
data _null_;
  file have;
  put 'some header';
  put 'Case 1;2;3;4;5;6';
  put 'Case 2;2;3;4;4;5;6';
  put 'Case 3;2;3;44;4;4;5;6';
  put 'Case 4;2;3;4;5;6';
  put 'Case 5;2;3;4;5';
  put 'Case 6;2;3;4;4;5';
  stop;
run;

data TLAIVS.ITEM(drop=_:);
  infile
/*     'C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\item.txt'*/
     "%sysfunc(pathname(have))"
     delimiter = ';' truncover DSD lrecl=1600 firstobs=2;

  input
    item_id :$15.
    issue_id :$10.
    item_number :best32.
    @;

  _loop_stop=max(1,countc(_infile_,';')-4);
  do _i=1 to _loop_stop;
    input _dummy :$1. @;
  end;

  input
    doc_type :$32.
    ref_count :$4.
    ;
run;

proc print;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Above still doesn't cover for Case 6 where you've got a semicolon in your free text column but a missing in your last column without the last semicolon added to the data. This case is a bit harder to code for so let us know if this is even possible/a problem in your actual data (a count of semicolons &amp;lt;5 would indicate that there is such a possibility).&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 392px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33111i4159D9D6C01F6578/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Oct 2019 10:05:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Very-Large-Text-Delimited-File-Not-Readable-So-Far/m-p/596049#M15889</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-10-13T10:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: Very Large Text Delimited File Not Readable So Far</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Very-Large-Text-Delimited-File-Not-Readable-So-Far/m-p/596182#M15911</link>
      <description>&lt;P&gt;Have you inspected the last line of the file with an editor? It might be that the line simply ends there.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 09:09:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Very-Large-Text-Delimited-File-Not-Readable-So-Far/m-p/596182#M15911</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-10-14T09:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: Very Large Text Delimited File Not Readable So Far</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Very-Large-Text-Delimited-File-Not-Readable-So-Far/m-p/596325#M15927</link>
      <description>&lt;P&gt;I would like to thank everyone for their generous replies to my original post, and I want to report on the eventual solution that I hit upon.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First, thank you Patrick, reading just the first character of the up to 1500 character title field worked very well.&amp;nbsp; And thanks to all for the commentary.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It turns out that the problem reading in the file had to do with Windows 10 text files.&amp;nbsp; Sometimes a DOS End of File or EOF character gets inserted in the midst of these files, ending execution as soon as it is encountered.&amp;nbsp; This character is hexadecimal '1A'x.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To solve this, you insert a IGNOREDOSEOF&amp;nbsp; into the options section of the INFILE command.&amp;nbsp; My code looked like this, in the meantime adopting Patrick's suggestion of reading just the first character of the very long title variable, which I did not need:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;options nocenter replace ls=80 ps=54;&lt;BR /&gt;libname tlaivs 'C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\sasdsns';&lt;/P&gt;&lt;P&gt;data tlaivs.item2;&lt;BR /&gt;infile&amp;nbsp;'C:\Adams_Data\Adams_NSF1_Commerc_Compsci\Database_IVs\item.txt'&amp;nbsp;delimiter = ';' DSD MISSOVER lrecl = 1600 firstobs=2 ignoredoseof;&lt;/P&gt;&lt;P&gt;input&lt;BR /&gt;item_id :$15.&lt;BR /&gt;issue_id :$10.&lt;BR /&gt;item_number :best32.&lt;BR /&gt;_dummy :$1.&lt;BR /&gt;doc_type :$32.&lt;BR /&gt;ref_count :$4.&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;drop _dummy;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc contents data=tlaivs.item2;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This suggestion of inserting IGNOREDOSEOF is taken from a blog post by SAS guru Charley Mullin, written on April 17, 2015, and entitled "Turning text files into SAS data sets--six common problems and their solution".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This did the trick.&amp;nbsp; Instead of having 10+ million records, my file now includes all 35+ million records.&amp;nbsp; I hope that this rediscovery helps others who are having trouble reading in text files into SAS under Windows 10.&amp;nbsp; At least it is one more weapon in the arsenal.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 16:46:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Very-Large-Text-Delimited-File-Not-Readable-So-Far/m-p/596325#M15927</guid>
      <dc:creator>jdadams</dc:creator>
      <dc:date>2019-10-14T16:46:17Z</dc:date>
    </item>
  </channel>
</rss>

