<?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: Error on count in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20551#M3418</link>
    <description>Hi: &lt;BR /&gt;
You did not say in your original post that this was a stored process. Are you sure that the LIBNAME statement is correct for a Stored Process that uses the metadata server? Are your Oracle tables defined in the metadata with the correct engine? Are you sure your Workspace server or Stored Process server can "talk" to the Oracle server? &lt;BR /&gt;
&lt;BR /&gt;
How did you build your stored process? From an EG project that was working or from an EG project that had errors reading the Oracle file? I believe, that in the Enterprise Intelligence Platform, there also could be some configuration and platform administration issues about which servers "know" about the location of the database tables and therefore, affect, which servers you choose to execute your stored process.&lt;BR /&gt;
 &lt;BR /&gt;
  To me, this seems to be a question best answered by SAS Tech Support.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
    <pubDate>Fri, 23 May 2008 15:12:22 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2008-05-23T15:12:22Z</dc:date>
    <item>
      <title>Error on count</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20547#M3414</link>
      <description>libname ODSP oracle path=odsp schema=xxxxx user=xxxxx password= XXXXXXXXXXX ;&lt;BR /&gt;
         &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
   proc sql;&lt;BR /&gt;
   select count(*) from fund_hierarchy;&lt;BR /&gt;
ERROR: File WORK.FUND_HIERARCHY.DATA does not exist.&lt;BR /&gt;
&lt;BR /&gt;
I am getting this error. I am interested to know the count of rows in FUND_HIERARCHY.  Please help

Message was edited by: Vanitha</description>
      <pubDate>Thu, 22 May 2008 21:18:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20547#M3414</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-05-22T21:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error on count</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20548#M3415</link>
      <description>Hi:&lt;BR /&gt;
  Is FUND_HIERARCHY a temporary dataset or a permanent SAS dataset? Could FUND_HIERARCHY be an Oracle table, perhaps in the Oracle database that you are pointing to in your LIBNAME statement?? &lt;BR /&gt;
&lt;BR /&gt;
  If FUND_HIERARCHY is an Oracle table, then you might need to refer to the SAS/Access documentation for Oracle for an example of accessing an Oracle table in your select statement:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/onlinedoc/91pdf/sasdoc_91/access_oracle_7367.pdf" target="_blank"&gt;http://support.sas.com/documentation/onlinedoc/91pdf/sasdoc_91/access_oracle_7367.pdf&lt;/A&gt; (see pages 4, 7 and 11)&lt;BR /&gt;
or look at these other references:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/30/591.html" target="_blank"&gt;http://support.sas.com/kb/30/591.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/forum2007/239-2007.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/forum2007/239-2007.pdf&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
If you are still having issues after consulting the documentation, then your best bet for help is to contact someone at your site who already uses SAS/Access to Oracle (who may have some sample code) or contact SAS Tech Support.&lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 22 May 2008 22:47:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20548#M3415</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-05-22T22:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Error on count</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20549#M3416</link>
      <description>you forgot to use the library you defined.&lt;BR /&gt;
[pre]&lt;BR /&gt;
... from ODSP.fund_hierarchy;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Fri, 23 May 2008 12:14:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20549#M3416</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-05-23T12:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: Error on count</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20550#M3417</link>
      <description>Thank you very much. &lt;BR /&gt;
I do have the libname statement to point to the oracle table. My stored process with this libname statement runs fine. I do not know why the following code gives error&lt;BR /&gt;
libname ODSP oracle path=odsp schema=odsmgr user=ods_view2 password= XXXXXXXXXXX ;&lt;BR /&gt;
ERROR: The ORACLE engine cannot be found.&lt;BR /&gt;
ERROR: Error in the LIBNAME statement.&lt;BR /&gt;
15         &lt;BR /&gt;
16         proc sql;&lt;BR /&gt;
17         select count(*) from odsp.fund_hierarchy;&lt;BR /&gt;
ERROR: Libname ODSP is not assigned.&lt;BR /&gt;
&lt;BR /&gt;
Any other suggestions are greatly appreciated.</description>
      <pubDate>Fri, 23 May 2008 13:47:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20550#M3417</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-05-23T13:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: Error on count</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20551#M3418</link>
      <description>Hi: &lt;BR /&gt;
You did not say in your original post that this was a stored process. Are you sure that the LIBNAME statement is correct for a Stored Process that uses the metadata server? Are your Oracle tables defined in the metadata with the correct engine? Are you sure your Workspace server or Stored Process server can "talk" to the Oracle server? &lt;BR /&gt;
&lt;BR /&gt;
How did you build your stored process? From an EG project that was working or from an EG project that had errors reading the Oracle file? I believe, that in the Enterprise Intelligence Platform, there also could be some configuration and platform administration issues about which servers "know" about the location of the database tables and therefore, affect, which servers you choose to execute your stored process.&lt;BR /&gt;
 &lt;BR /&gt;
  To me, this seems to be a question best answered by SAS Tech Support.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 23 May 2008 15:12:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20551#M3418</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-05-23T15:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error on count</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20552#M3419</link>
      <description>Ideas:&lt;BR /&gt;
&lt;BR /&gt;
1)  You don't have SAS/ACCESS for Oracle installed on the host running the code.&lt;BR /&gt;
2)  You don't have the Oracle client installed on the host running the code.&lt;BR /&gt;
3)  Both</description>
      <pubDate>Mon, 26 May 2008 14:53:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20552#M3419</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-05-26T14:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Error on count</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20553#M3420</link>
      <description>Hi Cynthia,&lt;BR /&gt;
&lt;BR /&gt;
Thank you very much. I will check with SAS Tech support.</description>
      <pubDate>Tue, 27 May 2008 13:31:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20553#M3420</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-05-27T13:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: Error on count</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20554#M3421</link>
      <description>Thank you very much. I will check with SAS Tech support.</description>
      <pubDate>Tue, 27 May 2008 13:32:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-on-count/m-p/20554#M3421</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-05-27T13:32:08Z</dc:date>
    </item>
  </channel>
</rss>

