<?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: put text file without header in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176432#M13554</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know. it is more efficient for data step.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Jul 2014 14:01:51 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2014-07-15T14:01:51Z</dc:date>
    <item>
      <title>put text file without header</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176424#M13546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am trying to put text file out without header - how can i do that - please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;filename text1 "d:\text_file_name";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;file text1 dlm="|";'&lt;/P&gt;&lt;P&gt;set sashelp.class;&lt;/P&gt;&lt;P&gt;put var1 var2 var3 var4;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 17:46:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176424#M13546</guid>
      <dc:creator>jimksas</dc:creator>
      <dc:date>2014-07-11T17:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: put text file without header</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176425#M13547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From the manual:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DL&gt;&lt;DT&gt;FILE PRINT &amp;lt;NOTITLES&amp;gt; &amp;lt;FOOTNOTES&amp;gt;; &lt;/DT&gt;&lt;DD&gt;&lt;P&gt;&lt;A name="a002076752"&gt; &lt;/A&gt;directs output to the SAS procedure output file. Place the FILE statement before the PUT statements that write to that file. The NOTITLES option suppresses titles that are currently in effect, and makes the lines unavailable for writing other text. The FOOTNOTES option, along with the FOOTNOTE statement, writes a footnote to the file. &lt;/P&gt;&lt;/DD&gt;&lt;/DL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 17:53:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176425#M13547</guid>
      <dc:creator>OS2Rules</dc:creator>
      <dc:date>2014-07-11T17:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: put text file without header</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176426#M13548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how can we perform it from code perspective - because this piece of code should goes with automation...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 20:53:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176426#M13548</guid>
      <dc:creator>jimksas</dc:creator>
      <dc:date>2014-07-11T20:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: put text file without header</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176427#M13549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;
&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote" modifiedtitle="true"&gt;
&lt;P style="display: inline !important;"&gt;filename text1 "d:\text_file_name";&lt;/P&gt;

&lt;/PRE&gt;
&lt;P&gt;data _null_;&lt;/P&gt;
&lt;P&gt;file text1 dlm="|" DSD;&lt;/P&gt;
&lt;P&gt;set sashelp.class;&lt;/P&gt;
&lt;P&gt;put (var1 var2 var3 var4)(:);&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 21:02:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176427#M13549</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2014-07-11T21:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: put text file without header</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176428#M13550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Peter - it worked fine...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Jul 2014 00:36:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176428#M13550</guid>
      <dc:creator>jimksas</dc:creator>
      <dc:date>2014-07-12T00:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: put text file without header</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176429#M13551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;ods _all_ close;
ods csv file='c:\temp\x.txt' options(delimiter='|');
proc print data=sashelp.class noobs label;run;
ods csv ;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Jul 2014 12:31:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176429#M13551</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-07-12T12:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: put text file without header</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176430#M13552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xia&lt;/P&gt;&lt;P&gt;have you tried ods csv on a large table?&lt;/P&gt;&lt;P&gt;Last time I tried it took much longer than the datastep solution.&lt;/P&gt;&lt;P&gt;peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 21:34:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176430#M13552</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2014-07-14T21:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: put text file without header</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176431#M13553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; font-size: 10pt; font-family: Courier New;"&gt;/* Using the PutName=No output file doesnot have any kind of headers */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc export data=Out outfile="C:\Users\lakshman\Desktop\New Folder\Out.txt"&lt;/P&gt;&lt;P&gt;dbms=dlm replace;&lt;/P&gt;&lt;P&gt;delimiter="|" ;&lt;/P&gt;&lt;P&gt;putname=no;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 04:31:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176431#M13553</guid>
      <dc:creator>sas_lak</dc:creator>
      <dc:date>2014-07-15T04:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: put text file without header</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176432#M13554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know. it is more efficient for data step.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 14:01:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/put-text-file-without-header/m-p/176432#M13554</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-07-15T14:01:51Z</dc:date>
    </item>
  </channel>
</rss>

