<?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: Transfer Data from an EG Profiles to an Other in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Transfer-Data-from-an-EG-Profiles-to-an-Other/m-p/458287#M29518</link>
    <description>&lt;P&gt;Talk to your SAS administrator about setting up folder sharing between the two SAS environments. If they both use the same operating system it is the easiest way to share data. Then you don't need to copy the data between the two systems, just access the shared data from each system.&lt;/P&gt;</description>
    <pubDate>Fri, 27 Apr 2018 23:27:49 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2018-04-27T23:27:49Z</dc:date>
    <item>
      <title>Transfer Data from an EG Profiles to an Other</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Transfer-Data-from-an-EG-Profiles-to-an-Other/m-p/458103#M29507</link>
      <description>&lt;P&gt;Hi there !&lt;BR /&gt;&lt;BR /&gt;I really need your help to transfer large table from a Guide profile to an other.&lt;BR /&gt;&lt;BR /&gt;I made a libname in my profile1 to create a large database and I need to access it from my profile2.&lt;BR /&gt;&lt;BR /&gt;Should I use a libname statement or I have to download data from profile1 and upload to profile2&amp;nbsp;?&lt;/P&gt;&lt;P&gt;The second way seems to be difficult because of lrage database...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in&amp;nbsp;advance and sorry for my poor English&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 12:35:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Transfer-Data-from-an-EG-Profiles-to-an-Other/m-p/458103#M29507</guid>
      <dc:creator>Bunz</dc:creator>
      <dc:date>2018-04-27T12:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer Data from an EG Profiles to an Other</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Transfer-Data-from-an-EG-Profiles-to-an-Other/m-p/458129#M29508</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/207035"&gt;@Bunz&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, you should use the same libname statement in both profiles to assign a library to the same data source (your large table). It is not necessary (and would be very inefficient and cumbersome) to have to recreate the data for each profile.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Casey&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 13:51:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Transfer-Data-from-an-EG-Profiles-to-an-Other/m-p/458129#M29508</guid>
      <dc:creator>CaseySmith</dc:creator>
      <dc:date>2018-04-27T13:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer Data from an EG Profiles to an Other</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Transfer-Data-from-an-EG-Profiles-to-an-Other/m-p/458131#M29509</link>
      <description>&lt;P&gt;Thanks for the answer but I think that my explanations are not clear...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I connect on 2 differents metadata servers, so, physically, one doesn't know the other...&lt;/P&gt;&lt;P&gt;It would be easy if I connect on the same metadata server but with 2 différents...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I checked the libname meta function but no result &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 13:55:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Transfer-Data-from-an-EG-Profiles-to-an-Other/m-p/458131#M29509</guid>
      <dc:creator>Bunz</dc:creator>
      <dc:date>2018-04-27T13:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer Data from an EG Profiles to an Other</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Transfer-Data-from-an-EG-Profiles-to-an-Other/m-p/458156#M29511</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have SAS / Connect on your environments you could access remote data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%let remhost=1.2.3.4.65 7551;&lt;BR /&gt;options comamid=tcp remote=remhost NOCONNECTMETACONNECTION;&lt;BR /&gt;signon remhost user=user password="xxxxxxxx";&lt;/P&gt;&lt;P&gt;libname yourlib&amp;nbsp;"/PATH/TO/YOUR/DATA" server=remhost;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could also connect using a metadata connection specifying:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;options metaserver="MetaHOST"&lt;BR /&gt;metaport=8561&lt;BR /&gt;metauser="USER"&lt;BR /&gt;metapass="PASS"&lt;BR /&gt;metaprotocol="bridge";&lt;/P&gt;&lt;P&gt;%let SasHost=hostname&amp;nbsp;7551;&lt;BR /&gt;signon SasHost authdomain=Auth;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;libname yourlib&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;"/PATH/TO/YOUR/DATA" server=SasHost;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you don't have SAS / Connect or SAS / Share you could use a nfs share to make data available on both machines.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 15:04:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Transfer-Data-from-an-EG-Profiles-to-an-Other/m-p/458156#M29511</guid>
      <dc:creator>NunoTGrunho</dc:creator>
      <dc:date>2018-04-27T15:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer Data from an EG Profiles to an Other</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Transfer-Data-from-an-EG-Profiles-to-an-Other/m-p/458287#M29518</link>
      <description>&lt;P&gt;Talk to your SAS administrator about setting up folder sharing between the two SAS environments. If they both use the same operating system it is the easiest way to share data. Then you don't need to copy the data between the two systems, just access the shared data from each system.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 23:27:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Transfer-Data-from-an-EG-Profiles-to-an-Other/m-p/458287#M29518</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-04-27T23:27:49Z</dc:date>
    </item>
  </channel>
</rss>

