<?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: Error while importing from csv 'Device is offline' in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Error-while-importing-from-csv-Device-is-offline/m-p/406363#M98939</link>
    <description>&lt;P&gt;File - Import imports from the local environment.&lt;/P&gt;
&lt;P&gt;Code, OTOH, is executed directly on the server, and you must make sure that the path you use on the local machine is also available there.&lt;/P&gt;</description>
    <pubDate>Sun, 22 Oct 2017 11:47:55 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2017-10-22T11:47:55Z</dc:date>
    <item>
      <title>Error while importing from csv 'Device is offline'</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-while-importing-from-csv-Device-is-offline/m-p/406353#M98934</link>
      <description>&lt;P&gt;Hi, I am trying to import a .csv file saved on my local machine onto SAS server. The import is successful if I use File&amp;gt;Import Data&amp;gt; from the menu. But when I try to write a code, the import fails error 'Device is offiline'&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code is as follows:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data sasuser.AMAT_87_ASK_TRIAL;&lt;BR /&gt;infile 'E:/*/*/*/AMAT+ISSM (1987-92)/AMAT 1987//AMAT_87_ASK.csv'&lt;BR /&gt;delimiter = ','&lt;BR /&gt;firstobs = 2&lt;BR /&gt;lrecl=32767&lt;BR /&gt;dsd&lt;BR /&gt;missover;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LENGTH&lt;/STRONG&gt;&lt;BR /&gt;XA 8&lt;BR /&gt;ASK 8&lt;BR /&gt;ASKSIZE 8&lt;BR /&gt;SELLTIME 8&lt;BR /&gt;VOLS 8&lt;BR /&gt;ALAMBDA 8&lt;BR /&gt;AMU 8&lt;BR /&gt;TQ $1&lt;BR /&gt;REGIMEASK 8&lt;BR /&gt;OLDINDEX 8&lt;BR /&gt;VOLSOLD 8&lt;BR /&gt;PROBS 8 ;&lt;BR /&gt;&lt;STRONG&gt;FORMAT&lt;/STRONG&gt;&lt;BR /&gt;XA BEST4.&lt;BR /&gt;ASK BEST6.&lt;BR /&gt;ASKSIZE BEST6.&lt;BR /&gt;SELLTIME TIME8.&lt;BR /&gt;VOLS BEST6.&lt;BR /&gt;ALAMBDA BEST12.&lt;BR /&gt;AMU BEST12.&lt;BR /&gt;TQ $CHAR1.&lt;BR /&gt;REGIMEASK BEST3.&lt;BR /&gt;OLDINDEX BEST4.&lt;BR /&gt;VOLSOLD BEST6.&lt;BR /&gt;PROBS BEST11. ;&lt;BR /&gt;&lt;STRONG&gt;INFORMAT&lt;/STRONG&gt;&lt;BR /&gt;XA BEST4.&lt;BR /&gt;ASK BEST6.&lt;BR /&gt;ASKSIZE BEST6.&lt;BR /&gt;SELLTIME TIME8.&lt;BR /&gt;VOLS BEST6.&lt;BR /&gt;ALAMBDA BEST12.&lt;BR /&gt;AMU BEST12.&lt;BR /&gt;TQ $CHAR1.&lt;BR /&gt;REGIMEASK BEST3.&lt;BR /&gt;OLDINDEX BEST4.&lt;BR /&gt;VOLSOLD BEST6.&lt;BR /&gt;PROBS BEST11. ;&lt;BR /&gt;INPUT&lt;BR /&gt;XA : ?? BEST4.&lt;BR /&gt;ASK : ?? COMMA6.&lt;BR /&gt;ASKSIZE : ?? BEST6.&lt;BR /&gt;SELLTIME : ?? TIME8.&lt;BR /&gt;VOLS : ?? BEST6.&lt;BR /&gt;ALAMBDA : ?? COMMA12.&lt;BR /&gt;AMU : ?? COMMA12.&lt;BR /&gt;TQ : $CHAR1.&lt;BR /&gt;REGIMEASK : ?? BEST3.&lt;BR /&gt;OLDINDEX : ?? BEST4.&lt;BR /&gt;VOLSOLD : ?? BEST6.&lt;BR /&gt;PROBS : ?? COMMA11. ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOG&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR: Device is offline.&lt;/STRONG&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;WARNING: The data set SASUSER.AMAT_87_ASK_TRIAL may be incomplete. When this step was stopped there were 0 observations and 12&lt;BR /&gt;variables.&lt;BR /&gt;WARNING: Data set SASUSER.AMAT_87_ASK_TRIAL was not replaced because this step was stopped.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Oct 2017 10:52:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-while-importing-from-csv-Device-is-offline/m-p/406353#M98934</guid>
      <dc:creator>dhir</dc:creator>
      <dc:date>2017-10-22T10:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error while importing from csv 'Device is offline'</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-while-importing-from-csv-Device-is-offline/m-p/406363#M98939</link>
      <description>&lt;P&gt;File - Import imports from the local environment.&lt;/P&gt;
&lt;P&gt;Code, OTOH, is executed directly on the server, and you must make sure that the path you use on the local machine is also available there.&lt;/P&gt;</description>
      <pubDate>Sun, 22 Oct 2017 11:47:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-while-importing-from-csv-Device-is-offline/m-p/406363#M98939</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-22T11:47:55Z</dc:date>
    </item>
  </channel>
</rss>

