<?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: How to import the file into SAS (from local systme to server) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-import-the-file-into-SAS-from-local-systme-to-server/m-p/546821#M151470</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/247664"&gt;@vThanu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you've got SAS Enterprise Guide and this is a one off task then use the SAS Import Wizard (File/Import) to read the data from Excel. That's by far the quickest way to do things for simple Excel spreadsheets.&lt;/P&gt;
&lt;P&gt;If you need a repeatable and automated solution which also can execute without the SAS EG client then everything&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;already wrote.&lt;/P&gt;</description>
    <pubDate>Thu, 28 Mar 2019 08:34:16 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2019-03-28T08:34:16Z</dc:date>
    <item>
      <title>How to import the file into SAS (from local systme to server)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-import-the-file-into-SAS-from-local-systme-to-server/m-p/546809#M151465</link>
      <description>&lt;P&gt;I want to read an excel file into SAS environment (Server) which is saved on my windows desktop (using proc step or data step).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can it be possible? how?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 07:47:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-import-the-file-into-SAS-from-local-systme-to-server/m-p/546809#M151465</guid>
      <dc:creator>vThanu</dc:creator>
      <dc:date>2019-03-28T07:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to import the file into SAS (from local systme to server)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-import-the-file-into-SAS-from-local-systme-to-server/m-p/546811#M151466</link>
      <description>&lt;P&gt;You have to save any data that you want to import into SAS with SAS code only (no use of Enterprise Guide import wizards) to a location that is "visible" from the context of the SAS session.&lt;/P&gt;
&lt;P&gt;You can do that by&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;using a shared location mounted both on your desktop and server&lt;/LI&gt;
&lt;LI&gt;setting up a share on your desktop that is accessible by the server&lt;/LI&gt;
&lt;LI&gt;copying the file to the server with a tool like WinSCP&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;After the file is visible, you can either use proc import or libname excel.&lt;/P&gt;
&lt;P&gt;Note, though, that the use of the Excel file format for data interchange is advised against, as you force SAS to make guesses about column attributes; it is recommended to save spreadsheets to text files and read those with a data step, where you have control.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 07:55:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-import-the-file-into-SAS-from-local-systme-to-server/m-p/546811#M151466</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-03-28T07:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to import the file into SAS (from local systme to server)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-import-the-file-into-SAS-from-local-systme-to-server/m-p/546812#M151467</link>
      <description>&lt;P&gt;Yes it's possible, did you try&amp;nbsp;the forum's search functionality?&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Help-with-import-excel-file/m-p/545669/highlight/true#M150999" target="_blank" rel="noopener"&gt;https://communities.sas.com/t5/SAS-Programming/Help-with-import-excel-file/m-p/545669/highlight/true#M150999&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 07:56:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-import-the-file-into-SAS-from-local-systme-to-server/m-p/546812#M151467</guid>
      <dc:creator>Oligolas</dc:creator>
      <dc:date>2019-03-28T07:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to import the file into SAS (from local systme to server)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-import-the-file-into-SAS-from-local-systme-to-server/m-p/546816#M151468</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp; "&lt;EM&gt;no use of Enterprise Guide import wizards&lt;/EM&gt;"&lt;/P&gt;
&lt;P&gt;I thought the SAS EG import wizard uses client side .net to read the Excel and then uploads the data to the server for further processing - or you select in one of the Wizard windows to include the data and then EG creates code with data included.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 08:04:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-import-the-file-into-SAS-from-local-systme-to-server/m-p/546816#M151468</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-03-28T08:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to import the file into SAS (from local systme to server)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-import-the-file-into-SAS-from-local-systme-to-server/m-p/546818#M151469</link>
      <description>&lt;P&gt;Yes, the conversion from Excel to an intermediate text which is copied to the server happens with help of MS.&lt;/P&gt;
&lt;P&gt;But from the OP, I take it that a solution without EG interaction is wanted.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 08:14:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-import-the-file-into-SAS-from-local-systme-to-server/m-p/546818#M151469</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-03-28T08:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to import the file into SAS (from local systme to server)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-import-the-file-into-SAS-from-local-systme-to-server/m-p/546821#M151470</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/247664"&gt;@vThanu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you've got SAS Enterprise Guide and this is a one off task then use the SAS Import Wizard (File/Import) to read the data from Excel. That's by far the quickest way to do things for simple Excel spreadsheets.&lt;/P&gt;
&lt;P&gt;If you need a repeatable and automated solution which also can execute without the SAS EG client then everything&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;already wrote.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 08:34:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-import-the-file-into-SAS-from-local-systme-to-server/m-p/546821#M151470</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-03-28T08:34:16Z</dc:date>
    </item>
  </channel>
</rss>

