<?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: remote connect SAS to office server in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308537#M66229</link>
    <description>OK I see what you mean now! Thanks a lot!</description>
    <pubDate>Tue, 01 Nov 2016 15:08:18 GMT</pubDate>
    <dc:creator>LucaLin</dc:creator>
    <dc:date>2016-11-01T15:08:18Z</dc:date>
    <item>
      <title>remote connect SAS to office server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308520#M66223</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been using rsubmit to connect to the WRDS database for work. Now I've downloaded all the data I need to my office computer. Is it possible for me to use my laptop at home to work on these data through remote connect to my office computer server? Can rsubmit do it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%let wrds = wrds.wharton.upenn.edu 4016;&lt;BR /&gt;options comamid=TCP remote=WRDS;&lt;BR /&gt;signon username=_prompt_;&lt;/P&gt;&lt;P&gt;rsubmit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the code I use to connect to the WRDS server. Can I alter it to connect to my office server instead?&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;Luca&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2016 14:41:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308520#M66223</guid>
      <dc:creator>LucaLin</dc:creator>
      <dc:date>2016-11-01T14:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: remote connect SAS to office server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308523#M66224</link>
      <description>&lt;P&gt;Does your laptop have secutiry rights to access the office network, e.g VPN? &amp;nbsp;This is more of an IT issue than a SAS thing. &amp;nbsp;If you download all data locally, then you access that data via:&lt;/P&gt;
&lt;P&gt;libame &amp;lt;lib&amp;gt; "&amp;lt;path to data&amp;gt;";&lt;/P&gt;
&lt;P&gt;However if it is a network path, then you need the access to it (via VPN).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2016 14:48:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308523#M66224</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-11-01T14:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: remote connect SAS to office server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308528#M66225</link>
      <description>Thanks for getting back to me! I talked to the IT guys in my school and they said yes I would need their authorization but they could do that, they just didn't know how to connect SAS to it once authorized. Is there any specific code like rsubmit?</description>
      <pubDate>Tue, 01 Nov 2016 14:54:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308528#M66225</guid>
      <dc:creator>LucaLin</dc:creator>
      <dc:date>2016-11-01T14:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: remote connect SAS to office server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308533#M66227</link>
      <description>&lt;P&gt;If you want to use your personal laptop then you must be given remote access. First thing is you need to do is&amp;nbsp;contact the IT admins and ask weather you are allowed for remote desktop access. Then can help you out. Probably they may have a document how to do that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my case we use CITRIX for remote access.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2016 15:06:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308533#M66227</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2016-11-01T15:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: remote connect SAS to office server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308534#M66228</link>
      <description>&lt;P&gt;Thats whats confusing me about your post. &amp;nbsp;You say you saved the data on the network at the office yes, so you can get to that data by going to a network path, something like:&lt;/P&gt;
&lt;P&gt;N:\where\I\store\my\data&lt;/P&gt;
&lt;P&gt;or&amp;nbsp;&lt;/P&gt;
&lt;P&gt;\\networks\where\i\store\my\data&lt;/P&gt;
&lt;P&gt;Yes?&lt;/P&gt;
&lt;P&gt;If so then once you are connected via VPN then in SAS you just point a libname to the network path:&lt;/P&gt;
&lt;P&gt;libname want "&lt;SPAN&gt;\\networks\where\i\store\my\data";&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;To use the data.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2016 15:06:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308534#M66228</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-11-01T15:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: remote connect SAS to office server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308537#M66229</link>
      <description>OK I see what you mean now! Thanks a lot!</description>
      <pubDate>Tue, 01 Nov 2016 15:08:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308537#M66229</guid>
      <dc:creator>LucaLin</dc:creator>
      <dc:date>2016-11-01T15:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: remote connect SAS to office server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308540#M66230</link>
      <description>Thank you! Yes I'll contact the IT guys.</description>
      <pubDate>Tue, 01 Nov 2016 15:19:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/remote-connect-SAS-to-office-server/m-p/308540#M66230</guid>
      <dc:creator>LucaLin</dc:creator>
      <dc:date>2016-11-01T15:19:18Z</dc:date>
    </item>
  </channel>
</rss>

