<?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: Parallel Processing with rsubmit in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Parallel-Processing-with-rsubmit/m-p/624804#M184097</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't really have access to that library. But I'm not trying to access it, apparently SAS is trying to access all the predefined libraries on the server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 14 Feb 2020 13:08:08 GMT</pubDate>
    <dc:creator>WMachado</dc:creator>
    <dc:date>2020-02-14T13:08:08Z</dc:date>
    <item>
      <title>Parallel Processing with rsubmit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Parallel-Processing-with-rsubmit/m-p/624787#M184089</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello, I'm trying to run two processes in parallel (this is working), but sas tries to contain all the Libref server, which generates error. Is there any way to solve this problem? follow the code below.&lt;/SPAN&gt;&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;PRE&gt;&lt;CODE class=" language-sas"&gt;options autosignon sascmd='!sascmd -nosyntaxcheck';
options threads cpucount=4;

%LET AUX = "LIBNAME";


%let _timer_start = %sysfunc(datetime());

rsubmit job1 wait=no /*log=keep*/ sysrputsync=yes connectpersist=no/*remote=job1*/;
%sysrput wk1 = %sysfunc(pathname(work));
	LIBNAME histi &amp;amp;AUX.;


--------------------------------------------------------

CODE 1

-----------------------------------------------------------

endrsubmit;

rsubmit job2 wait=no /*log=keep*/ sysrputsync=yes /*remote=job2*/;
%sysrput wk2 = %sysfunc(pathname(work));

	LIBNAME histi &amp;amp;AUX.;


--------------------------------------------------------

CODE 2

-----------------------------------------------------------

endrsubmit;

endrsubmit;
waitfor _all_;
listtask _all_;

libname work1 "&amp;amp;wk1.";
libname work2 "&amp;amp;wk2.";

data _null_;
	dur = datetime() - &amp;amp;_timer_start;
	put 30*'-' / ' DURAÇAO TOTAL:' dur time13.2 / 30*'-';
run;

signoff job1;
signoff job2;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ERROR: Libref TT1 failed to assign from logical server.&lt;BR /&gt;ERROR: Libref TT2 failed to assign from logical server.&lt;BR /&gt;ERROR: Libref TT3 failed to assign from logical server.&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 11:57:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Parallel-Processing-with-rsubmit/m-p/624787#M184089</guid>
      <dc:creator>WMachado</dc:creator>
      <dc:date>2020-02-14T11:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing with rsubmit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Parallel-Processing-with-rsubmit/m-p/624797#M184092</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you share the log?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you try :&lt;/P&gt;&lt;P&gt;1)&amp;nbsp; %SYSLPUT for AUX macrovariable&lt;/P&gt;&lt;P&gt;2) Access=Readonly in library definition&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the best&lt;/P&gt;&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 12:10:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Parallel-Processing-with-rsubmit/m-p/624797#M184092</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2020-02-14T12:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing with rsubmit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Parallel-Processing-with-rsubmit/m-p/624800#M184095</link>
      <description>&lt;P&gt;the log i can't share unfortunately, but the error below, apperas for diferente libraries.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000"&gt;ERROR: User does not have appropriate authorization level for library RIPCRC_P.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000"&gt;ERROR: User does not have appropriate authorization level for library RICINT_D.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000" size="1"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;1) %SYSLPU I tried to use but without succes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Sorry but how I would use Access?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your help.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 12:39:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Parallel-Processing-with-rsubmit/m-p/624800#M184095</guid>
      <dc:creator>WMachado</dc:creator>
      <dc:date>2020-02-14T12:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing with rsubmit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Parallel-Processing-with-rsubmit/m-p/624803#M184096</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;About error, check out this discussion:&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Stored-Processes/ERROR-User-does-not-have-appropriate-authorization-level-for/td-p/317663" target="_blank"&gt;https://communities.sas.com/t5/SAS-Stored-Processes/ERROR-User-does-not-have-appropriate-authorization-level-for/td-p/317663&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;maybe your process doesn't have proper access rights to the location.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;About `access-readonly` I ment:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname A "/location/of/data" access=readonly;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;All the best&lt;/P&gt;&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 12:55:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Parallel-Processing-with-rsubmit/m-p/624803#M184096</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2020-02-14T12:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing with rsubmit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Parallel-Processing-with-rsubmit/m-p/624804#M184097</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't really have access to that library. But I'm not trying to access it, apparently SAS is trying to access all the predefined libraries on the server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 13:08:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Parallel-Processing-with-rsubmit/m-p/624804#M184097</guid>
      <dc:creator>WMachado</dc:creator>
      <dc:date>2020-02-14T13:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing with rsubmit</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Parallel-Processing-with-rsubmit/m-p/624807#M184098</link>
      <description>&lt;P&gt;Maybe check out the SASCMD= option, to modify remote session setup?&lt;/P&gt;&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=connref&amp;amp;docsetTarget=p0rfjby2hywt4cn1nt38unscvui8.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=connref&amp;amp;docsetTarget=p0rfjby2hywt4cn1nt38unscvui8.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the best&lt;/P&gt;&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 13:15:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Parallel-Processing-with-rsubmit/m-p/624807#M184098</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2020-02-14T13:15:55Z</dc:date>
    </item>
  </channel>
</rss>

