Questions tagged [instantclient]

The Oracle Instant Client is an easy to install client for Oracle Databases utilizing the Oracle Call Interface (OCI)

145 questions
0
votes
1 answer

dockerfile - NJS-045: cannot load the oracledb add-on binary for Node.js 10.16.0 (linux, x64)

I am behind a corporate firewall and I have a node.js application to deploy on Openshift container via a docker image. The application requires oracledb add-on binaries - Oracle InstantClient packages to be configured on the server. I have following…
Ayush Kumar
  • 833
  • 2
  • 13
  • 30
0
votes
2 answers

Logged into docker hub, but cannot pull Oracle Instant Client image

I have this in a Dockerfile: FROM oracle/instantclient:12.2.0.1 when I tried to build I get: Step 3/26 : FROM oracle/instantclient:12.2.0.1 pull access denied for oracle/instantclient, repository does not exist or may require 'docker login' I…
Alexander Mills
  • 90,741
  • 139
  • 482
  • 817
0
votes
1 answer

Xcode link binary with libraries and unexpected file type

I want to use Oracle instantclient libraries for C++. I use Xcode as an IDE. I added the occi library by Project > Build Phase > Link binary with libraries. I am having the following warning and error at compilation. warning: skipping file…
pmo
  • 11
  • 1
0
votes
0 answers

PHP Startup: Unable to load dynamic library 'pdo_oci'

I have the following problem. When I execute a PHP command for example php --version I obtain the following: **PHP Warning: PHP Startup: Unable to load dynamic library 'oci8_11g'** (tried: C:\xampp\php\ext\oci8_11g (No se puede encontrar el m¾dulo…
0
votes
1 answer

Tell me how to access OracleDB from Raspberry Pi through QUERY

The problem is the link between raspberry pie and Oracle database. We've tried a lot of things now, but the problem isn't solved. After downloading the oracleinstantclient-32bit Basic files and sqlplus files via the web from the raspberry pie,…
0
votes
2 answers

DatabaseError: DPI-1047

I’m having an issue with instantclient. I was following the exact instructions in the http://www.oracle.com/technetwork/topics/intel-macsoft-096467.html#ic_osx_inst to install Instant Client 11.2 on macOS. However, when starting the server in…
user248462
  • 85
  • 1
  • 5
0
votes
1 answer

How do create ODBC data source by using oracle instant client?

As I knew, Oracle Instant Client is free from OTN for anyone to use in a development or production environment. But in order to create a ODBC data source on windows, i need a tns service name? How can I create odbc data source on windows os by…
Oktaheta
  • 606
  • 5
  • 21
0
votes
0 answers

Laravel 5.6 OCI works fine with "php artisan serve" but Nginx can not find oci_connect()

I am trying to set up Laravel 5.6 + PHP 7.2 (with Instantclient 12.2 and oracle OCI) + Nginx on Ubuntu 18.2. Also, I have installed "yajra/laravel-oci8": "^5.6" for Laravel. To make sure I have instantclient installed correctly, I also tried sqlplus…
Dean Chiu
  • 1,325
  • 1
  • 13
  • 13
0
votes
1 answer

cx_Oracle does not work with Oracle database 10gR2

using python3.6 I have installed cx_Oracle 6.4.1 and the instantclient for Oracle 10gR2 (basic-10.2.0.5.0-linux-x64) but it doesn't work. In previous releases of cx_Oracle it used to connect with 10gR2 databases but now it seems not to be supported…
Ces_lab3
  • 25
  • 3
0
votes
3 answers

'oracledb' Oracle Client Library errors ( Error: NJS-045 and other errors)

I have installed the oracledb library to my project folder by using the command 'npm i oracledb --s' it has successfully installed, and it is in the folder 'node_modules' inside my project. Inside the project folder, I also have the 'instantclient'…
Spencer
  • 9
  • 1
  • 1
  • 3
0
votes
0 answers

Unable to connect using instant client SQL*Plus

I am trying to connect to Oracle using SQL*Plus from Oracle instant client 12.2 but it keeps failing. # export LD_LIBRARY_PATH=/root/oracle/instantclient_12_2 # ./sqlplus USERNAME/PASSWORD@remotehost.ancd.com:1881/TEST1.ancd.com SQL*Plus: Release…
Anand Abhay
  • 349
  • 1
  • 3
  • 10
0
votes
2 answers

Python cx_Oracle "32-bit Oracle Client library cannot be loaded: "The specified module could not be found""

I downloaded the Oracle Instant Client and specified the Path in environment variable as in the first screenshot. cx_Oracle is imported successfully as shown in the second screenshot. I was trying to connect to Oracle DB hosted in AWS using the…
Alen Liu
  • 1
  • 1
  • 1
0
votes
1 answer

ROracle not loading Instantclient library on MacOS High Sierra

I have installed Oracle Instant Client 12.1.0.2.0 and am now trying to install ROracle 1.3-1 for R with the following command: R CMD INSTALL --configure-args='--with-oci-lib=/usr/local/oracle/instantclient12…
ejames
  • 428
  • 4
  • 10
0
votes
1 answer

PHP not recognizing where oci8.so was installed

I'm attempting to install oci8 with PHP 7.1. I am following the instructions here: http://www.oracle.com/technetwork/articles/technote-php-instant-084410.html I have: debian 8.8 php 7.1 instant client installed in /opt/instantclient_12_2 pecl…
Ryan Price
  • 315
  • 6
  • 17
0
votes
1 answer

Value in cx_Oracle.OBJECT missing

I have a custom type in oracle (lro_dummy). I have also a procedure. I looks like this: procedure dummyLro ( i_dummy in lro_dummy, o_dummy out lro_dummy )is begin o_dummy := lro_dummy('asdf'); end dummyLro; Now I want…
Lee
  • 819
  • 7
  • 32