<?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: Importing tables from Oracle database to SAS Visual Analytics in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/274033#M4445</link>
    <description>&lt;P&gt;It's not a production environment, is for training purposes.&lt;/P&gt;&lt;P&gt;Still, anyone has any idea on how to solve this problem?&lt;/P&gt;</description>
    <pubDate>Tue, 31 May 2016 07:00:02 GMT</pubDate>
    <dc:creator>Crysis85</dc:creator>
    <dc:date>2016-05-31T07:00:02Z</dc:date>
    <item>
      <title>Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/267998#M4064</link>
      <description>&lt;P&gt;&lt;SPAN&gt;The ultimate goal is to import tables from an Oracle Database to a SAS application (Visual Analytics) on the same local network but different machine. Remote connection to the Oracle Database works (so the parameters are correct). SAS/ACCESS is installed and licensed on the SAS server. When I try to import data from Oracle in Visual Analytics as described in the manual i get the following error&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class="lang-sql prettyprint prettyprinted"&gt;&lt;CODE&gt;&lt;SPAN class="pln"&gt;ERROR&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; Could &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;not&lt;/SPAN&gt; &lt;SPAN class="kwd"&gt;load&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;sas&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;sashome&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;SASFoundation&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;9.4&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;sasexe&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;sasora &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;65&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; images loaded&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;ERROR&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; libclntsh&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;so&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;.11.1&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; cannot &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;open&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; shared object &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;file&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; No such &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;file&lt;/SPAN&gt; &lt;SPAN class="kwd"&gt;or&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; directory&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;1&lt;/SPAN&gt;          
&lt;SPAN class="lit"&gt;2&lt;/SPAN&gt;          
&lt;SPAN class="com"&gt;/* ************************************************* */&lt;/SPAN&gt;
&lt;SPAN class="com"&gt;/* Assign the libref for the data in a Oracle table */&lt;/SPAN&gt;
&lt;SPAN class="com"&gt;/*
2        ! ************************************************* */&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;

LIBNAME db_ora ORACLE PRESERVE_COL_NAMES&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;YES&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;2&lt;/SPAN&gt;        &lt;SPAN class="pun"&gt;!&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; PRESERVE_TAB_NAMES&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;YES  PATH&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="str"&gt;"192.168.1.16:1521/orcl"&lt;/SPAN&gt; &lt;SPAN class="kwd"&gt;SCHEMA&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="str"&gt;"hs"&lt;/SPAN&gt; &lt;SPAN class="kwd"&gt;USER&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;system PASSWORD&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="str"&gt;"{sas002}F3E0253E3F9DE76035AD5101"&lt;/SPAN&gt;
&lt;SPAN class="lit"&gt;2&lt;/SPAN&gt;        &lt;SPAN class="pun"&gt;!&lt;/SPAN&gt;  &lt;SPAN class="pun"&gt;;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;

ERROR&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; The SAS&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;ACCESS Interface &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;to&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; ORACLE cannot be loaded&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; ERROR&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; Image SASORA   found but &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;not&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; loadable&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;..&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; 
Please make sure Oracle environment &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;is&lt;/SPAN&gt; &lt;SPAN class="kwd"&gt;set&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; correctly&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; 
Look &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;in&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; the install&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;Config doc &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;for&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; additional info &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;for&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; your platform&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; 
Other possible reasons &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;-&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; incomplete Oracle client install&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;,&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;32&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;64&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;-&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;bit mismatch &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;between&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; Oracle client &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; SAS&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;,&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; incorrect Oracle client 
       version&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;Oracle client must &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;match&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; the version picked during post-install process&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;),&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; incompatible sasora &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;for&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; your OS &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;or&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; its 
       attribs don&lt;/SPAN&gt;&lt;SPAN class="str"&gt;'&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;t permit SAS &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;to&lt;/SPAN&gt; &lt;SPAN class="kwd"&gt;load&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; it&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;ERROR&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; Error &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;in&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; the LIBNAME statement&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;
&lt;SPAN class="lit"&gt;3&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;          options VALIDVARNAME&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;ANY&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; VALIDMEMNAME&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;EXTEND&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;From what I understand googling around the SAS machine must have an oracle client correctly configured. How do I check if everything is ok? How do I locate the oracle client on the SAS server (if it's even installed)? Any kind of help would be tremendously appreciated. Thanks&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 16:44:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/267998#M4064</guid>
      <dc:creator>Crysis85</dc:creator>
      <dc:date>2016-05-03T16:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/268077#M4066</link>
      <description>Just follow the steps in the installation and configuration guide.</description>
      <pubDate>Tue, 03 May 2016 20:38:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/268077#M4066</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-05-03T20:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/268200#M4069</link>
      <description>&lt;P&gt;there is no mention neither of Oracle client nor SAS/ACCESS and how it works.&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 09:34:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/268200#M4069</guid>
      <dc:creator>Crysis85</dc:creator>
      <dc:date>2016-05-04T09:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/268222#M4070</link>
      <description>&lt;P&gt;So, tanking this one step of the time.&lt;/P&gt;&lt;PRE class=" prettyprint prettyprinted language-sql"&gt;&lt;CODE class=" language-sql"&gt;&lt;SPAN class="pln"&gt;ERROR&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; Could &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;not&lt;/SPAN&gt; &lt;SPAN class="kwd"&gt;load&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;sas&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;sashome&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;SASFoundation&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;9.4&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;sasexe&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;sasora &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;65&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; images loaded&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;ERROR&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; libclntsh&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;so&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;.11.1&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; cannot &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;open&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; shared object &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;file&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; No such &lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;file&lt;/SPAN&gt; &lt;SPAN class="kwd"&gt;or&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; directory&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Searching in the machine this file is located in&lt;/P&gt;&lt;P&gt;/sas/database/stage/ext/lib&lt;/P&gt;&lt;P&gt;and in&lt;/P&gt;&lt;P&gt;/home/oracle/app/oracle/product/11.2.0/dbhome_1/lib/&lt;/P&gt;&lt;P&gt;/home/oracle/app/oracle/pruduct/11.2.0/dbhome_1/inventory/Scripts/ext/lib&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i supposed the revelant one was the first so i set the environment variable for sasinst user (owner of the sas installation)&lt;/P&gt;&lt;P&gt;LD_LIBRARY_PATH to that location.&lt;/P&gt;&lt;P&gt;restarted the sas server (should i have to do that?) and still the same error appear "no such file or directory" for that library file.&lt;/P&gt;&lt;P&gt;Since I'm not the one who installed this machine, what can i do to check that the Oracle client here was installed correcly and it's working?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 09:29:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/268222#M4070</guid>
      <dc:creator>Crysis85</dc:creator>
      <dc:date>2016-05-04T09:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/268237#M4071</link>
      <description>&lt;P&gt;&lt;A href="https://support.sas.com/documentation/installcenter/en/ikfdtnunxcg/66380/PDF/default/config.pdf" target="_blank"&gt;https://support.sas.com/documentation/installcenter/en/ikfdtnunxcg/66380/PDF/default/config.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 10:43:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/268237#M4071</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-05-04T10:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/268296#M4074</link>
      <description>&lt;P&gt;Thanks, went trought all the "Configure SAS/ACCESS Interface to Oracle" but still nothing works&lt;/P&gt;&lt;P&gt;I still can't figure out if an Oracle client is installed on this machine.&lt;/P&gt;&lt;P&gt;There is what seems to be the partial installation of an oracle database SERVER located in /home/app/oracle/product/11.2.0/dbhome_1 but it's a mess. Not even the ORACLE_HOME env. variable is set (I did set it myself following this page&amp;nbsp;&lt;A href="http://support.sas.com/documentation/cdl/en/bidsag/68193/HTML/default/viewer.htm#p1w3v98qca3sfzn1rzty2tngrfyq.htm)" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/bidsag/68193/HTML/default/viewer.htm#p1w3v98qca3sfzn1rzty2tngrfyq.htm)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I'd like to install an oracle client from scratch by myself but the s.o of the machine hosting the sas server is RedHat6 (no subscription) and I can't install any software on it.&lt;/P&gt;&lt;P&gt;Do you have any suggestion?&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 15:18:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/268296#M4074</guid>
      <dc:creator>Crysis85</dc:creator>
      <dc:date>2016-05-04T15:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/268356#M4075</link>
      <description>You need to install something on your SAS server. I can't really value your system constraints.</description>
      <pubDate>Wed, 04 May 2016 18:50:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/268356#M4075</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-05-04T18:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/273878#M4432</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I still haven't solved this problem.&lt;/P&gt;&lt;P&gt;I managed to deploy the sas installation on a virtual machine with CentOS, so I could configure the oracle client properly.&lt;/P&gt;&lt;P&gt;Tested it with SQLPLUS on the same sas machine and it works like a charm.&lt;/P&gt;&lt;P&gt;Still when I try to import data using SAS/ACCESS i get the error&lt;/P&gt;&lt;PRE&gt; Linux LIN X64 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 CentOS Linux release 7.2.1511 (Core)  

You are running SAS 9. Some SAS 8 files will be automatically converted 
by the V9 engine; others are incompatible.  Please see 
http://support.sas.com/rnd/migration/planning/platform/64bit.html

PROC MIGRATE will preserve current SAS file attributes and is 
recommended for converting all your SAS libraries from any 
SAS 8 release to SAS 9.  For details and examples, please see
http://support.sas.com/rnd/migration/index.html


This message is contained in the SAS news file, and is presented upon
initialization.  Edit the file "news" in the "misc/base" directory to
display site-specific news and information in the program log.
The command line option "-nonews" will prevent this display.




NOTE: SAS Initialization used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      
NOTE: The autoexec file, /sas/config/Lev1/SASApp/WorkspaceServer/autoexec.sas, was executed at server initialization.
1          
2                                                          The SAS System                                 11:24 Monday, May 30, 2016


1                                                          The SAS System                                 11:24 Monday, May 30, 2016

ERROR: Could not load /sas/sashome/SASFoundation/9.4/sasexe/sasora (63 images loaded)
ERROR: libclntsh.so.11.1: cannot open shared object file: No such file or directory
1          
2          
/* ************************************************* */
/* Assign the libref for the data in a Oracle table */
/*
2        ! ************************************************* */


LIBNAME db_ora ORACLE PRESERVE_COL_NAMES=YES
2        ! PRESERVE_TAB_NAMES=YES  PATH="oracle_test" USER=system PASSWORD="{sas002}F3E0253E3F9DE76035AD5101" ;


ERROR: The SAS/ACCESS Interface to ORACLE cannot be loaded. ERROR: Image SASORA   found but not loadable.. 
Please make sure Oracle environment is set correctly. 
Look in the install/Config doc for additional info for your platform. 
Other possible reasons - incomplete Oracle client install, 32/64-bit mismatch between Oracle client &amp;amp; SAS, incorrect Oracle client 
       version(Oracle client must match the version picked during post-install process), incompatible sasora for your OS or its 
       attribs don't permit SAS to load it.
ERROR: Error in the LIBNAME statement.
3          options VALIDVARNAME=ANY VALIDMEMNAME=EXTEND;&lt;/PRE&gt;</description>
      <pubDate>Mon, 30 May 2016 09:25:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/273878#M4432</guid>
      <dc:creator>Crysis85</dc:creator>
      <dc:date>2016-05-30T09:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/273943#M4433</link>
      <description>If your is to prepare for a production environment you should choose a supported platform. For Linux it means the enterprise editions of Red Hat or Suse.&lt;BR /&gt;&lt;A href="http://support.sas.com/kb/43/233.html" target="_blank"&gt;http://support.sas.com/kb/43/233.html&lt;/A&gt;</description>
      <pubDate>Mon, 30 May 2016 17:51:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/273943#M4433</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-05-30T17:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/274033#M4445</link>
      <description>&lt;P&gt;It's not a production environment, is for training purposes.&lt;/P&gt;&lt;P&gt;Still, anyone has any idea on how to solve this problem?&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 07:00:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/274033#M4445</guid>
      <dc:creator>Crysis85</dc:creator>
      <dc:date>2016-05-31T07:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/274055#M4446</link>
      <description>&lt;P&gt;Did you see this support note - it looks like your error?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/11/728.html" target="_blank"&gt;http://support.sas.com/kb/11/728.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 09:50:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/274055#M4446</guid>
      <dc:creator>TriciaAanderud</dc:creator>
      <dc:date>2016-05-31T09:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/274060#M4447</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Yes I stumbled upon this page before, I checked all the environment variables and seem to be correct.&lt;/P&gt;&lt;P&gt;Plus, on the same system I connected to the Oracle database using sqlplus so I'm guessing the client installation, connection parameters and env. variables are set up correctly.&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 10:18:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/274060#M4447</guid>
      <dc:creator>Crysis85</dc:creator>
      <dc:date>2016-05-31T10:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/274062#M4448</link>
      <description>Maybe you should try asking this question in the Admin/Install section. This&lt;BR /&gt;issues seems less about SAS VA and more about SAS 9.4/Oracle Access.&lt;BR /&gt;&lt;BR /&gt;##- Please type your reply above this line. Simple formatting, no&lt;BR /&gt;attachments. -##</description>
      <pubDate>Tue, 31 May 2016 10:26:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/274062#M4448</guid>
      <dc:creator>TriciaAanderud</dc:creator>
      <dc:date>2016-05-31T10:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Importing tables from Oracle database to SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/274067#M4450</link>
      <description>&lt;P&gt;Turns out the old adage "Have you tried turning it off and on again?" works sometimes.&lt;/P&gt;&lt;P&gt;Yesterday I corrected the environment variable LD_LIBRARY_PATH that pointed to a wrong folder but didn't restart the system. SQLPlus worked so I didn't worry about it.&lt;/P&gt;&lt;P&gt;Now that I did reboot, it works and i managed to import tables from a remote database.&lt;/P&gt;&lt;P&gt;Thanks for the help everyone.&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 11:08:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Importing-tables-from-Oracle-database-to-SAS-Visual-Analytics/m-p/274067#M4450</guid>
      <dc:creator>Crysis85</dc:creator>
      <dc:date>2016-05-31T11:08:31Z</dc:date>
    </item>
  </channel>
</rss>

