<?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 Run oracle procedure  in parallel in sas macro in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471612#M120810</link>
    <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to transform this sql statement to be carried out in parallel? so each oracle procedure&amp;nbsp; will execute differently on same server ,Please suggest way.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%MACRO LOAD_DATA_TO_LAN;&lt;/P&gt;&lt;P&gt;PROC SQL;&lt;BR /&gt;CONNECT TO ORACLE(USER="xxxx" PASSWORD="xxxx" PATH="&amp;amp;lan_pt");&lt;BR /&gt;EXECUTE(EXECUTE INC_load_LAN_ASSOCIATE_DIM) by ORACLE;&lt;BR /&gt;EXECUTE(EXECUTE INC_LAN_ACCOUNT_DIM_LOAD) by ORACLE;&lt;BR /&gt;EXECUTE(EXECUTE FIN_INC_LAN_PARTY_DIM_LOAD) by ORACLE;&lt;BR /&gt;EXECUTE(EXECUTE INC_LOAD_PARTY_ACCOUNT_BRIDGE) by ORACLE;&lt;BR /&gt;EXECUTE(EXECUTE INC_LOAD_FSC_TRANCTION_DIM) by ORACLE;&lt;BR /&gt;EXECUTE(EXECUTE INC_LOAD_FSC_CASH_FLOW_FACT) by ORACLE;&lt;BR /&gt;EXECUTE(EXECUTE INC_LOAD_LAN_EOD_TRANSACTIONS) by ORACLE;&lt;/P&gt;&lt;P&gt;DISCONNECT FROM ORACLE;&lt;BR /&gt;QUIT;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%MEND LOAD_DATA_TO_LAN;&lt;/P&gt;&lt;P&gt;%LOAD_DATA_TO_LAN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;many thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 20 Jun 2018 06:26:01 GMT</pubDate>
    <dc:creator>MG18</dc:creator>
    <dc:date>2018-06-20T06:26:01Z</dc:date>
    <item>
      <title>Run oracle procedure  in parallel in sas macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471612#M120810</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to transform this sql statement to be carried out in parallel? so each oracle procedure&amp;nbsp; will execute differently on same server ,Please suggest way.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%MACRO LOAD_DATA_TO_LAN;&lt;/P&gt;&lt;P&gt;PROC SQL;&lt;BR /&gt;CONNECT TO ORACLE(USER="xxxx" PASSWORD="xxxx" PATH="&amp;amp;lan_pt");&lt;BR /&gt;EXECUTE(EXECUTE INC_load_LAN_ASSOCIATE_DIM) by ORACLE;&lt;BR /&gt;EXECUTE(EXECUTE INC_LAN_ACCOUNT_DIM_LOAD) by ORACLE;&lt;BR /&gt;EXECUTE(EXECUTE FIN_INC_LAN_PARTY_DIM_LOAD) by ORACLE;&lt;BR /&gt;EXECUTE(EXECUTE INC_LOAD_PARTY_ACCOUNT_BRIDGE) by ORACLE;&lt;BR /&gt;EXECUTE(EXECUTE INC_LOAD_FSC_TRANCTION_DIM) by ORACLE;&lt;BR /&gt;EXECUTE(EXECUTE INC_LOAD_FSC_CASH_FLOW_FACT) by ORACLE;&lt;BR /&gt;EXECUTE(EXECUTE INC_LOAD_LAN_EOD_TRANSACTIONS) by ORACLE;&lt;/P&gt;&lt;P&gt;DISCONNECT FROM ORACLE;&lt;BR /&gt;QUIT;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%MEND LOAD_DATA_TO_LAN;&lt;/P&gt;&lt;P&gt;%LOAD_DATA_TO_LAN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;many thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 06:26:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471612#M120810</guid>
      <dc:creator>MG18</dc:creator>
      <dc:date>2018-06-20T06:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: Run oracle procedure  in parallel in sas macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471615#M120811</link>
      <description>&lt;P&gt;I don't exactly how PROC SQL is working in this regard, but my guess would be that&amp;nbsp; it waits after each statement to finish and get the return code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On way would to use MP CONNECT, and have each EXECUTE to done in it's own RSUBMIT and PROC SQL block.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 06:58:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471615#M120811</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2018-06-20T06:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Run oracle procedure  in parallel in sas macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471625#M120817</link>
      <description>&lt;P&gt;I AM GOING TO WRITE MY REPLY LIKE THIS AS SHOUTING IS FINE IN CODE.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;THIS:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;%MACRO LOAD_DATA_TO_LAN;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;%MEND LOAD_DATA_TO_LAN;&lt;/P&gt;
&lt;P&gt;%LOAD_DATA_TO_LAN;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;dOES ABSOLUTELY NOTHING HERE, THERE IS NO GENERAL CODE TO NEED A MACRO.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ok, I think that is point made about coding all in uppercase, its bad and makes reading harder.&lt;/P&gt;
&lt;P&gt;These:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;EXECUTE(EXECUTE INC_load_LAN_ASSOCIATE_DIM) by ORACLE;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;simply run an oracle procedure in the database.&amp;nbsp; So the question is why these need to be sent from SAS?&amp;nbsp; Can the database itself not be setup to run these, its a bit like having someone else hold your car key and getting them to come round and start your car each time, no value in it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Drop this part totally and speak with the oracle admin to get this setup on the database, scheduled most likely.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 07:47:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471625#M120817</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-06-20T07:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Run oracle procedure  in parallel in sas macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471633#M120825</link>
      <description>HI ,&lt;BR /&gt;&lt;BR /&gt;I understand your concern but till i want to keep this code as it is .&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Jun 2018 09:20:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471633#M120825</guid>
      <dc:creator>MG18</dc:creator>
      <dc:date>2018-06-20T09:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Run oracle procedure  in parallel in sas macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471634#M120826</link>
      <description>&lt;P&gt;Hi All ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Without macro below mentioned code is running in parallel&amp;nbsp; with rsubmit option .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;options autosignon=yes sascmd="sas";&lt;/P&gt;&lt;P&gt;rsubmit task1 wait=no sysrputsync=yes;&lt;BR /&gt;PROC SQL;&lt;BR /&gt;CONNECT TO ORACLE(USER="AMLLAND" PASSWORD="amlland" PATH="DPDCNUFSASDB:1521/sasut");&lt;BR /&gt;EXECUTE(EXECUTE INC_load_LAN_ASSOCIATE_DIM) by ORACLE;&lt;BR /&gt;DISCONNECT FROM ORACLE;&lt;BR /&gt;QUIT;&lt;BR /&gt;%sysrput pathtask1=%sysfunc(pathname(work));&lt;BR /&gt;endrsubmit;&lt;BR /&gt;rsubmit task2 wait=no sysrputsync=yes;&lt;BR /&gt;PROC SQL;&lt;BR /&gt;CONNECT TO ORACLE(USER="AMLLAND" PASSWORD="amlland" PATH="DPDCNUFSASDB:1521/sasut");&lt;BR /&gt;EXECUTE(EXECUTE INC_LAN_ACCOUNT_DIM_LOAD) by ORACLE;&lt;BR /&gt;DISCONNECT FROM ORACLE;&lt;BR /&gt;QUIT;&lt;BR /&gt;%sysrput pathtask2=%sysfunc(pathname(work));&lt;BR /&gt;endrsubmit;&lt;/P&gt;&lt;P&gt;rsubmit task3 wait=no sysrputsync=yes;&lt;BR /&gt;PROC SQL;&lt;BR /&gt;CONNECT TO ORACLE(USER="AMLLAND" PASSWORD="amlland" PATH="DPDCNUFSASDB:1521/sasut");&lt;BR /&gt;EXECUTE(EXECUTE FIN_INC_LAN_PARTY_DIM_LOAD) by ORACLE;&lt;BR /&gt;DISCONNECT FROM ORACLE;&lt;BR /&gt;QUIT;&lt;BR /&gt;%sysrput pathtask2=%sysfunc(pathname(work));&lt;BR /&gt;endrsubmit;&lt;/P&gt;&lt;P&gt;rsubmit task4 wait=no sysrputsync=yes;&lt;BR /&gt;PROC SQL;&lt;BR /&gt;CONNECT TO ORACLE(USER="AMLLAND" PASSWORD="amlland" PATH="DPDCNUFSASDB:1521/sasut");&lt;BR /&gt;EXECUTE(EXECUTE INC_LOAD_PARTY_ACCOUNT_BRIDGE) by ORACLE;&lt;BR /&gt;DISCONNECT FROM ORACLE;&lt;BR /&gt;QUIT;&lt;BR /&gt;%sysrput pathtask2=%sysfunc(pathname(work));&lt;BR /&gt;endrsubmit;&lt;/P&gt;&lt;P&gt;rsubmit task5 wait=no sysrputsync=yes;&lt;BR /&gt;PROC SQL;&lt;BR /&gt;CONNECT TO ORACLE(USER="AMLLAND" PASSWORD="amlland" PATH="DPDCNUFSASDB:1521/sasut");&lt;BR /&gt;EXECUTE(EXECUTE INC_LOAD_FSC_TRANCTION_DIM) by ORACLE;&lt;BR /&gt;DISCONNECT FROM ORACLE;&lt;BR /&gt;QUIT;&lt;BR /&gt;%sysrput pathtask2=%sysfunc(pathname(work));&lt;BR /&gt;endrsubmit;&lt;/P&gt;&lt;P&gt;rsubmit task6 wait=no sysrputsync=yes;&lt;BR /&gt;PROC SQL;&lt;BR /&gt;CONNECT TO ORACLE(USER="AMLLAND" PASSWORD="amlland" PATH="DPDCNUFSASDB:1521/sasut");&lt;BR /&gt;EXECUTE(EXECUTE INC_LOAD_FSC_CASH_FLOW_FACT) by ORACLE;&lt;BR /&gt;DISCONNECT FROM ORACLE;&lt;BR /&gt;QUIT;&lt;BR /&gt;%sysrput pathtask6=%sysfunc(pathname(work));&lt;BR /&gt;endrsubmit;&lt;/P&gt;&lt;P&gt;rsubmit task7 wait=no sysrputsync=yes;&lt;BR /&gt;PROC SQL;&lt;BR /&gt;CONNECT TO ORACLE(USER="AMLLAND" PASSWORD="amlland" PATH="DPDCNUFSASDB:1521/sasut");&lt;BR /&gt;EXECUTE(EXECUTE INC_LOAD_LAN_EOD_TRANSACTIONS) by ORACLE;&lt;BR /&gt;DISCONNECT FROM ORACLE;&lt;BR /&gt;QUIT;&lt;BR /&gt;%sysrput pathtask7=%sysfunc(pathname(work));&lt;BR /&gt;endrsubmit;&lt;/P&gt;&lt;P&gt;signoff task1;&lt;BR /&gt;signoff task2;&lt;BR /&gt;signoff task3;&lt;BR /&gt;signoff task4;&lt;BR /&gt;signoff task5;&lt;BR /&gt;signoff task6;&lt;BR /&gt;signoff task7;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We want to use the rsumbit option inside the macro is it possible ?&lt;/P&gt;&lt;P&gt;Many thanks in advnaces.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 09:22:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471634#M120826</guid>
      <dc:creator>MG18</dc:creator>
      <dc:date>2018-06-20T09:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: Run oracle procedure  in parallel in sas macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471635#M120827</link>
      <description>&lt;P&gt;Yes, it should be:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/23/986.html" target="_blank"&gt;http://support.sas.com/kb/23/986.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Macro does nothing itself, just generates some plain text, which then goes in to the SAS compiler.&amp;nbsp; Only note there appears to be macro variables need to be on the end machine, see the note above.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 09:31:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471635#M120827</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-06-20T09:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Run oracle procedure  in parallel in sas macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471640#M120832</link>
      <description>&lt;P&gt;Looking at your initial code, macro is unnecessary.&lt;/P&gt;
&lt;P&gt;Looking at your new code, macro could actually make your code a lot simpler, avoiding repeating loads of statements.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 10:18:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471640#M120832</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2018-06-20T10:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: Run oracle procedure  in parallel in sas macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471643#M120835</link>
      <description>&lt;P&gt;hi all ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;we are ok with above&amp;nbsp; running code without macro also but we are facing below problem too .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this above code is getting used&amp;nbsp; in one of thejob (with&amp;nbsp;&lt;SPAN&gt;LOAD_LAN_DATA_test.&lt;/SPAN&gt;sas file )&amp;nbsp; and which is getting called as below :-&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/sasconf/Lev1/SASApp/BatchServer/sasbatch.sh -autoexec "/sasaml/sascodes/amlpreprocessor.sas" -log /sasaml/sascodes/AJ/Batch_load/Lan_date_load_test_#Y.#m.#d_#H.#M.#s.log -batch -noterminal -logparm "rollover=session"&amp;nbsp; -sysin /sasaml/sascodes/AJ/Batch_load/LOAD_LAN_DATA_test.sas&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;since above code is running individually&amp;nbsp; correct but failing when it is getting called in above command with below mentioned error :-&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: AUTOEXEC processing completed.&lt;/P&gt;&lt;P&gt;1 options autosignon=yes sascmd="sas";&lt;BR /&gt;2 rsubmit task1 wait=no sysrputsync=yes;&lt;BR /&gt;NOTE: Remote signon to TASK1 commencing (SAS Release 9.03.01M2P081512).&lt;BR /&gt;ERROR: Execution of the Command 'sas -DMR -SET SASCLIENTPORT 1 -SET SASDAEMONPORT 42947 -SET SASDAEMONHOST localhost -SET INHERIT 0&lt;BR /&gt;-NOTERMINAL -noobjectserver -objectserverparms "''"' failed.&lt;BR /&gt;ERROR: The specified executable module either cannot be located or it is not a valid executable.&lt;BR /&gt;ERROR: A communication subsystem partner link setup request failure has occurred.&lt;BR /&gt;ERROR: Cannot start remote process.&lt;BR /&gt;ERROR: Command could not be executed.&lt;BR /&gt;NOTE: Subsequent lines will be ignored until ENDRSUBMIT.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What could be the reason for this ?? how can we solve this problem ?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 10:57:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471643#M120835</guid>
      <dc:creator>MG18</dc:creator>
      <dc:date>2018-06-20T10:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: Run oracle procedure  in parallel in sas macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471692#M120851</link>
      <description>&lt;P&gt;Looks like the target server does not have the correct path to the SAS executable in its PATH. Specify the fully qualified pathname for sas.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: if you are starting lots of processes in parallel, you might overrun a per-user limit for processes set by the system.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 13:50:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471692#M120851</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-06-20T13:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Run oracle procedure  in parallel in sas macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471979#M120950</link>
      <description>&lt;P&gt;HI ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to check&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;the correct path to the SAS executable in its PATH and how can i make changes in it ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;whether&amp;nbsp;i need to change my code or server configuration ? Please advice/&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 05:55:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/471979#M120950</guid>
      <dc:creator>MG18</dc:creator>
      <dc:date>2018-06-21T05:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Run oracle procedure  in parallel in sas macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/472959#M121312</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/121190"&gt;@MG18&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;HI ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to check&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;the correct path to the SAS executable in its PATH and how can i make changes in it ?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;whether&amp;nbsp;i need to change my code or server configuration ? Please advice/&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Log on to the server that is the target of the remote logon via SAS/CONNECT, and issue&lt;/P&gt;
&lt;PRE&gt;which sas&lt;/PRE&gt;
&lt;P&gt;there. This will reveal the absolute path to the SAS executable, &lt;EM&gt;if&lt;/EM&gt; the current user has it in its PATH environment variable.&lt;/P&gt;
&lt;P&gt;Take this whole fully qualified path name and use it in the sascmd= option.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 12:44:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-oracle-procedure-in-parallel-in-sas-macro/m-p/472959#M121312</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-06-25T12:44:47Z</dc:date>
    </item>
  </channel>
</rss>

