<?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 ORACLE CONNECTION ENABLE IN SAS EG in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ORACLE-CONNECTION-ENABLE-IN-SAS-EG/m-p/812936#M40674</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
connect to oracle (user=myusr1 password=mypwd1);
select *
   from connection to oracle
     (select *       from  table
      
    disconnect from oracle;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;How to enable oracle engine in and connect in SAS EG IN SAS ON DEMAND&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 12 May 2022 12:42:55 GMT</pubDate>
    <dc:creator>BrahmanandaRao</dc:creator>
    <dc:date>2022-05-12T12:42:55Z</dc:date>
    <item>
      <title>ORACLE CONNECTION ENABLE IN SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ORACLE-CONNECTION-ENABLE-IN-SAS-EG/m-p/812936#M40674</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
connect to oracle (user=myusr1 password=mypwd1);
select *
   from connection to oracle
     (select *       from  table
      
    disconnect from oracle;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;How to enable oracle engine in and connect in SAS EG IN SAS ON DEMAND&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 12:42:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ORACLE-CONNECTION-ENABLE-IN-SAS-EG/m-p/812936#M40674</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2022-05-12T12:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE CONNECTION ENABLE IN SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ORACLE-CONNECTION-ENABLE-IN-SAS-EG/m-p/812942#M40675</link>
      <description>&lt;P&gt;On Demand does not provide SAS/ACCESS to Oracle.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS: you determine this by running PROC SETINIT.&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 14:18:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ORACLE-CONNECTION-ENABLE-IN-SAS-EG/m-p/812942#M40675</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-05-12T14:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE CONNECTION ENABLE IN SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ORACLE-CONNECTION-ENABLE-IN-SAS-EG/m-p/813149#M40681</link>
      <description>&lt;P&gt;which database can we&amp;nbsp; connect Mysql&amp;nbsp; can enable in SAS EG&amp;nbsp; in SAS ondemand&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 09:27:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ORACLE-CONNECTION-ENABLE-IN-SAS-EG/m-p/813149#M40681</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2022-05-13T09:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE CONNECTION ENABLE IN SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ORACLE-CONNECTION-ENABLE-IN-SAS-EG/m-p/813155#M40682</link>
      <description>&lt;P&gt;&lt;EM&gt;proc setinit; run;&lt;/EM&gt; will tell you what's licensed&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;proc product_status&lt;/EM&gt;; run will tell you what's installed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If SAS/Access to ODBC is installed then you should "theoretically" be able to connect to Oracle once you've done all the configuration work. But not sure what sort of connectivity the SAS On Demand version allows.&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 09:46:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ORACLE-CONNECTION-ENABLE-IN-SAS-EG/m-p/813155#M40682</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2022-05-13T09:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE CONNECTION ENABLE IN SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ORACLE-CONNECTION-ENABLE-IN-SAS-EG/m-p/813177#M40683</link>
      <description>&lt;P&gt;And if a suitable module is found, the&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/pgmsasacwlcm/home.htm" target="_blank" rel="noopener"&gt;documentation&lt;/A&gt;&amp;nbsp;will tell you how to use it. Oracle, MySQL and a slew of others fall under "Relational Databases".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mind that connecting to databases is way beyond trivial; it takes thorough knowledge of the DB in question and the necessary SAS parts. On top of that, a client for the DB in question must be installed and configured on the SAS server.&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 11:10:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ORACLE-CONNECTION-ENABLE-IN-SAS-EG/m-p/813177#M40683</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-05-13T11:10:02Z</dc:date>
    </item>
  </channel>
</rss>

