<?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 export sas dataset as txt file with pipe delimiter? in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573975#M34248</link>
    <description>&lt;P&gt;Looks like you already know how to make a delimited file where pipe is the delimiter.&lt;/P&gt;
&lt;P&gt;What is the question now?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Jul 2019 19:14:08 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2019-07-16T19:14:08Z</dc:date>
    <item>
      <title>How to export sas dataset as txt file with pipe delimiter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573966#M34242</link>
      <description>&lt;P&gt;I would like to export&amp;nbsp; sas output as .txt file with pipe delimiter.&lt;/P&gt;
&lt;P&gt;Please help&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 18:47:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573966#M34242</guid>
      <dc:creator>avatar</dc:creator>
      <dc:date>2019-07-16T18:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to export sas dataset as txt file with pipe delimiter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573969#M34243</link>
      <description>&lt;P&gt;An example:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=p0jp1ob4onbqign1st9ui61xybvr.htm&amp;amp;locale=en#p0jp1ob4onbqign1st9ui61xybvr"&gt;https://documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=p0jp1ob4onbqign1st9ui61xybvr.htm&amp;amp;locale=en#p0jp1ob4onbqign1st9ui61xybvr&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 18:52:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573969#M34243</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-07-16T18:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to export sas dataset as txt file with pipe delimiter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573970#M34244</link>
      <description>&lt;P&gt;I can not use proc Export in&amp;nbsp; remote setup. I need to use a&amp;nbsp; in data step/&lt;/P&gt;
&lt;P&gt;&amp;nbsp;please advise&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 18:57:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573970#M34244</guid>
      <dc:creator>avatar</dc:creator>
      <dc:date>2019-07-16T18:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to export sas dataset as txt file with pipe delimiter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573971#M34245</link>
      <description>&lt;P&gt;PROC EXPORT works in SAS running on remote computers.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 19:00:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573971#M34245</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-07-16T19:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to export sas dataset as txt file with pipe delimiter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573973#M34246</link>
      <description>I got this below code –  how do I use it  with filename statement. Please explain&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;FILENAME dlmtest &amp;amp;filename lrecl=5000;&lt;BR /&gt;     DATA _NULL_;&lt;BR /&gt;           set New_Daily_claims;&lt;BR /&gt;           file dlmtest dsd LRECL=5000 dlm = '|';  /*  CHANGE THAT TO PIPE SYMBOL, Note: DSD AND LRECL Are required. */&lt;BR /&gt;           PUT(_ALL_)(+0);&lt;BR /&gt;     RUN;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Jul 2019 19:10:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573973#M34246</guid>
      <dc:creator>avatar</dc:creator>
      <dc:date>2019-07-16T19:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to export sas dataset as txt file with pipe delimiter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573974#M34247</link>
      <description>If proc export will not work, because of an issue on the remote server, neither will a data step. PROC EXPORT simply generates the data step code for you. &lt;BR /&gt;&lt;BR /&gt;The exception is using the GUI, which uses a different approach and allows you to move files across environments more easily. But that usually cannot be automated. &lt;BR /&gt;&lt;BR /&gt;I'm guessing you think you need a data step to export it to a location the server doesn't have access to? You would still create the file on the server and then use a different method to move the file.</description>
      <pubDate>Tue, 16 Jul 2019 19:13:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573974#M34247</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-16T19:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to export sas dataset as txt file with pipe delimiter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573975#M34248</link>
      <description>&lt;P&gt;Looks like you already know how to make a delimited file where pipe is the delimiter.&lt;/P&gt;
&lt;P&gt;What is the question now?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 19:14:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573975#M34248</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-07-16T19:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to export sas dataset as txt file with pipe delimiter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573976#M34249</link>
      <description>I am  getting error --- when I run that code with my sas dataset&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Jul 2019 19:16:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573976#M34249</guid>
      <dc:creator>avatar</dc:creator>
      <dc:date>2019-07-16T19:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to export sas dataset as txt file with pipe delimiter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573978#M34250</link>
      <description>&lt;P&gt;A working example of data step code is provided at the link I gave earlier.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 19:20:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573978#M34250</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-07-16T19:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to export sas dataset as txt file with pipe delimiter?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573980#M34251</link>
      <description>&lt;P&gt;Why can neither see your screen nor read your mind.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post the lines of text from the SAS log that shows what you ran and what error was generated. Make sure to the use Insert Code icon (looks like {i}) to get a pop-up window to paste in the lines from the log so that the formatting is preserved.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 19:21:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-sas-dataset-as-txt-file-with-pipe-delimiter/m-p/573980#M34251</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-07-16T19:21:28Z</dc:date>
    </item>
  </channel>
</rss>

