<?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: What is the Code We Use to Connect to Oracle Database from SAS In Unix Environment &amp; Windowing Environment in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/What-is-the-Code-We-Use-to-Connect-to-Oracle-Database-from-SAS/m-p/151545#M39897</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you for your answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Mar 2014 03:50:52 GMT</pubDate>
    <dc:creator>chittamsri1_gmail_com</dc:creator>
    <dc:date>2014-03-24T03:50:52Z</dc:date>
    <item>
      <title>What is the Code We Use to Connect to Oracle Database from SAS In Unix Environment &amp; Windowing Environment</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/What-is-the-Code-We-Use-to-Connect-to-Oracle-Database-from-SAS/m-p/151541#M39893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the Code We Use to Connect to Oracle Database from SAS In Unix Environment &amp;amp; Windowing Environment &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLease give me the reply &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* i have all the information in oracle database .I want to get that information from oracle database and i want to work in SAS ENVIRONMENT .Please tell me the code for this .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 03:45:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/What-is-the-Code-We-Use-to-Connect-to-Oracle-Database-from-SAS/m-p/151541#M39893</guid>
      <dc:creator>chittamsri1_gmail_com</dc:creator>
      <dc:date>2014-03-21T03:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: What is the Code We Use to Connect to Oracle Database from SAS In Unix Environment &amp; Windowing Environment</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/What-is-the-Code-We-Use-to-Connect-to-Oracle-Database-from-SAS/m-p/151542#M39894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read the xxxx manual: &lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/66787/HTML/default/viewer.htm#p1ujrhdoe1p743n12awcf7mwyg81.htm" title="http://support.sas.com/documentation/cdl/en/acreldb/66787/HTML/default/viewer.htm#p1ujrhdoe1p743n12awcf7mwyg81.htm"&gt;SAS/ACCESS(R) 9.4 for Relational Databases: Reference, Third Edition&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 07:20:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/What-is-the-Code-We-Use-to-Connect-to-Oracle-Database-from-SAS/m-p/151542#M39894</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2014-03-21T07:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: What is the Code We Use to Connect to Oracle Database from SAS In Unix Environment &amp; Windowing Environment</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/What-is-the-Code-We-Use-to-Connect-to-Oracle-Database-from-SAS/m-p/151543#M39895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to have the connection information, then you can either do it directly or through pass through:&lt;/P&gt;&lt;P&gt;Directly:&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connect to oracle (path=dddd user=aaa orapw=cccc);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table work.test as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select * from connection to oracle (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; disconnect from oracle;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass-through:&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connect to oracle (path=dddd user=aaa orapw=cccc);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; execute (drop table A_TABLE) by oracle;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; execute (commit) by oracle;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; disconnect from oracle;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 09:25:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/What-is-the-Code-We-Use-to-Connect-to-Oracle-Database-from-SAS/m-p/151543#M39895</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-03-21T09:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: What is the Code We Use to Connect to Oracle Database from SAS In Unix Environment &amp; Windowing Environment</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/What-is-the-Code-We-Use-to-Connect-to-Oracle-Database-from-SAS/m-p/151544#M39896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just to be clear about the concepts. Both these examples are usually defined as &lt;EM&gt;Explicit SQL Pass-thru&lt;/EM&gt; - you explicitly write native DBMS specific SQL.&lt;/P&gt;&lt;P&gt;You can use SAS programs to access a libref that points to DBMS schema. The part of the SAS logic that the SAS/ACCESS libname engine can transform to native DBMS SQL will be automatically sent to the DBMS for processing. This is true for both SAS SQL, PROC's and Data step, in the later mainly WHERE-clauses. This is known as&lt;EM&gt; Implicit SQL pass-thru&lt;/EM&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 09:51:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/What-is-the-Code-We-Use-to-Connect-to-Oracle-Database-from-SAS/m-p/151544#M39896</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2014-03-21T09:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: What is the Code We Use to Connect to Oracle Database from SAS In Unix Environment &amp; Windowing Environment</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/What-is-the-Code-We-Use-to-Connect-to-Oracle-Database-from-SAS/m-p/151545#M39897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you for your answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2014 03:50:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/What-is-the-Code-We-Use-to-Connect-to-Oracle-Database-from-SAS/m-p/151545#M39897</guid>
      <dc:creator>chittamsri1_gmail_com</dc:creator>
      <dc:date>2014-03-24T03:50:52Z</dc:date>
    </item>
  </channel>
</rss>

