<?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: Export 2000000 variables into delimited file in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304081#M8641</link>
    <description>&lt;P&gt;If you have that many variables and the column labels are longer than the values then you need to make sure that the output line is long enough to hold the text of the headers.&lt;/P&gt;</description>
    <pubDate>Wed, 12 Oct 2016 14:23:26 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2016-10-12T14:23:26Z</dc:date>
    <item>
      <title>Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304015#M8632</link>
      <description>&lt;P&gt;Dear friends I need your help again.&lt;/P&gt;
&lt;P&gt;I have data set with more than 2000000 variables&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;id snp1 snp2 snp3 ... snp2000000&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i want to export it to any kind of delimited file, and preserve header.&lt;/P&gt;
&lt;P&gt;I tried few stuff like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC EXPORT DATA= bikovi (OBS=0)&lt;BR /&gt; OUTFILE= "C:\Users\Maja\Desktop\gv50.csv"&lt;BR /&gt; DBMS=CSV REPLACE;&lt;BR /&gt; PUTNAMES=YES;&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;DATA _NULL_;&lt;BR /&gt; SET bikovi;&lt;BR /&gt; FILE "C:\Users\Maja\Desktop\gv50.csv" MOD DSD DLM=',' LRECL=5000000 ;&lt;BR /&gt; PUT (_ALL_) (:) ;&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and while the data are fine, my header is stopping at snp3708 every time.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What can be a reason?&lt;/P&gt;
&lt;P&gt;I tried on smaller data set (40000 variables) and the story was the same.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My data are very simple&lt;/P&gt;
&lt;P&gt;id is character value length 15 but if needed i can have it as numeric 1,2,3...671 while SNPs are numbers 0,1,2.&lt;/P&gt;
&lt;P&gt;I tried also a robust macro from&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/24/727.html" target="_blank"&gt;http://support.sas.com/kb/24/727.html&lt;/A&gt; but this one only complicated everything&lt;/P&gt;
&lt;P&gt;Hope you guys can help me&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 11:22:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304015#M8632</guid>
      <dc:creator>MajaFerencakovic</dc:creator>
      <dc:date>2016-10-12T11:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304020#M8633</link>
      <description>&lt;P&gt;First of all, I have the notion that a dataset with 2 million variables is the result of a design failure (holding data in structure), I guess that switching from a wide to a long format would be a big improvement in further handling the data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With which application are you viewing your csv?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 11:50:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304020#M8633</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-10-12T11:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304022#M8634</link>
      <description>&lt;P&gt;Why on earth do you have 2'' variables?&lt;/P&gt;
&lt;P&gt;What is the purpose on such a layout?&lt;/P&gt;
&lt;P&gt;General advice - transpose from wide to long.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 11:53:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304022#M8634</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-10-12T11:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304025#M8635</link>
      <description>&lt;P&gt;well, here it is not usefull to discuss why my colegue need wide instead of long format. I have them in long. But as I said it, this is not up to me...&lt;/P&gt;
&lt;P&gt;However those are genotype data, lot of info... This is kind of standard format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TextPad opens this one nicely. No issues at all. If issues would apear I woul use long file text viewer or something to check.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As I said, data are fine. Only header stops.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;No problem with exporting data. But guy needs header to...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 11:56:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304025#M8635</guid>
      <dc:creator>MajaFerencakovic</dc:creator>
      <dc:date>2016-10-12T11:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304027#M8636</link>
      <description>guys, this is not helpful. &lt;BR /&gt;This is standard .ped format used in genetics. So can we skip the part why would I need to have 2000000 variables. I have them, I must deal with them...</description>
      <pubDate>Wed, 12 Oct 2016 11:58:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304027#M8636</guid>
      <dc:creator>MajaFerencakovic</dc:creator>
      <dc:date>2016-10-12T11:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304036#M8637</link>
      <description>&lt;P&gt;The data step example you posted will not create a header line, only the proc export.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now, proc export creates a data step that does the export, and runs that.&lt;/P&gt;
&lt;P&gt;I have the suspicion that in this data step, SAS runs into the limitation for statements (32767) when it tries to write the header line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess you might have to roll your own macro for this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro output_file;
data _null_;
set dataset;
file "c:\outfile.csv" lrecl=1000000000 dlm=',';
if _n_ = 1
then do;
  put "ID"@;
%do i = 1 %to 2000000;
  put ",SNP&amp;amp;i"@;
%end;
end;
put id@;
%do i = 1 %to 2000000;
put snp&amp;amp;i.@;
%end;
run;
%mend;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This splits the big put for the header into single puts, as is done in the proc export-generated data step for the variables.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 12:18:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304036#M8637</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-10-12T12:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304041#M8638</link>
      <description>&lt;P&gt;looks promising.&lt;/P&gt;
&lt;P&gt;I tried it on smaller data set (40000).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But, after the last one header (snp40000), data starts to apear in the same line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 12:37:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304041#M8638</guid>
      <dc:creator>MajaFerencakovic</dc:creator>
      <dc:date>2016-10-12T12:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304044#M8639</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@MajaFerencakovic wrote:&lt;BR /&gt;
&lt;P&gt;looks promising.&lt;/P&gt;
&lt;P&gt;I tried it on smaller data set (40000).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But, after the last one header (snp40000), data starts to apear in the same line.&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;Ups. Add a simple put; statement immediately before the end; of the if _n_ = 1 block, but after the %end;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 12:45:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304044#M8639</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-10-12T12:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304076#M8640</link>
      <description>&lt;P&gt;hm... still not working...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 14:18:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304076#M8640</guid>
      <dc:creator>MajaFerencakovic</dc:creator>
      <dc:date>2016-10-12T14:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304081#M8641</link>
      <description>&lt;P&gt;If you have that many variables and the column labels are longer than the values then you need to make sure that the output line is long enough to hold the text of the headers.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 14:23:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304081#M8641</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-10-12T14:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304086#M8642</link>
      <description>&lt;P&gt;the file by itself is fine. All headers are in but data starts in the same line as headers&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 14:30:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304086#M8642</guid>
      <dc:creator>MajaFerencakovic</dc:creator>
      <dc:date>2016-10-12T14:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304102#M8643</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Actually handling fat 'blobs' is important and SAS has recforms f and n to handle these situations. Also useful with binary data.

Thanks for the question

HAVE 2,000,000 variables with values

 -- CHARACTER --
Variable          Len     Value

T00000001    C    10      0000000000
T00000002    C    10      0000000002
T00000003    C    10      0000000003
T00000004    C    10      0000000004
T00000005    C    10      0000000005
T00000006    C    10      0000000006
T00000007    C    10      0000000007
T00000008    C    10      0000000008
....
T02000000    C    10      0020000000


WANT CSV FILE 9 2,000,000 WIDE

"T0000000"  ,"T00000002","T00000003","T00000004","T00000005",..."T20000000"

"00000000"  ,"000000002","000000003","000000004","000000005",..."020000000"
"10000000"  ,"100000002","100000003","100000004","100000005",..."120000000"
"20000000"  ,"200000002","200000003","200000004","200000005",..."220000000"


SOLUTION (MIGHT BE EASIER WITH RECFM=N?)
=======================================
this is not a complete solution but it should scale.
Might get you started

FSLIST is critical to understanding


filename fixblk "d:/txt/fixblk.txt" lrecl=12 recfm=f;

data _null_;
  length varout $12;
  file fixblk;
  varout=' "T0000000"';
  put varout @;
  do var=2 to 1000;
    varout=cats(',"T',put(var,z8.),'"');
    put varout @;
  end;
  put '202020202020202020200D0A'x @;
  varout=put(0,z9.);
  put varout @;
  do var=2 to 1000;
    varout=cats(',',put(var,z10.));
    put varout;
  end;
  put '202020202020202020200D0A'x @;
run;quit;

* turn numbers on and hex on;
filename fixblk "d:/txt/fixblk.txt" lrecl=120 recfm=f;
proc fslist file=fixblk;
run;quit;

* import to check;
data fixblk;
  infile "d:/txt/fixblk.txt" firstobs=2 lrecl=32756;
  array t[1000] $10 t0001-t1000;
  input;
  do i=1 to 1000;
    t[i]=scan(_infile_,i,',');
  end;
  output;
run;quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Oct 2016 14:47:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304102#M8643</guid>
      <dc:creator>rogerjdeangelis</dc:creator>
      <dc:date>2016-10-12T14:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304103#M8644</link>
      <description>&lt;P&gt;Code should be right.&lt;/P&gt;
&lt;P&gt;You must generate that file under UNIX and browse it under WINDOWS.&lt;/P&gt;
&lt;P&gt;They have different end of row character , so you will see they are in the same row.&lt;/P&gt;
&lt;P&gt;suggest you open that file by Notepad++ .&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 14:48:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304103#M8644</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-10-12T14:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304180#M8648</link>
      <description>&lt;P&gt;You can look at the data step that PROC EXPORT writes but I don't think it will create a file with an LRECL &amp;gt; 32767 perhaps you could edit the program.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This data step works for 20,000 variables I'm still waiting the job to start with&amp;nbsp;2M variables.&amp;nbsp; The calculation for LRECL in the program is a bit arbitrary so you will need to think about that a bit.&amp;nbsp; You just want to make sure the&amp;nbsp;you don't FLOWOVER.&amp;nbsp; &amp;nbsp;You can set the value arbitrarily high and but that will just cost you more memory.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let n=2000000;
data M2;
   length ID $16.;
   array val[&amp;amp;n] (1:&amp;amp;n);
   do _n_ = 1 to 4;
      id = put(_n_,z16.);
      output;
      end;
   run;

filename m2 '~/m2.csv' lrecl=%sysevalF(16*&amp;amp;n);

data _null_;
   set m2;
   file m2 dsd;
   if _n_ eq 1 then link _names_;
   put (_all_)(:);
   return;
 _names_:
   length _name_ $32;
   do while(1);
      call vnext(_name_);
      if _name_ eq '_name_' then leave;
      put _name_ @;
      end;
   put;
   return;
   run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Oct 2016 19:40:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304180#M8648</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2016-10-12T19:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304192#M8649</link>
      <description>&lt;P&gt;Just replace your PROC EXPORT with a data step to write the header.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename snp  "C:\Users\Maja\Desktop\gv50.csv";

data _null_ ;
  file snp dsd lrecl=10000000 ;
  put 'id' @;
  do i=1 to 2000000;
    name = cats('snp',i);
    put name @;
  end;
  put;
run;

data _null_ ;
  file snp dsd lrecl=10000000 mod ;
  set bikovi;
  put ( id snp1-snp2000000 ) (+0) ;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(or do it in the other data step)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 20:32:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304192#M8649</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2016-10-12T20:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304256#M8656</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@MajaFerencakovic wrote:&lt;BR /&gt;
&lt;P&gt;hm... still not working...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro output_file;
%let maxvar=2000000;
data _null_;
set dataset;
file "c:\outfile.csv" lrecl=1000000000 dlm=',';
if _n_ = 1
then do;
  put "ID"@;
%do i = 1 %to %eval(&amp;amp;maxvar-1);
  put ",SNP&amp;amp;i"@;
%end;
end;
put ",SNP&amp;amp;maxvar";
put id@;
%do i = 1 %to &amp;amp;maxvar;
put snp&amp;amp;i.@;
%end;
run;
%mend;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;That should deal with the issue of the header line not terminating correctly.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2016 06:20:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304256#M8656</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-10-13T06:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304268#M8657</link>
      <description>This one works perfectly! Thanks!</description>
      <pubDate>Thu, 13 Oct 2016 07:12:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304268#M8657</guid>
      <dc:creator>MajaFerencakovic</dc:creator>
      <dc:date>2016-10-13T07:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304269#M8658</link>
      <description>This one is also correct! I really hope this will help people doing genetics to prepare data for outdated  softwares and programers who don't understand that they really should start to work on improvements of their procedures because we are getting more and more data everyday</description>
      <pubDate>Thu, 13 Oct 2016 07:20:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304269#M8658</guid>
      <dc:creator>MajaFerencakovic</dc:creator>
      <dc:date>2016-10-13T07:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: Export 2000000 variables into delimited file</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304271#M8659</link>
      <description>Works!!! Thank you! It is nice to have so many working solutions.</description>
      <pubDate>Thu, 13 Oct 2016 07:28:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Export-2000000-variables-into-delimited-file/m-p/304271#M8659</guid>
      <dc:creator>MajaFerencakovic</dc:creator>
      <dc:date>2016-10-13T07:28:11Z</dc:date>
    </item>
  </channel>
</rss>

