<?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 do I solve the error &amp;quot;The device is offline &amp;quot; by SAS Enterprise Guide in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-solve-the-error-quot-The-device-is-offline-quot-by-SAS/m-p/281675#M57151</link>
    <description>&lt;P&gt;PS I found a helpful post by doing a google search for "SAS ERROR: Device is offline.". It is usually a good idea to just search for the error message (and "SAS") with google.&lt;/P&gt;</description>
    <pubDate>Fri, 01 Jul 2016 10:05:12 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2016-07-01T10:05:12Z</dc:date>
    <item>
      <title>How do I solve the error "The device is offline " by SAS Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-solve-the-error-quot-The-device-is-offline-quot-by-SAS/m-p/281662#M57146</link>
      <description>&lt;P&gt;I am a new user to use SAS&amp;nbsp;Enterprise Guide, and it is a remote server. My code is following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;DATA garden;
  infile 'D:\The little sas book\MyRawData\Garden.dat';
  input   Name $6. Tomato 2. Zucchini 2. Peas 2. Grapes 4. Zone 2.  Type 4. Total 4. PerTom 2.4;

  Zone= 14;
  Type='home';
  Total= sum( Tomato, Zucchini, Peas, Grapes);
  PerTom = mean (Total);

Run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following is the log summary:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).
      33:8   
ERROR: Device is offline.
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.GARDEN may be incomplete.  When this step was stopped there were 0 observations and 9 variables.
WARNING: Data set WORK.GARDEN was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
      real time           0.04 seconds
      cpu time            0.01 seconds
      

38         
39         
40         GOPTIONS NOACCESSIBLE;
41         %LET _CLIENTTASKLABEL=;
42         %LET _CLIENTPROJECTPATH=;
43         %LET _CLIENTPROJECTNAME=;
44         %LET _SASPROGRAMFILE=;
2                                                          The SAS System                                 10:45 Friday, July 1, 2016

45         
46         ;*';*";*/;quit;run;
47         ODS _ALL_ CLOSE;
48         
49         
50         QUIT; RUN;&lt;/PRE&gt;&lt;P&gt;What does it mean with "the device is offline" and what is the problem with my codes?&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2016 09:03:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-solve-the-error-quot-The-device-is-offline-quot-by-SAS/m-p/281662#M57146</guid>
      <dc:creator>RavenWu</dc:creator>
      <dc:date>2016-07-01T09:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: How do I solve the error "The device is offline " by SAS Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-solve-the-error-quot-The-device-is-offline-quot-by-SAS/m-p/281672#M57149</link>
      <description>&lt;P&gt;Most probably your server does not have a &lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; drive.&lt;/P&gt;
&lt;P&gt;If you want to import a file on a remote server, you first have to copy that file to the remote server or make sure you stored the file in a shared network location that the server has access to. (and use the right drive letter or UNC)&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2016 09:23:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-solve-the-error-quot-The-device-is-offline-quot-by-SAS/m-p/281672#M57149</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-07-01T09:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do I solve the error "The device is offline " by SAS Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-solve-the-error-quot-The-device-is-offline-quot-by-SAS/m-p/281674#M57150</link>
      <description>You are right. The file path should be connected to the server. Thank you!</description>
      <pubDate>Fri, 01 Jul 2016 10:00:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-solve-the-error-quot-The-device-is-offline-quot-by-SAS/m-p/281674#M57150</guid>
      <dc:creator>RavenWu</dc:creator>
      <dc:date>2016-07-01T10:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: How do I solve the error "The device is offline " by SAS Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-solve-the-error-quot-The-device-is-offline-quot-by-SAS/m-p/281675#M57151</link>
      <description>&lt;P&gt;PS I found a helpful post by doing a google search for "SAS ERROR: Device is offline.". It is usually a good idea to just search for the error message (and "SAS") with google.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2016 10:05:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-solve-the-error-quot-The-device-is-offline-quot-by-SAS/m-p/281675#M57151</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-07-01T10:05:12Z</dc:date>
    </item>
  </channel>
</rss>

