<?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: Copying a sas dataset from sas session to local pc in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673387#M36582</link>
    <description>Thanks for your response first. I am trying to copy to a shared windows path only. But not sure of what is the code to do so. To copy a file from sas to windows shared path</description>
    <pubDate>Thu, 30 Jul 2020 12:01:24 GMT</pubDate>
    <dc:creator>vivekpn_sas</dc:creator>
    <dc:date>2020-07-30T12:01:24Z</dc:date>
    <item>
      <title>Copying a sas dataset from sas session to local pc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673383#M36580</link>
      <description>Hi experts,&lt;BR /&gt;&lt;BR /&gt;I need a very genuine help for my project . Wants to code the copying file from sas to local pc so I can automate it to SMC. Pls advice if it's possible to code it through SAS</description>
      <pubDate>Thu, 30 Jul 2020 11:46:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673383#M36580</guid>
      <dc:creator>vivekpn_sas</dc:creator>
      <dc:date>2020-07-30T11:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: Copying a sas dataset from sas session to local pc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673385#M36581</link>
      <description>&lt;P&gt;I suggest to use a shared network resource that is accessible both from your client and the SAS server.&lt;/P&gt;
&lt;P&gt;Copying from a SAS program on the server directly to your PC requires that your PC is up and running all the time, and running file transfer server software, something which is usually not appreciated by IT people.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 11:51:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673385#M36581</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-30T11:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Copying a sas dataset from sas session to local pc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673387#M36582</link>
      <description>Thanks for your response first. I am trying to copy to a shared windows path only. But not sure of what is the code to do so. To copy a file from sas to windows shared path</description>
      <pubDate>Thu, 30 Jul 2020 12:01:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673387#M36582</guid>
      <dc:creator>vivekpn_sas</dc:creator>
      <dc:date>2020-07-30T12:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: Copying a sas dataset from sas session to local pc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673390#M36583</link>
      <description>&lt;P&gt;If you want to share a SAS dataset, you just define a library (&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=lestmtsglobal&amp;amp;docsetTarget=n1nk65k2vsfmxfn1wu17fntzszbp.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;LIBNAME&lt;/A&gt;) to the shared location and use it to create the dataset.&lt;/P&gt;
&lt;P&gt;if you want to share the output of a procedure, use the appropriate path to the shared resource in the respective ODS statement.&lt;/P&gt;
&lt;P&gt;Similarly, you can use the path to the shared resource in &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=lestmtsglobal&amp;amp;docsetTarget=p05r9vhhqbhfzun1qo9mw64s4700.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;FILENAME&lt;/A&gt; or &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=lestmtsref&amp;amp;docsetTarget=n15o12lpyoe4gfn1y1vcp6xs6966.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;FILE&lt;/A&gt; statements when exporting to external files, or in the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=n0ku4pxzx3d2len10ozjgyjbrpl9.htm&amp;amp;locale=en#n16ze6lo48sqy0n1qnrrgljq82d1" target="_blank" rel="noopener"&gt;OUTFILE=&lt;/A&gt;&amp;nbsp;option of the PROC EXPORT statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The most important part is that the shared resource has to be available on the SAS server. If that is a Windows system, the UNC path should work, if it is Linux/UNIX, you need the shared resource mounted on the server.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 12:16:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673390#M36583</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-30T12:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Copying a sas dataset from sas session to local pc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673393#M36585</link>
      <description>As per my understanding we can't use proc export to copy a dataset nor naming a windows paths to a library will work. Can u share the piece of code. Anyone knows it pls share I will try in my system of it works&lt;BR /&gt;</description>
      <pubDate>Thu, 30 Jul 2020 12:30:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673393#M36585</guid>
      <dc:creator>vivekpn_sas</dc:creator>
      <dc:date>2020-07-30T12:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: Copying a sas dataset from sas session to local pc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673402#M36586</link>
      <description>&lt;P&gt;Before we start tinkering with SAS code, we need to make sure that the shared resource is available on the server. Log on to it with your SAS userid using any kind of SSH client, and see if you can navigate there; if you have trouble with this, get in touch with your server admins.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 12:49:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673402#M36586</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-30T12:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Copying a sas dataset from sas session to local pc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673406#M36587</link>
      <description>&lt;P&gt;What happens if you define a libname to the path? Please share the complete log from the libname statement; use this icon to post the log:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg"&gt;&lt;img src="https://communities.sas.com/skins/images/8D8B612AA6AB1DC7E9A0812281D56E02/responsive_peak/images/image_not_found.png" alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 12:51:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/673406#M36587</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-30T12:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: Copying a sas dataset from sas session to local pc</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/674551#M36617</link>
      <description>&lt;P&gt;What does "&lt;SPAN&gt;so I can automate it to SMC" mean? Why do you need to copy a SAS dataset to your local PC? If your Windows(?) SAS server storage is accessible via file shares it could be as simple as going into Windows Explorer and doing a copy and paste.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2020 20:22:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Copying-a-sas-dataset-from-sas-session-to-local-pc/m-p/674551#M36617</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-08-04T20:22:21Z</dc:date>
    </item>
  </channel>
</rss>

