<?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 tables that look like they have data in them but don't - What to do? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Remote-tables-that-look-like-they-have-data-in-them-but-don-t/m-p/300798#M312330</link>
    <description>&lt;P&gt;Thanks for that&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The library name is not realy the issue here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is that after the error is reported in SAS, ALL tables act as though they have no data in them from that point onward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So in the above case, even if I do point SAS in the right direction for the table&amp;nbsp;&lt;SPAN&gt;rank_ons_vis_summ2, it will still come back with the comment that there is 0 observations.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If, however, I shut down SAS and start it up again, the code will run fine.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 26 Sep 2016 16:14:11 GMT</pubDate>
    <dc:creator>Chris_L</dc:creator>
    <dc:date>2016-09-26T16:14:11Z</dc:date>
    <item>
      <title>Remote tables that look like they have data in them but don't - What to do?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remote-tables-that-look-like-they-have-data-in-them-but-don-t/m-p/300777#M312328</link>
      <description>&lt;P&gt;I have never seen this before while using RSUBMIT.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I run code using remote submit and all is fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then if I run a piece of code and there is an error, such as:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOTE: Remote submit to ROMOTE complete.
85
86   rsubmit;
NOTE: Remote submit to ROMOTE commencing.
216  data all_data1;
217      merge out_1 (in=a)
218            rank_ons_vis_summ2 (in=b);
ERROR: File WORK.RANK_ONS_VIS_SUMM2.DATA does not exist.
219      by postcode_sector;
220      if a;
221  run;

NOTE: The SAS System stopped processing this step because of errors.
NOTE: SAS set option OBS=0 and will continue to check statements.
      This may cause NOTE: No observations in data set.
WARNING: The data set WORK.ALL_DATA1 may be incomplete.  When this step was stopped there were 0
         observations and 93 variables.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;From this point on all the tables will open and show data in them, but if I run anything else, SAS will come back as though the table is empty. For example the table OUT_1 has data in it, but if I run code after an error I'll get:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;88   rsubmit;
NOTE: Remote submit to ROMOTE commencing.
231  data out_1f ;
232   set out_1;
233
234  run;

NOTE: The data set WORK.OUT_1F has 0 observations and 93 variables.
WARNING: Data set WORK.OUT_1F was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      user cpu time       0.00 seconds
      system cpu time     0.00 seconds
      Memory                            305k
      OS Memory                         8996k
      Timestamp            9/26/2016  3:58:10 PM


NOTE: Remote submit to ROMOTE complete.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The only way that I can reset this is to shut down SAS and start it up again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What else can I do??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2016 15:13:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remote-tables-that-look-like-they-have-data-in-them-but-don-t/m-p/300777#M312328</guid>
      <dc:creator>Chris_L</dc:creator>
      <dc:date>2016-09-26T15:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Remote tables that look like they have data in them but don't - What to do?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remote-tables-that-look-like-they-have-data-in-them-but-don-t/m-p/300783#M312329</link>
      <description>&lt;P&gt;What LIBRARY name did you assign to the remote connection?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This code:&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="token number"&gt;216&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt; all_data1&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="token number"&gt;217&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="token keyword"&gt;merge&lt;/SPAN&gt; out_1 &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;in&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;a&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="token number"&gt;218&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rank_ons_vis_summ2 &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;in&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;b&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;; &amp;lt;==== No library name so is referencing you local WORK library, if this is supposed to be the remote then preface with the library name such as ROMOTE.ran_on_vis_summ2 &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2016 15:32:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remote-tables-that-look-like-they-have-data-in-them-but-don-t/m-p/300783#M312329</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-09-26T15:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Remote tables that look like they have data in them but don't - What to do?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remote-tables-that-look-like-they-have-data-in-them-but-don-t/m-p/300798#M312330</link>
      <description>&lt;P&gt;Thanks for that&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The library name is not realy the issue here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is that after the error is reported in SAS, ALL tables act as though they have no data in them from that point onward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So in the above case, even if I do point SAS in the right direction for the table&amp;nbsp;&lt;SPAN&gt;rank_ons_vis_summ2, it will still come back with the comment that there is 0 observations.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If, however, I shut down SAS and start it up again, the code will run fine.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2016 16:14:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remote-tables-that-look-like-they-have-data-in-them-but-don-t/m-p/300798#M312330</guid>
      <dc:creator>Chris_L</dc:creator>
      <dc:date>2016-09-26T16:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Remote tables that look like they have data in them but don't - What to do?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remote-tables-that-look-like-they-have-data-in-them-but-don-t/m-p/300805#M312331</link>
      <description>&lt;P&gt;I suggest that you post the details on how you are connecting and possibly more of an example connection. Replace sensitive info like user or password with xxx or similar but the connect strings and code uptil the first error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You database admin may also have some settings related to this.&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>Mon, 26 Sep 2016 16:22:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remote-tables-that-look-like-they-have-data-in-them-but-don-t/m-p/300805#M312331</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-09-26T16:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: Remote tables that look like they have data in them but don't - What to do?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remote-tables-that-look-like-they-have-data-in-them-but-don-t/m-p/300934#M312332</link>
      <description>&lt;P&gt;Looks like your remote SAS session has the SAS option SYNTAXCHECK in effect. Specify options NOSYTAXCHECK to switch off this behaviour:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lesysoptsref/68023/HTML/default/viewer.htm#n014qbvh3po8w5n1qlqbzr22vtg0.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lesysoptsref/68023/HTML/default/viewer.htm#n014qbvh3po8w5n1qlqbzr22vtg0.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2016 06:36:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remote-tables-that-look-like-they-have-data-in-them-but-don-t/m-p/300934#M312332</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2016-09-27T06:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Remote tables that look like they have data in them but don't - What to do?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remote-tables-that-look-like-they-have-data-in-them-but-don-t/m-p/300944#M312333</link>
      <description>&lt;P&gt;Thanks for that&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That worked fine!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2016 08:11:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remote-tables-that-look-like-they-have-data-in-them-but-don-t/m-p/300944#M312333</guid>
      <dc:creator>Chris_L</dc:creator>
      <dc:date>2016-09-27T08:11:18Z</dc:date>
    </item>
  </channel>
</rss>

