<?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: Rsubmit is pulling old data should I restart SAS/Connect in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773598#M23218</link>
    <description>&lt;P&gt;Everything depends on where the data is stored and how you are accessing it. The following three methods should produce the same results:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) HostA performs a SIGNON to HostB and then runs a LIBNAME statement using the REMOTE engine with SERVERNAME=HostB, it should be accessing data at the path specified on HostB's filesystem. This would look like&lt;/P&gt;
&lt;P&gt;(running on HostA)&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; SIGNON HostB;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; LIBNAME myLib REMOTE '/path/to/data' server=HostB;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; PROC CONTENTS DATA=mylib.mydata;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; RUN;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;2) HostA performs a SIGNON to HostB and then RSUBMITs code to HostB to run a LIBNAME statement using the BASE engine to the same path.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; SIGNON HostB;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; RSUBMIT HostB;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LIBNAME myLib 'path/to/data';&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROC CONTENTS DATA mylib.mydata;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RUN;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; ENDRSUBMIT;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;3) Running SAS on HostB to run a LIBNAME statement using the BASE engine to the same path:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; LIBNAME myLib 'path/to/data';&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; PROC CONTENTS DATA mylib.mydata;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; RUN;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;(Of course #1 is the only one that will allow you to get data from HostB back to HostA)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;It would be helpful if you at least provided some pseudo code as to what you are doing and the results you are seeing. Getting totally different data set information means you are not accessing the same data for some reason.&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Oct 2021 12:01:25 GMT</pubDate>
    <dc:creator>doug_sas</dc:creator>
    <dc:date>2021-10-12T12:01:25Z</dc:date>
    <item>
      <title>Rsubmit is pulling old data should I restart SAS/Connect</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773428#M23202</link>
      <description>&lt;P&gt;We are having an issue with SAS 9.3 sending old cached data to both other 9.3 installations (yes, I know upgrade is needed) and also to Viya 3.5.&amp;nbsp; When I run the remote=SERVERNAME on the same server as SERVERNAME (to test) I get the data dated last month, yet when I remove the remote=SERVERNAME I get the correct date.&amp;nbsp; This has been tested on other SAS 9.3 AIX servers and also Viya.&amp;nbsp; We are pulling data that is symlinked, and was working fine until this month.&amp;nbsp; &amp;nbsp;I do not know enough about SAS/Connect to know if it is caching data, etc..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My suggestion was to restart the SAS/Connect piece, but I need to ensure that is enough.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 16:20:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773428#M23202</guid>
      <dc:creator>dlawto2</dc:creator>
      <dc:date>2021-10-11T16:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: Rsubmit is pulling old data should I restart SAS/Connect</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773431#M23203</link>
      <description>&lt;P&gt;Sounds like you are using some of the features available with the SAS/Connect product to start a second SAS session from your current SAS session. For example by using the SIGNON and RSUBMIT command.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are seeing different behavior when you connect to different SAS servers then it sounds like one of the SAS servers does not have the current data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure what we can do to help you debug that situation.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try checking which server you are connected. Either just look at the SAS log or try checking the value of the SYSHOSTNAME macro variable (if that macro variable exist in SAS 9.3)&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 16:33:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773431#M23203</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-10-11T16:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: Rsubmit is pulling old data should I restart SAS/Connect</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773433#M23204</link>
      <description>&lt;P&gt;Sorry my explanation was vague.&amp;nbsp; So even when I used the rsubmit to test a connection to prod (run on Prod) it returned the invalid date for the data, yet when I removed the rsubmit, it pointed to the correct version for October.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From Viya:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The CONTENTS Procedure&lt;/P&gt;&lt;P&gt;Data Set Name &amp;lt;filename&amp;gt;_2021 Observations 3612501&lt;BR /&gt;Member Type DATA Variables 26&lt;BR /&gt;Engine REMOTE9 Indexes 2&lt;BR /&gt;Created 09/02/2021 06:21:48 Observation Length 256&lt;BR /&gt;Last Modified 09/02/2021 06:22:01 Deleted Observations 0&lt;BR /&gt;Protection Compressed NO&lt;BR /&gt;Data Set Type Sorted YES&lt;BR /&gt;Label&lt;BR /&gt;Data Representation HP_UX_64, RS_6000_AIX_64, SOLARIS_64, HP_IA64&lt;BR /&gt;Encoding latin1 Western (ISO)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Engine/Host Dependent Information&lt;/P&gt;&lt;P&gt;Data Set Page Size 24576&lt;BR /&gt;Number of Data Set Pages 38028&lt;BR /&gt;First Data Page 1&lt;BR /&gt;Max Obs per Page 95&lt;BR /&gt;Obs in First Data Page 74&lt;BR /&gt;Index File Page Size 8192&lt;BR /&gt;Number of Index File Pages 43432&lt;BR /&gt;Number of Data Set Repairs 0&lt;BR /&gt;Filename &amp;lt;filename&amp;gt;_2021.sas7bdat&lt;BR /&gt;Release Created 9.0301M2&lt;BR /&gt;Host Created AIX&lt;BR /&gt;Inode Number 54857&lt;BR /&gt;Access Permission rwxrwxr-x&lt;BR /&gt;Owner Name &amp;lt;UID&amp;gt;&lt;BR /&gt;File Size (bytes) 1038098432&lt;/P&gt;&lt;P&gt;From Prod:&lt;BR /&gt;The CONTENTS Procedure&lt;/P&gt;&lt;P&gt;Data Set Name &amp;lt;filename&amp;gt;_2021 Observations 3612501&lt;BR /&gt;Member Type DATA Variables 26&lt;BR /&gt;Engine REMOTE Indexes 2&lt;BR /&gt;Created Thu, Sep 02, 2021 06:21:47 AM Observation Length 256&lt;BR /&gt;Last Modified Thu, Sep 02, 2021 06:22:00 AM Deleted Observations 0&lt;BR /&gt;Protection Compressed NO&lt;BR /&gt;Data Set Type Sorted YES&lt;BR /&gt;Label&lt;BR /&gt;Data Representation HP_UX_64, RS_6000_AIX_64, SOLARIS_64, HP_IA64&lt;BR /&gt;Encoding latin1 Western (ISO)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Engine/Host Dependent Information&lt;/P&gt;&lt;P&gt;Data Set Page Size 24576&lt;BR /&gt;Number of Data Set Pages 38028&lt;BR /&gt;First Data Page 1&lt;BR /&gt;Max Obs per Page 95&lt;BR /&gt;Obs in First Data Page 74&lt;BR /&gt;Index File Page Size 8192&lt;BR /&gt;Number of Index File Pages 43432&lt;BR /&gt;Number of Data Set Repairs 0&lt;BR /&gt;Filename /&amp;lt;filename&amp;gt;2021.sas7bdat&lt;BR /&gt;Release Created 9.0301M2&lt;BR /&gt;Host Created AIX&lt;BR /&gt;Inode Number 54857&lt;BR /&gt;Access Permission rwxrwxr-x&lt;BR /&gt;Owner Name &amp;lt;uid&amp;gt;&lt;BR /&gt;File Size (bytes) 1038098432&lt;/P&gt;&lt;P&gt;Prod without rsubmit:&lt;BR /&gt;The SAS System 10:53 Monday, October 11, 2021 1&lt;/P&gt;&lt;P&gt;The CONTENTS Procedure&lt;/P&gt;&lt;P&gt;Data Set Name &amp;lt;filename&amp;gt;_2021 Observations 4012677&lt;BR /&gt;Member Type DATA Variables 26&lt;BR /&gt;Engine V9 Indexes 2&lt;BR /&gt;Created Saturday, October 02, 2021 06:26:25 AM Observation Length 256&lt;BR /&gt;Last Modified Saturday, October 02, 2021 06:26:48 AM Deleted Observations 0&lt;BR /&gt;Protection Compressed NO&lt;BR /&gt;Data Set Type Sorted YES&lt;BR /&gt;Label&lt;BR /&gt;Data Representation HP_UX_64, RS_6000_AIX_64, SOLARIS_64, HP_IA64&lt;BR /&gt;Encoding latin1 Western (ISO)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Engine/Host Dependent Information&lt;/P&gt;&lt;P&gt;Data Set Page Size 24576&lt;BR /&gt;Number of Data Set Pages 42240&lt;BR /&gt;First Data Page 1&lt;BR /&gt;Max Obs per Page 95&lt;BR /&gt;Obs in First Data Page 74&lt;BR /&gt;Index File Page Size 8192&lt;BR /&gt;Number of Index File Pages 48242&lt;BR /&gt;Number of Data Set Repairs 0&lt;BR /&gt;Filename /&amp;lt;filename&amp;gt;_2021.sas7bdat&lt;BR /&gt;Release Created 9.0301M2&lt;BR /&gt;Host Created AIX&lt;BR /&gt;Inode Number 54857&lt;BR /&gt;Access Permission rwxrwxr-x&lt;BR /&gt;Owner Name &amp;lt;uid&amp;gt;&lt;BR /&gt;File Size (bytes) 1038098432&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Alphabetic List of Variab&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I removed UID and Filenames but they are identical.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 17:06:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773433#M23204</guid>
      <dc:creator>dlawto2</dc:creator>
      <dc:date>2021-10-11T17:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: Rsubmit is pulling old data should I restart SAS/Connect</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773434#M23205</link>
      <description>&lt;P&gt;My apologies, the cut/paste removed carriage returns and the above is difficult to read:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From Viya to Prod with rsubmit:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The CONTENTS Procedure&lt;/P&gt;&lt;P&gt;Data Set Name &amp;lt;filename&amp;gt;_2021 Observations 3612501&lt;BR /&gt;Member Type DATA Variables 26&lt;BR /&gt;Engine REMOTE9 Indexes 2&lt;BR /&gt;Created 09/02/2021 06:21:48 Observation Length 256&lt;BR /&gt;Last Modified 09/02/2021 06:22:01 Deleted Observations 0&lt;BR /&gt;Protection Compressed NO&lt;BR /&gt;Data Set Type Sorted YES&lt;BR /&gt;Label&lt;BR /&gt;Data Representation HP_UX_64, RS_6000_AIX_64, SOLARIS_64, HP_IA64&lt;BR /&gt;Encoding latin1 Western (ISO)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Engine/Host Dependent Information&lt;/P&gt;&lt;P&gt;Data Set Page Size 24576&lt;BR /&gt;Number of Data Set Pages 38028&lt;BR /&gt;First Data Page 1&lt;BR /&gt;Max Obs per Page 95&lt;BR /&gt;Obs in First Data Page 74&lt;BR /&gt;Index File Page Size 8192&lt;BR /&gt;Number of Index File Pages 43432&lt;BR /&gt;Number of Data Set Repairs 0&lt;BR /&gt;Filename &amp;lt;filename&amp;gt;_2021.sas7bdat&lt;BR /&gt;Release Created 9.0301M2&lt;BR /&gt;Host Created AIX&lt;BR /&gt;Inode Number 54857&lt;BR /&gt;Access Permission rwxrwxr-x&lt;BR /&gt;Owner Name &amp;lt;UID&amp;gt;&lt;BR /&gt;File Size (bytes) 1038098432&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From Prod to Prod with rsubmit:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The CONTENTS Procedure&lt;/P&gt;&lt;P&gt;Data Set Name &amp;lt;filename&amp;gt;_2021 Observations 3612501&lt;BR /&gt;Member Type DATA Variables 26&lt;BR /&gt;Engine REMOTE Indexes 2&lt;BR /&gt;Created Thu, Sep 02, 2021 06:21:47 AM Observation Length 256&lt;BR /&gt;Last Modified Thu, Sep 02, 2021 06:22:00 AM Deleted Observations 0&lt;BR /&gt;Protection Compressed NO&lt;BR /&gt;Data Set Type Sorted YES&lt;BR /&gt;Label&lt;BR /&gt;Data Representation HP_UX_64, RS_6000_AIX_64, SOLARIS_64, HP_IA64&lt;BR /&gt;Encoding latin1 Western (ISO)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Engine/Host Dependent Information&lt;/P&gt;&lt;P&gt;Data Set Page Size 24576&lt;BR /&gt;Number of Data Set Pages 38028&lt;BR /&gt;First Data Page 1&lt;BR /&gt;Max Obs per Page 95&lt;BR /&gt;Obs in First Data Page 74&lt;BR /&gt;Index File Page Size 8192&lt;BR /&gt;Number of Index File Pages 43432&lt;BR /&gt;Number of Data Set Repairs 0&lt;BR /&gt;Filename /&amp;lt;filename&amp;gt;2021.sas7bdat&lt;BR /&gt;Release Created 9.0301M2&lt;BR /&gt;Host Created AIX&lt;BR /&gt;Inode Number 54857&lt;BR /&gt;Access Permission rwxrwxr-x&lt;BR /&gt;Owner Name &amp;lt;uid&amp;gt;&lt;BR /&gt;File Size (bytes) 1038098432&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Prod without rsubmit:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The SAS System 10:53 Monday, October 11, 2021 1&lt;/P&gt;&lt;P&gt;The CONTENTS Procedure&lt;/P&gt;&lt;P&gt;Data Set Name &amp;lt;filename&amp;gt;_2021 Observations 4012677&lt;BR /&gt;Member Type DATA Variables 26&lt;BR /&gt;Engine V9 Indexes 2&lt;BR /&gt;Created Saturday, October 02, 2021 06:26:25 AM Observation Length 256&lt;BR /&gt;Last Modified Saturday, October 02, 2021 06:26:48 AM Deleted Observations 0&lt;BR /&gt;Protection Compressed NO&lt;BR /&gt;Data Set Type Sorted YES&lt;BR /&gt;Label&lt;BR /&gt;Data Representation HP_UX_64, RS_6000_AIX_64, SOLARIS_64, HP_IA64&lt;BR /&gt;Encoding latin1 Western (ISO)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Engine/Host Dependent Information&lt;/P&gt;&lt;P&gt;Data Set Page Size 24576&lt;BR /&gt;Number of Data Set Pages 42240&lt;BR /&gt;First Data Page 1&lt;BR /&gt;Max Obs per Page 95&lt;BR /&gt;Obs in First Data Page 74&lt;BR /&gt;Index File Page Size 8192&lt;BR /&gt;Number of Index File Pages 48242&lt;BR /&gt;Number of Data Set Repairs 0&lt;BR /&gt;Filename /&amp;lt;filename&amp;gt;_2021.sas7bdat&lt;BR /&gt;Release Created 9.0301M2&lt;BR /&gt;Host Created AIX&lt;BR /&gt;Inode Number 54857&lt;BR /&gt;Access Permission rwxrwxr-x&lt;BR /&gt;Owner Name &amp;lt;uid&amp;gt;&lt;BR /&gt;File Size (bytes) 1038098432&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Alphabetic List of Variab&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 17:10:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773434#M23205</guid>
      <dc:creator>dlawto2</dc:creator>
      <dc:date>2021-10-11T17:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Rsubmit is pulling old data should I restart SAS/Connect</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773437#M23206</link>
      <description>&lt;P&gt;That looks like output from PROC CONTENTS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What does PROC CONTENTS have to do with RSUBMIT?&lt;/P&gt;
&lt;P&gt;What are you RSUBMITTING from and to?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you using VIYA? Or regular SAS?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS The missing formatting is probably because you tried to copy the HTML output instead of the plain text listing output.&amp;nbsp; If you cannot get plain old text listing to work in your environment try using OUT= option or ODS LISTING to generate a dataset and share that.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 17:36:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773437#M23206</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-10-11T17:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Rsubmit is pulling old data should I restart SAS/Connect</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773510#M23208</link>
      <description>&lt;P&gt;We get the same error with both Viya and SAS 9.3 rsubmits.&amp;nbsp; And yes, I ran a proc contents to see the date of the data.&amp;nbsp; It should be pulling the most current one of October.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 23:07:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773510#M23208</guid>
      <dc:creator>dlawto2</dc:creator>
      <dc:date>2021-10-11T23:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Rsubmit is pulling old data should I restart SAS/Connect</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773512#M23209</link>
      <description>&lt;P&gt;Compare the LIBNAMEs you are reading your data from RSUBMIT versus non-RSUBMIT. Do they point to different folder locations? That could explain your problem.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 00:03:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773512#M23209</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-10-12T00:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Rsubmit is pulling old data should I restart SAS/Connect</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773514#M23210</link>
      <description>&lt;P&gt;No, same identical program was run to test, the remote submit was just removed when on prod.&amp;nbsp; &amp;nbsp;It is the most bizarre thing.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 01:05:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773514#M23210</guid>
      <dc:creator>dlawto2</dc:creator>
      <dc:date>2021-10-12T01:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Rsubmit is pulling old data should I restart SAS/Connect</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773529#M23211</link>
      <description>&lt;P&gt;Where do you assign the LIBNAME where the data is coming from though? In the program or somewhere else?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 02:11:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773529#M23211</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-10-12T02:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: Rsubmit is pulling old data should I restart SAS/Connect</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773559#M23212</link>
      <description>&lt;P&gt;So the rsubmit is just a new session on the same machine or is that running on a different machine.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to the info you've posted with identical inodes and file sizes I assume it's executing on the same machine and then I'd agree that this is weird.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In situations where "it worked and now it doesn't anymore but we haven't changed a thing" I'd ask: What has changed in the environment? Is there a new file system or anything else?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's certainly worth to restart the SAS servers and see if the issue remains or not.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And getting the log from the different executions would also help - i.e. to see the path the library points to.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 07:43:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773559#M23212</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2021-10-12T07:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: Rsubmit is pulling old data should I restart SAS/Connect</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773598#M23218</link>
      <description>&lt;P&gt;Everything depends on where the data is stored and how you are accessing it. The following three methods should produce the same results:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) HostA performs a SIGNON to HostB and then runs a LIBNAME statement using the REMOTE engine with SERVERNAME=HostB, it should be accessing data at the path specified on HostB's filesystem. This would look like&lt;/P&gt;
&lt;P&gt;(running on HostA)&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; SIGNON HostB;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; LIBNAME myLib REMOTE '/path/to/data' server=HostB;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; PROC CONTENTS DATA=mylib.mydata;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; RUN;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;2) HostA performs a SIGNON to HostB and then RSUBMITs code to HostB to run a LIBNAME statement using the BASE engine to the same path.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; SIGNON HostB;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; RSUBMIT HostB;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LIBNAME myLib 'path/to/data';&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROC CONTENTS DATA mylib.mydata;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RUN;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; ENDRSUBMIT;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;3) Running SAS on HostB to run a LIBNAME statement using the BASE engine to the same path:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; LIBNAME myLib 'path/to/data';&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; PROC CONTENTS DATA mylib.mydata;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; RUN;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;(Of course #1 is the only one that will allow you to get data from HostB back to HostA)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;It would be helpful if you at least provided some pseudo code as to what you are doing and the results you are seeing. Getting totally different data set information means you are not accessing the same data for some reason.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 12:01:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Rsubmit-is-pulling-old-data-should-I-restart-SAS-Connect/m-p/773598#M23218</guid>
      <dc:creator>doug_sas</dc:creator>
      <dc:date>2021-10-12T12:01:25Z</dc:date>
    </item>
  </channel>
</rss>

