<?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: Exporting SAS data sets in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-SAS-data-sets/m-p/204762#M13604</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just save the dataset where you want it. The extension will by .sas7bdat .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;data 'C:\Users\loukakis\Desktop\opa\different\frequency';&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;&amp;nbsp; set frequency;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;or you can use libref.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;LIBNAME out 'C:\Users\loukakis\Desktop\opa\different';&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;data out.frequency;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;&amp;nbsp; set frequency;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;or&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-size: 18.6666660308838px; background-color: #ffffff; font-family: 'courier new', courier;"&gt;LIBNAME out 'C:\Users\loukakis\Desktop\opa\different';&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;proc copy inlib=work outlib=out ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;&amp;nbsp; select frequency ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Aug 2015 17:04:35 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2015-08-21T17:04:35Z</dc:date>
    <item>
      <title>Exporting SAS data sets</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-SAS-data-sets/m-p/204758#M13600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good afternoon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to export a data set from a SAS environment into a windows environment (Desktop). I am using the following code, which seems to work, but the resulting data set is unusable. Do you happen to know what's wrong with this code? Or a way to perform this very simple task?&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Code:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;proc cport data=frequency file='C:\Users\loukakis\Desktop\opa\different';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOG:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;NOTE: PROC CPORT begins to transport data set WORK.FREQUENCY&lt;/P&gt;&lt;P&gt;NOTE: The data set contains 706 variables and 485 observations. Logical record length is 91304.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE CPORT used (Total process time):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.11 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.10 seconds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Error Message when I try to open the file:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Could not open data file: Error:&lt;/P&gt;&lt;P&gt;file TMP1.DIFFERENT.DATA is not a SAS data set&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 16:50:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-SAS-data-sets/m-p/204758#M13600</guid>
      <dc:creator>Greek</dc:creator>
      <dc:date>2015-08-21T16:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS data sets</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-SAS-data-sets/m-p/204759#M13601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you want your output dataset to be, a SAS dataset?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use CPORT you need to use CIMPORT to import the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1 class="title" style="font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; color: #003399; font-size: 20.1599979400635px; background-color: #ffffff;"&gt;Overview: CPORT Procedure&lt;/H1&gt;&lt;P class="subTopic" style="font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; border-top-width: 2px; border-top-style: solid; border-top-color: #dcdcdc; margin-top: 2.5em; color: #000000; font-size: 13.4399995803833px; background-color: #ffffff;"&gt;&lt;A name="p1bhvc3zakac79n1r8bzn4syqjvy" style="font-family: inherit;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;H2 class="title" style="font-size: 16.1279983520508px; margin-top: 0.5em;"&gt;What Does the CPORT Procedure Do?&lt;/H2&gt;&lt;DIV class="topicContent"&gt;&lt;A name="n08jewezxtgcdun1lxfhpdtysxcw" style="font-family: inherit;"&gt;&lt;/A&gt;&lt;DIV class="paragraph" style="margin-top: 1.4em;"&gt;&lt;A name="n0e6uwu7wu0l3pn0zw9xxtaimxjj" style="font-family: inherit;"&gt;&lt;/A&gt;The CPORT procedure writes SAS data sets, SAS catalogs, or SAS libraries to sequential file formats (transport files). Use PROC CPORT with the CIMPORT procedure to move files from one environment to another. &lt;SPAN class="userSuppliedValue" style="font-style: italic;"&gt;Transport files&lt;/SPAN&gt; are sequential files that each contain a SAS library, a SAS catalog, or a SAS data set in transport format. The transport format that PROC CPORT writes is the same for all environments and for many releases of SAS. In PROC CPORT, &lt;SPAN class="userSuppliedValue" style="font-style: italic;"&gt;export&lt;/SPAN&gt; means to put a SAS library, a SAS catalog, or a SAS data set into transport format. PROC CPORT exports catalogs and data sets, either singly or as a SAS library. PROC CIMPORT restores (&lt;SPAN class="userSuppliedValue" style="font-style: italic;"&gt;imports&lt;/SPAN&gt;) the transport file to its original form as a SAS catalog, SAS data set, or SAS library.&lt;P&gt;&lt;/P&gt;&lt;P class="paragraph" style="margin-top: 1.4em;"&gt;&lt;A name="p05wywe2rk2hksn1kaq8a8ornbaq" style="font-family: inherit;"&gt;&lt;/A&gt;PROC CPORT also &lt;SPAN class="userSuppliedValue" style="font-style: italic;"&gt;converts&lt;/SPAN&gt; SAS files, which means that it changes the format of a SAS file from the format appropriate for one version of SAS to the format appropriate for another version. For example, you can use PROC CPORT and PROC CIMPORT to move files from earlier releases of SAS to more recent releases. PROC CIMPORT automatically converts the transport file as it imports it.&lt;/P&gt;&lt;P class="note" style="margin-top: 1.4em;"&gt;&lt;A name="p1g1e1lgifcp0kn1h715s2lgyhsx" style="font-family: inherit;"&gt;&lt;/A&gt;&lt;SPAN class="noteGenText" style="font-weight: bold; padding-right: 0.5em;"&gt;Note: &lt;/SPAN&gt;PROC CPORT and PROC CIMPORT can be used to back up graphic catalogs. PROC COPY cannot be used to back up graphic catalogs.&lt;/P&gt;&lt;P class="paragraph" style="margin-top: 1.4em;"&gt;&lt;A name="n1glvlmu14ld5xn19oppx1fvi39y" style="font-family: inherit;"&gt;&lt;/A&gt;PROC CPORT produces no output (other than the transport files), but it does write notes to the SAS log.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P class="subTopic" style="font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; border-top-width: 2px; border-top-style: solid; border-top-color: #dcdcdc; margin-top: 2.5em; color: #000000; font-size: 13.4399995803833px; background-color: #ffffff;"&gt;&lt;A name="n1e9sxg1b83ljhn1wb4fkuasx4xj" style="font-family: inherit;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;H2 class="title" style="font-size: 16.1279983520508px; margin-top: 0.5em;"&gt;Process for Creating and Reading a Transport File&lt;/H2&gt;&lt;DIV class="topicContent"&gt;&lt;A name="p06eagku6e10qun0zamisd2pqi3t" style="font-family: inherit;"&gt;&lt;/A&gt;&lt;DIV class="paragraph" style="margin-top: 1.4em;"&gt;&lt;A name="n11rl8o6z559k3n1r8r56usssu0a" style="font-family: inherit;"&gt;&lt;/A&gt;Here is the process to create a transport file at the source computer and to read it at a target computer:&lt;P&gt;&lt;/P&gt;&lt;P class="listSteps"&gt;&lt;/P&gt;&lt;OL style="padding-left: 2.5em;"&gt;&lt;LI&gt;&lt;SPAN class="step" style="margin-top: 1.4em;"&gt;&lt;SPAN class="step" style="margin-top: 1.4em;"&gt;&lt;A name="n0wqgwp04aoq8qn1w11s6re7xgir" style="font-family: inherit;"&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV class="paragraphFirst"&gt;&lt;A name="n1d9sda55f1r1en1ptditep37yzv" style="font-family: inherit;"&gt;&lt;/A&gt;A transport file is created at the source computer using PROC CPORT.&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="step" style="margin-top: 1.4em;"&gt;&lt;SPAN class="step" style="margin-top: 1.4em;"&gt;&lt;A name="p1lt6nfd19bs60n1ie5rjbax7gtj" style="font-family: inherit;"&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;P class="paragraphFirst"&gt;&lt;A name="p03uina3yu2rw7n10lw3kpibmhjz" style="font-family: inherit;"&gt;&lt;/A&gt;The transport file is transferred from the source computer to the target computer via communications software or a magnetic medium.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="step" style="margin-top: 1.4em;"&gt;&lt;SPAN class="step" style="margin-top: 1.4em;"&gt;&lt;A name="n1jv62wjce5oltn1vbgy1hdyiqu0" style="font-family: inherit;"&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;P class="paragraphFirst"&gt;&lt;A name="p1b4yqzvq77s2un1opojp9oqjuqs" style="font-family: inherit;"&gt;&lt;/A&gt;The transport file is read at the target computer using PROC CIMPORT.&lt;SPAN class="note" style="margin-top: 1.4em;"&gt;&lt;A name="p0kc8yquzuyjorn12n1qlax1wkii" style="font-family: inherit;"&gt;&lt;/A&gt;&lt;SPAN class="noteGenText" style="font-weight: bold; padding-right: 0.5em;"&gt;Note: &lt;/SPAN&gt;Transport files that are created using PROC CPORT are not interchangeable with transport files that are created using the XPORT engine.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/DIV&gt;&lt;P class="paragraph" style="margin-top: 1.4em;"&gt;&lt;A name="n08jed5il2orjnn1fivwrix8n3uo" style="font-family: inherit;"&gt;&lt;/A&gt;For complete details about the steps to create a transport file (PROC CPORT), to transfer the transport file, and to restore the transport file (PROC CIMPORT), see &lt;SPAN class="xrefBookTitle" style="font-style: italic;"&gt;Moving and Accessing SAS Files&lt;/SPAN&gt;.&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 16:53:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-SAS-data-sets/m-p/204759#M13601</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-08-21T16:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS data sets</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-SAS-data-sets/m-p/204760#M13602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your response! I have been asked for the data sets in SAS format for the first time (they are usually fine with excel) and I have never done this before. Is there a way to create sas data sets without asking them to use the CIMPORT procedure? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 16:57:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-SAS-data-sets/m-p/204760#M13602</guid>
      <dc:creator>Greek</dc:creator>
      <dc:date>2015-08-21T16:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS data sets</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-SAS-data-sets/m-p/204761#M13603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Write the dataset to a library - ie folder that's on your desktop. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname out 'C:\desktop';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data out.want;&lt;/P&gt;&lt;P&gt;set want;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 17:01:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-SAS-data-sets/m-p/204761#M13603</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-08-21T17:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS data sets</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-SAS-data-sets/m-p/204762#M13604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just save the dataset where you want it. The extension will by .sas7bdat .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;data 'C:\Users\loukakis\Desktop\opa\different\frequency';&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;&amp;nbsp; set frequency;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;or you can use libref.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;LIBNAME out 'C:\Users\loukakis\Desktop\opa\different';&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;data out.frequency;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;&amp;nbsp; set frequency;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;or&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-size: 18.6666660308838px; background-color: #ffffff; font-family: 'courier new', courier;"&gt;LIBNAME out 'C:\Users\loukakis\Desktop\opa\different';&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;proc copy inlib=work outlib=out ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;&amp;nbsp; select frequency ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 14pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 17:04:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-SAS-data-sets/m-p/204762#M13604</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-08-21T17:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS data sets</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-SAS-data-sets/m-p/204763#M13605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all so much! &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 17:19:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-SAS-data-sets/m-p/204763#M13605</guid>
      <dc:creator>Greek</dc:creator>
      <dc:date>2015-08-21T17:19:29Z</dc:date>
    </item>
  </channel>
</rss>

