<?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: Is there way in SAS to copy file from one server to another server without supplying the passwor in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Is-there-way-in-SAS-to-copy-file-from-one-server-to-another/m-p/806567#M317813</link>
    <description>&lt;P&gt;it is a sasdata sets, where I need to put my user id and password for server to move files&lt;/P&gt;</description>
    <pubDate>Thu, 07 Apr 2022 16:34:26 GMT</pubDate>
    <dc:creator>soujanyak</dc:creator>
    <dc:date>2022-04-07T16:34:26Z</dc:date>
    <item>
      <title>Is there way in SAS to copy file from one server to another server without supplying the password</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-way-in-SAS-to-copy-file-from-one-server-to-another/m-p/806553#M317800</link>
      <description />
      <pubDate>Thu, 07 Apr 2022 15:52:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-way-in-SAS-to-copy-file-from-one-server-to-another/m-p/806553#M317800</guid>
      <dc:creator>soujanyak</dc:creator>
      <dc:date>2022-04-07T15:52:57Z</dc:date>
    </item>
    <item>
      <title>Is there way available in SAS to copy file from one server to another server without supplying the p</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-way-in-SAS-to-copy-file-from-one-server-to-another/m-p/806552#M317804</link>
      <description />
      <pubDate>Thu, 07 Apr 2022 15:51:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-way-in-SAS-to-copy-file-from-one-server-to-another/m-p/806552#M317804</guid>
      <dc:creator>soujanyak</dc:creator>
      <dc:date>2022-04-07T15:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is there way in SAS to copy file from one server to another server without supplying the passwor</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-way-in-SAS-to-copy-file-from-one-server-to-another/m-p/806557#M317805</link>
      <description>&lt;P&gt;What type of file?&lt;/P&gt;
&lt;P&gt;Password where? To access the file, the server, the transfer program? Lots of places a password may be required.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do the two servers share anything like common network disk access?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Apr 2022 15:58:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-way-in-SAS-to-copy-file-from-one-server-to-another/m-p/806557#M317805</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-04-07T15:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: Is there way in SAS to copy file from one server to another server without supplying the passwor</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-way-in-SAS-to-copy-file-from-one-server-to-another/m-p/806567#M317813</link>
      <description>&lt;P&gt;it is a sasdata sets, where I need to put my user id and password for server to move files&lt;/P&gt;</description>
      <pubDate>Thu, 07 Apr 2022 16:34:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-way-in-SAS-to-copy-file-from-one-server-to-another/m-p/806567#M317813</guid>
      <dc:creator>soujanyak</dc:creator>
      <dc:date>2022-04-07T16:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is there way in SAS to copy file from one server to another server without supplying the passwor</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-way-in-SAS-to-copy-file-from-one-server-to-another/m-p/806569#M317815</link>
      <description>&lt;P&gt;Methods to move files among two SAS environments:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;If the two environments are "connected" using SAS/CONNECT, you can use PROC UPLOAD/DOWNLOAD. This requires a&amp;nbsp;&lt;STRONG&gt;signon&lt;/STRONG&gt; statement that may need credentials.&lt;/LI&gt;
&lt;LI&gt;SAS supports a FILENAME FTP statement if need to connect SAS with another node that supports an FTP server. Again, usually you need credentials.&lt;/LI&gt;
&lt;LI&gt;If your two environments are both accessible via a SAS Enterprise Guide session, you can use the Upload SAS Data Sets/Download SAS Data Sets tasks, or the Copy Files task, to move files between them using your EG session in the middle.&lt;/LI&gt;
&lt;LI&gt;As&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;says, if the two machines are connected on the network with addressable folders, you might be able to use&amp;nbsp;&lt;STRONG&gt;FCOPY&lt;/STRONG&gt;() function to copy the files across. Or assign a library to each and use PROC COPY or PROC DATASETS with a COPY statement.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;There's nothing about SAS that will allow you to bypass the need to authenticate though -- you will need credentials or federated permissions for whatever systems you're going to access.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Apr 2022 16:42:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-way-in-SAS-to-copy-file-from-one-server-to-another/m-p/806569#M317815</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2022-04-07T16:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Is there way in SAS to copy file from one server to another server without supplying the passwor</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-way-in-SAS-to-copy-file-from-one-server-to-another/m-p/806656#M317853</link>
      <description>&lt;P&gt;What is the OS of the server you are copying from and the OS of the server you are copying to? If they are the same, then you can use OS functionality to do the copy. If the OS's are different you will have to use SAS to transport the datasets so that they will be usable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Talk to your SAS administrator. They will most likely be able to guide you as to the best approach.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Apr 2022 20:46:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-way-in-SAS-to-copy-file-from-one-server-to-another/m-p/806656#M317853</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2022-04-07T20:46:58Z</dc:date>
    </item>
  </channel>
</rss>

