<?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: ORACLE prepare error: ORA-00972 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293655#M61180</link>
    <description>&lt;P&gt;ORA-00972 points to a name that is too long (more than thirty characters).&lt;/P&gt;
&lt;P&gt;Company_FSA_Firm_Reference_Number and Principal_FSA_Firm_Reference_Number have more than thirty characters.&lt;/P&gt;
&lt;P&gt;Verify that the names are correctly written.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Aug 2016 10:30:06 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2016-08-24T10:30:06Z</dc:date>
    <item>
      <title>ORACLE prepare error: ORA-00972</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293648#M61174</link>
      <description>&lt;P&gt;Hi, I get this error when connecting to Oracle and running the SQL code, any idea why this is please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SELECT Case when AGENT.Authorisation_Type = 1 &lt;BR /&gt;then 'AR' &lt;BR /&gt;else 'DA' &lt;BR /&gt;end as Authorisation,&lt;BR /&gt;MORTGAGE_APPLICATION.Transact_Number,&lt;BR /&gt;MORTGAGE_APPLICATION.Application_Number, &lt;BR /&gt; MORTGAGE_APPLICATION.SAM_Account_Number, &lt;BR /&gt; APPLICATION_CASE_DETAILS.Case_Number, &lt;BR /&gt; APPLICATION_CASE_DETAILS.Agent_Id, &lt;BR /&gt; COMPANY.Business_Type, &lt;BR /&gt; COMPANY.Company_FSA_Firm_Reference_Number, &lt;BR /&gt; COMPANY.Principal_FSA_Firm_Reference_Number, &lt;BR /&gt; APPLICATION_CASE_DETAILS.Loan_Amount, &lt;BR /&gt; APPLICATION_CASE_DETAILS.Loan_Type_Id, &lt;BR /&gt; MORTGAGE_APPLICATION.Transact_Decision, &lt;BR /&gt; MORTGAGE_APPLICATION.Date_AIP_Submitted, &lt;BR /&gt; AGENT.First_Name, &lt;BR /&gt; AGENT.Last_Name, &lt;BR /&gt; APPLICATION_CASE_DETAILS.Main_Applicant_First_Name, &lt;BR /&gt; APPLICATION_CASE_DETAILS.Main_Applicant_Last_Name, &lt;BR /&gt; PRODUCT.Product_Code, &lt;BR /&gt; COMPANY.Registered_Company_Name &lt;BR /&gt; FROM APPLICATION_CASE_DETAILS, &lt;BR /&gt; APPLICATION_PRODUCT, &lt;BR /&gt; MORTGAGE_APPLICATION, &lt;BR /&gt; PRODUCT, &lt;BR /&gt; AGENT, &lt;BR /&gt; COMPANY, &lt;BR /&gt; (select min(Product_Order) FirstProd, &lt;BR /&gt; Fk_Application_Number &lt;BR /&gt; from Application_Product&lt;BR /&gt; Group By Fk_Application_Number) OneProduct &lt;BR /&gt; WHERE OneProduct.Fk_Application_Number=MORTGAGE_APPLICATION.Application_Number &lt;BR /&gt; AND OneProduct.FirstProd = APPLICATION_PRODUCT.Product_Order&lt;BR /&gt;AND OneProduct.Fk_Application_Number = APPLICATION_PRODUCT.Fk_Application_Number&lt;BR /&gt;AND APPLICATION_PRODUCT.Fk_Product=PRODUCT.Pk &lt;BR /&gt; AND APPLICATION_CASE_DETAILS.Case_Number=MORTGAGE_APPLICATION.Case_Number &lt;BR /&gt; AND APPLICATION_CASE_DETAILS.Agent_Id=AGENT.Agent_Id &lt;BR /&gt; AND AGENT.Company_Id=COMPANY.Company_Id &lt;BR /&gt; AND MORTGAGE_APPLICATION.Internal_User=0 &lt;BR /&gt; AND NOT (MORTGAGE_APPLICATION.Date_AIP_Submitted&amp;lt;{ts '1899-12-30 00:00:00'}) &lt;BR /&gt; AND NOT (MORTGAGE_APPLICATION.Status_Code='AipCancelledforCNRUseOnly' &lt;BR /&gt; OR MORTGAGE_APPLICATION.Status_Code='AipDuplicate' &lt;BR /&gt; OR MORTGAGE_APPLICATION.Status_Code='AipError' &lt;BR /&gt; OR MORTGAGE_APPLICATION.Status_Code='AipIncomplete' &lt;BR /&gt; OR MORTGAGE_APPLICATION.Status_Code='AipSubmitted') &lt;BR /&gt; AND (APPLICATION_CASE_DETAILS.Case_Item_Type=1 &lt;BR /&gt; OR APPLICATION_CASE_DETAILS.Case_Item_Type=2) &lt;BR /&gt; AND NOT (COMPANY.Company_Id=2 &lt;BR /&gt; OR COMPANY.Company_Id=3) &lt;BR /&gt;AND MORTGAGE_APPLICATION.Transact_Action='CREDITBUREAUDECISION'&lt;BR /&gt;AND COMPANY.Fk_Channel = 1&lt;BR /&gt;AND MORTGAGE_APPLICATION.Date_AIP_Submitted &amp;gt;='2014-04-01'&lt;BR /&gt;AND COMPANY.Company_Id &amp;lt;&amp;gt; 26203&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt; );&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: ORACLE prepare error: ORA-00972: identifier is too long. SQL statement: SELECT Case when AGENT.Authorisation_Type = 1 then &lt;BR /&gt; 'AR' else 'DA' end as Authorisation, MORTGAGE_APPLICATION.Transact_Number, MORTGAGE_APPLICATION.Application_Number, &lt;BR /&gt; MORTGAGE_APPLICATION.SAM_Account_Number, APPLICATION_CASE_DETAILS.Case_Number, APPLICATION_CASE_DETAILS.Agent_Id, &lt;BR /&gt; COMPANY.Business_Type, COMPANY.Company_FSA_Firm_Reference_Number, COMPANY.Principal_FSA_Firm_Reference_Number, &lt;BR /&gt; APPLICATION_CASE_DETAILS.Loan_Amount, APPLICATION_CASE_DETAILS.Loan_Type_Id, MORTGAGE_APPLICATION.Transact_Decision, &lt;BR /&gt; MORTGAGE_APPLICATION.Date_AIP_Submitted, AGENT.First_Name, AGENT.Last_Name, &lt;BR /&gt; APPLICATION_CASE_DETAILS.Main_Applicant_First_Name, APPLICATION_CASE_DETAILS.Main_Applicant_Last_Name, PRODUCT.Product_Code, &lt;BR /&gt; COMPANY.Registered_Company_Name FROM APPLICATION_CASE_DETAILS, APPLICATION_PRODUCT, MORTGAGE_APPLICATION, PRODUCT, AGENT, &lt;BR /&gt; COMPANY, (select min(Product_Order) FirstProd, Fk_Application_Number from Application_Product Group By &lt;BR /&gt; Fk_Application_Number) OneProduct WHERE OneProduct.Fk_Application_Number=MORTGAGE_APPLICATION.Application_Number AND &lt;BR /&gt; OneProduct.FirstProd = APPLICATION_PRODUCT.Product_Order AND OneProduct.Fk_Application_Number = &lt;BR /&gt; APPLICATION_PRODUCT.Fk_Application_Number AND APPLICATION_PRODUCT.Fk_Product=PRODUCT.Pk AND &lt;BR /&gt; APPLICATION_CASE_DETAILS.Case_Number=MORTGAGE_APPLICATION.Case_Number AND APPLICATION_CASE_DETAILS.Agent_Id=AGENT.Agent_Id &lt;BR /&gt; AND AGENT.Company_Id=COMPANY.Company_Id AND MORTGAGE_APPLICATION.Internal_User=0 AND NOT &lt;BR /&gt; (MORTGAGE_APPLICATION.Date_AIP_Submitted&amp;lt;{ts '1899-12-30 00:00:00'}) AND NOT &lt;BR /&gt; (MORTGAGE_APPLICATION.Status_Code='AipCancelledforCNRUseOnly' OR MORTGAGE_APPLICATION.Status_Code='AipDuplicate' OR &lt;BR /&gt; MORTGAGE_APPLICATION.Status_Code='AipError' OR MORTGAGE_APPLICATION.Status_Code='AipIncomplete' OR &lt;BR /&gt; MORTGAGE_APPLICATION.Status_Code='AipSubmitted') AND (APPLICATION_CASE_DETAILS.Case_Item_Type=1 OR &lt;BR /&gt; APPLICATION_CASE_DETAILS.Case_Item_Type=2) AND NOT (COMPANY.Company_Id=2 OR COMPANY.Company_Id=3) AND &lt;BR /&gt; MORTGAGE_APPLICATION.Transact_Action='CREDITBUREAUDECISION' AND COMPANY.Fk_Channel = 1 AND &lt;BR /&gt; MORTGAGE_APPLICATION.Date_AIP_Submitted &amp;gt;='2014-04-01' AND COMPANY.Company_Id &amp;lt;&amp;gt; 26203.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2016 09:47:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293648#M61174</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2016-08-24T09:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE prepare error: ORA-00972</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293652#M61177</link>
      <description>&lt;P&gt;That's long...and not all the code.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Delete half of,the code at a time until you find where the error is, then once you have it isolated you can fix it from there.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2016 09:57:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293652#M61177</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-08-24T09:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE prepare error: ORA-00972</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293653#M61178</link>
      <description>&lt;P&gt;That is all of the code. I have played around with the code but still keep getting the error&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2016 10:20:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293653#M61178</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2016-08-24T10:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE prepare error: ORA-00972</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293655#M61180</link>
      <description>&lt;P&gt;ORA-00972 points to a name that is too long (more than thirty characters).&lt;/P&gt;
&lt;P&gt;Company_FSA_Firm_Reference_Number and Principal_FSA_Firm_Reference_Number have more than thirty characters.&lt;/P&gt;
&lt;P&gt;Verify that the names are correctly written.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2016 10:30:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293655#M61180</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-08-24T10:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE prepare error: ORA-00972</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293657#M61181</link>
      <description>&lt;P&gt;There is a fair few problems in that code, a couple of examples:&lt;BR /&gt;- some of the code is missing&lt;/P&gt;
&lt;P&gt;- the final and statement encompasses the whole of the last block of code without a terminating )&lt;/P&gt;
&lt;P&gt;- Not sure if this is valid&amp;nbsp;&lt;SPAN&gt;{ts '1899-12-30 00:00:00'}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- There is a date value used, with no indication that its a date:&amp;nbsp;Date_AIP_Submitted &amp;gt;='2014-04-01'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Just some things I noticed when I tried to apply some sort of formatting to that mass of text. &amp;nbsp;Some other tips, you can select from with a where clause in your from statement - called subquerying, avoids a lot of unecessary where parts. &amp;nbsp;Also you can us in() rather than specfying each bit as a where. &amp;nbsp;I have updated your code somewhat below to make it readable, and applied some fixes. &amp;nbsp;I would however start by identifying in each of the incoming datasets what information you want to keep - this then forms each of the sub-queries that go into your main where clause. &amp;nbsp;You also look at how you want to join these tables.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc sql;
  connect to oracle (...);
  create table WANT as
  select * from connection to oracle (
    select  case  when AGENT.AUTHORISATION_TYPE = 1 then 'AR' 
                  else 'DA' end as AUTHORISATION,
            MORTGAGE_APPLICATION.TRANSACT_NUMBER,
            MORTGAGE_APPLICATION.APPLICATION_NUMBER, 
            MORTGAGE_APPLICATION.SAM_ACCOUNT_NUMBER, 
            APPLICATION_CASE_DETAILS.CASE_NUMBER, 
            APPLICATION_CASE_DETAILS.AGENT_ID, 
            COMPANY.BUSINESS_TYPE, 
            COMPANY.COMPANY_FSA_FIRM_REFERENCE_NUMBER, 
            COMPANY.PRINCIPAL_FSA_FIRM_REFERENCE_NUMBER, 
            APPLICATION_CASE_DETAILS.LOAN_AMOUNT, 
            APPLICATION_CASE_DETAILS.LOAN_TYPE_ID, 
            MORTGAGE_APPLICATION.TRANSACT_DECISION, 
            MORTGAGE_APPLICATION.DATE_AIP_SUBMITTED, 
            AGENT.FIRST_NAME, 
            AGENT.LAST_NAME, 
            APPLICATION_CASE_DETAILS.MAIN_APPLICANT_FIRST_NAME, 
            APPLICATION_CASE_DETAILS.MAIN_APPLICANT_LAST_NAME, 
            PRODUCT.PRODUCT_CODE, 
            COMPANY.REGISTERED_COMPANY_NAME 
    from    (select * from APPLICATION_CASE_DETAILS where CASE_ITEM_TYPE in (1,2)) APPLICATION_CASE_DETAILS, 
            APPLICATION_PRODUCT, 
            (select * from MORTGAGE_APPLICATION
              where MORTGAGE_APPLICATION.DATE_AIP_SUBMITTED &amp;gt; {ts '1899-12-30 00:00:00'}
                and STATUS_CODE not in ('AipCancelledforCNRUseOnly','AipDuplicate','AipError','AipIncomplete','AipSubmitted')
                and TRANSACT_ACTION='CREDITBUREAUDECISION'
                and DATE_AIP_SUBMITTED &amp;gt;='2014-04-01'd
                and INTERNAL_USER=0
            ) MORTGAGE_APPLICATION, 
            PRODUCT, 
            AGENT, 
            (select * from COMPANY where COMPANY_ID not in (2,3,26203) and FK_CHANNEL=1) COMPANY, 
            (select min(PRODUCT_ORDER) FIRSTPROD, 
                    FK_APPLICATION_NUMBER 
             from Application_Product
             Group By Fk_Application_Number) ONEPRODUCT 
    where   ONEPRODUCT.FK_APPLICATION_NUMBER=MORTGAGE_APPLICATION.APPLICATION_NUMBER 
        and ONEPRODUCT.FIRSTPROD = APPLICATION_PRODUCT.PRODUCT_ORDER
        and ONEPRODUCT.FK_APPLICATION_NUMBER = APPLICATION_PRODUCT.FK_APPLICATION_NUMBER
        and APPLICATION_PRODUCT.FK_PRODUCT=PRODUCT.PK 
        and APPLICATION_CASE_DETAILS.CASE_NUMBER=MORTGAGE_APPLICATION.CASE_NUMBER 
        and APPLICATION_CASE_DETAILS.AGENT_ID=AGENT.AGENT_ID 
        and AGENT.COMPANY_ID=COMPANY.COMPANY_ID 
  );
  disconnect from oracle;
quit;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Aug 2016 10:36:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293657#M61181</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-08-24T10:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE prepare error: ORA-00972</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293659#M61183</link>
      <description>&lt;P&gt;Why would this code run on fine on a Crystal Report but not when connected to Oracle via SAS?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2016 10:38:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293659#M61183</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2016-08-24T10:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE prepare error: ORA-00972</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293661#M61185</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/188367"&gt;@Brandon16&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Why would this code run on fine on a Crystal Report but not when connected to Oracle via SAS?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Are you sure your connecting to Oracle and specifying your query correctly?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As indicated you haven't posted all of your code.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2016 10:44:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293661#M61185</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-08-24T10:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE prepare error: ORA-00972</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293668#M61191</link>
      <description>&lt;P&gt;Then look what Crystal Reports actually does and how it connects to Oracle. Oracle does not allow names longer than thirty characters. Just google ORA-00972.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2016 11:00:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293668#M61191</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-08-24T11:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE prepare error: ORA-00972</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293670#M61192</link>
      <description>&lt;P&gt;PS I have no idea about Crystal Reports, but it might let you use column labels instead of column names to address columns.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2016 11:10:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293670#M61192</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-08-24T11:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE prepare error: ORA-00972</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293711#M61199</link>
      <description>&lt;P&gt;Any code placed within a SQL pass through block is the headache&amp;nbsp;for Oracle, SAS has no part in it.&lt;/P&gt;
&lt;P&gt;So direct any concerns about your SQL to your DBA, or the person who developed it for you.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2016 13:46:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293711#M61199</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-08-24T13:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE prepare error: ORA-00972</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293712#M61200</link>
      <description>&lt;P&gt;Any code placed within a SQL pass through block is the headache&amp;nbsp;for Oracle, SAS has no part in it.&lt;/P&gt;
&lt;P&gt;So direct any concerns about your SQL to your DBA, or the person who developed it for you.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2016 13:46:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/293712#M61200</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-08-24T13:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE prepare error: ORA-00972</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/294320#M61396</link>
      <description>&lt;P&gt;Yes, the connection to Oracle is working fine as I have had to run other reports on this connection. It's just this one that is casuing me an issue. This is all of the code from a Crystal report and I have just dumped it into SAS.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2016 09:41:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/294320#M61396</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2016-08-26T09:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: ORACLE prepare error: ORA-00972</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/294330#M61400</link>
      <description>&lt;P&gt;Instead of just taking the code from the external tool and copy it into SAS, I'd rather rebuild it there. Look how the tables are represented in the library defined on the Oracle connection (use pro contents etc), and then apply the logic to that.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2016 10:10:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ORACLE-prepare-error-ORA-00972/m-p/294330#M61400</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-08-26T10:10:30Z</dc:date>
    </item>
  </channel>
</rss>

