<?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 Import and export 200,000 variables TXT files in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115828#M32014</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got stuck on TAB separated TXT files with 200,000 variables each. I need to import them and then process them and export them back. I can import the first row of variable names like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data varnames;&lt;/P&gt;&lt;P&gt;infile 'x'&amp;nbsp; dsd delimiter = &lt;SPAN style="color: #800080; font-size: 10pt; font-family: Courier New;"&gt;'09'x&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; recfm = v lrecl = &lt;/SPAN&gt;&lt;STRONG style=": ; color: #008080; font-size: 10pt; font-family: Courier New;"&gt;5000000&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; obs = &lt;/SPAN&gt;&lt;STRONG style=": ; color: #008080; font-size: 10pt; font-family: Courier New;"&gt;1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #008080; font-size: 10pt; font-family: Courier New;"&gt;input varname : $32. @@;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, the datalayout should be that the variable names are on the columns and the values on the rows. I need to import all 200,000 variables, and then export them as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do this? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 May 2012 16:43:27 GMT</pubDate>
    <dc:creator>blackraven</dc:creator>
    <dc:date>2012-05-15T16:43:27Z</dc:date>
    <item>
      <title>Import and export 200,000 variables TXT files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115828#M32014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got stuck on TAB separated TXT files with 200,000 variables each. I need to import them and then process them and export them back. I can import the first row of variable names like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data varnames;&lt;/P&gt;&lt;P&gt;infile 'x'&amp;nbsp; dsd delimiter = &lt;SPAN style="color: #800080; font-size: 10pt; font-family: Courier New;"&gt;'09'x&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; recfm = v lrecl = &lt;/SPAN&gt;&lt;STRONG style=": ; color: #008080; font-size: 10pt; font-family: Courier New;"&gt;5000000&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; obs = &lt;/SPAN&gt;&lt;STRONG style=": ; color: #008080; font-size: 10pt; font-family: Courier New;"&gt;1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #008080; font-size: 10pt; font-family: Courier New;"&gt;input varname : $32. @@;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, the datalayout should be that the variable names are on the columns and the values on the rows. I need to import all 200,000 variables, and then export them as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do this? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2012 16:43:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115828#M32014</guid>
      <dc:creator>blackraven</dc:creator>
      <dc:date>2012-05-15T16:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Import and export 200,000 variables TXT files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115829#M32015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would start with PROC IMPORT. You have most of the important bits already.&lt;BR /&gt;Proc import datafile='X' /* or what ever the path/name to your data*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; out = dataout&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbms=dlm&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; replace; /* in case you need to run this again*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; delimiter = '09'x;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; datarow = 2; /*this will assume that the first row has the variable names */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; guessingrows = 32767; /* sas will "guess" whether your variables are numeric (or date/time) or string by looking at up to this many rows*/&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2012 17:11:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115829#M32015</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-05-15T17:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Import and export 200,000 variables TXT files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115830#M32016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If my memory serves me right, Proc import has the 'lrecl' limit as 32,767. While OP needs to import 200,000 variables. Not sure how to accommodate using proc import.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; One thing you could try is to put all of the variable names into macro variables (you probably need more than one, as the length of macro variable also has the same limit) if they are of the same type (character or numeric) or ideally same informat, and then using data step to input them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2012 17:22:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115830#M32016</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-05-15T17:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Import and export 200,000 variables TXT files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115831#M32017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you provide us with a snapshot of the data? Maybe the first 5 rows of columns 1 to 80 to give us an idea of what you mean?&lt;/P&gt;&lt;P&gt;&lt;SPAN id="xpndit_tooltip" style="display: none; position: absolute; overflow: hidden; max-width: 400px; background-color: #fefefe; border: 1px solid #aaaaaa; padding: 4px 8px; font-size: 11px; letter-spacing: 0px; color: #000000; z-index: 5000; line-height: 120%; text-align: left; border-radius: 5px 5px 5px 5px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2012 18:31:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115831#M32017</guid>
      <dc:creator>JasonDiVirgilio</dc:creator>
      <dc:date>2012-05-15T18:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Import and export 200,000 variables TXT files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115832#M32018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;filename x temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*build fake datafile;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt; file x;&lt;/P&gt;&lt;P&gt; put '6509660967'x;&lt;/P&gt;&lt;P&gt; put '4809490950'x;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*collect variable names and number of variables;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt; infile x dlm='09'x obs=1;&lt;/P&gt;&lt;P&gt; input varname : $32. @@;&lt;/P&gt;&lt;P&gt; call symputx(cats('varname',_n_),varname);&lt;/P&gt;&lt;P&gt; call symputx('nobs',_n_);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*input data, assuming all columns have the same informat $32.;&lt;/P&gt;&lt;P&gt;options mprint;&lt;/P&gt;&lt;P&gt;data foo;&lt;/P&gt;&lt;P&gt; infile x dlm='09'x firstobs=2;&lt;/P&gt;&lt;P&gt; input %macro vloop; ( %do i=1 %to &amp;amp;nobs; &amp;amp;&amp;amp;varname&amp;amp;i %end; ) (:$32.) %mend; %vloop ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2012 18:44:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115832#M32018</guid>
      <dc:creator>FriedEgg</dc:creator>
      <dc:date>2012-05-15T18:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: Import and export 200,000 variables TXT files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115833#M32019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks. I noted it was much faster with the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data varnames;&lt;BR /&gt;infile "x" dsd delimiter = '09'x recfm = v lrecl = 5000000 pad obs = 1;&lt;BR /&gt;input varname : $32. @@;&lt;/P&gt;&lt;P&gt;call symput('nvars', _n_);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data varnames (drop = i);&lt;BR /&gt;set varnames end = eof ;&lt;BR /&gt;if _n_ = 1 then delete;&lt;BR /&gt;do i = 1 to 1000; if _n_ &amp;gt;= 1000 * (i - 1) then mvar_cat = i; end;&lt;BR /&gt;if eof then call symput('ncats', mvar_cat);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro mvarcat_loop(i); proc sql noprint; %global var&amp;amp;i; select varname into :var&amp;amp;i separated by ' ' from varnames where mvar_cat = &amp;amp;i; quit; %mend mvarcat_loop;&lt;BR /&gt;%macro mvarcat; %do i = 1 %to &amp;amp;ncats; %mvarcat_loop(&amp;amp;i); %end; %mend mvarcat; %mvarcat;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro mvarcat2;&lt;/P&gt;&lt;P&gt;data prework;&lt;BR /&gt;infile "x" dsd delimiter = '09'x recfm = v lrecl = 5000000 pad firstobs = 2 obs = 10;&lt;BR /&gt;input (%do i = 1 %to &amp;amp;ncats; &amp;amp;&amp;amp;var&amp;amp;i %end;) (:$2.);&lt;BR /&gt;run;&lt;BR /&gt;%mend mvarcat2;&lt;BR /&gt;%mvarcat2;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2012 20:47:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115833#M32019</guid>
      <dc:creator>blackraven</dc:creator>
      <dc:date>2012-05-15T20:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: Import and export 200,000 variables TXT files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115834#M32020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about letting PROC TRANSPOSE do it for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;* 1) Read the names into a dataset.&amp;nbsp; I used _NAME_ for the variable name as this is the default for PROC TRANSPOSE. ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;* Generate NCOL macro variable to see how many columns to read for each row. ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data varnames;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; length _name_ $32 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; infile tmpfile1 dlm='09'x dsd obs=1 &lt;SPAN style="font-family: 'courier new', courier;"&gt;lrecl=5000000&lt;/SPAN&gt; end=eof;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; input _name_ @@;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; if eof then call symputx('ncol',_n_);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;sasfile varnames open;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* 2) Create a data step view to read the actual values.&amp;nbsp; Generate a ROW number&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;* Use POINT= option to get the _NAME_ for the column. ;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data vertical / view=vertical;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; infile tmpfile1 dlm='09'x dsd firstobs=2 truncover lrecl=5000000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; row+1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; do col=1 to &amp;amp;ncol;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; input value $ @;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set varnames point=col;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* 3) PROC TRANSPOSE ;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc transpose data=vertical out=horizontal(drop=_name_);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; by row;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; var value;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;sasfile varnames close;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2012 00:10:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115834#M32020</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-05-16T00:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Import and export 200,000 variables TXT files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115835#M32021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my first response I did not think through the quantity of macro variables you would be creating.&amp;nbsp; It would not be a good approach.&amp;nbsp; Instead I would generate an include file, the following could be cleaned up:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;filename x temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt; file x;&lt;/P&gt;&lt;P&gt; put '6509660967'x;&lt;/P&gt;&lt;P&gt; put '4809490950'x;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;filename codegen temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt; file codegen;&lt;/P&gt;&lt;P&gt; put '%macro vars;';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt; file codegen mod;&lt;/P&gt;&lt;P&gt; infile x dlm='09'x obs=1 end=last;&lt;/P&gt;&lt;P&gt; input varname : $32. @@;&lt;/P&gt;&lt;P&gt; put varname;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt; file codegen mod;&lt;/P&gt;&lt;P&gt; put '%mend;';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%include "%sysfunc(pathname(codegen))" /source2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data foo;&lt;/P&gt;&lt;P&gt; infile x dlm='09'x firstobs=2;&lt;/P&gt;&lt;P&gt; input ( %vars ) (:$32.);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2012 03:56:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115835#M32021</guid>
      <dc:creator>FriedEgg</dc:creator>
      <dc:date>2012-05-16T03:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Import and export 200,000 variables TXT files</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115836#M32022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works just fine, and I will something similar for the TXT-export as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2012 09:32:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-and-export-200-000-variables-TXT-files/m-p/115836#M32022</guid>
      <dc:creator>blackraven</dc:creator>
      <dc:date>2012-05-16T09:32:29Z</dc:date>
    </item>
  </channel>
</rss>

