Oracle Client For Mac

I am looking for a way to run the Oracle database client on a Mac running OS X. The server will be on a remote host. There used to be a Mac version of Oracle 10gR2 Client, but now I can't find it on Oracle's site, they only have the newer 11g Client which has not been ported to OS X. Subject to the Oracle Technology Network License Agreement for Oracle Instant Client software, licensees are authorized to use the version of Oracle Instant Client downloaded from this Oracle Technology Network webpage to provide third party training and instruction on the use of Oracle Instant Client.

Hi,

The How To has been extracted from the following link: http://www.joelennon.ie/2014/02/06/installing-oracle-instant-client-mac-os-x/

I just skipped some text and modified some paths to adapt it to oracle client 11.2.0.4 release.

1. Download the files from the Oracle Site

Be sure to grab the following two files:

  • Instant Client Package – Basic
  • Instant Client Package – SQL*Plus

2. Extract the files and create the proper folder structure.

Open a Terminal window and unzip the downloaded files.

$ unzip -qq instantclient-basic-macos.x64-11.2.0.4.0.zip

$ unzip -qq instantclient-sqlplus-macos.x64-11.2.0.4.0.zip

Note: The -qq flag will tell the unzip utility to run in quieter mode, preventing any output from being displayed on the screen.

By default, the archive will extract all these files to a single directory. Instead, we’ll create a nicely structured directory to keep these files in your user Applications folder.

$ mkdir -p /Applications/oracle/product/instantclient_64/11.2.0.4.0/bin

$ mkdir -p /Applications/oracle/product/instantclient_64/11.2.0.4.0/lib

$ mkdir -p /Applications/oracle/product/instantclient_64/11.2.0.4.0/jdbc/lib

$ mkdir -p /Applications/oracle/product/instantclient_64/11.2.0.4.0/rdbms/jlib

$ mkdir -p /Applications/oracle/product/instantclient_64/11.2.0.4.0/sqlplus/admin

$ mkdir -p /Applications/oracle/product/instantclient_64/11.2.0.4.0/network/admin

Next, move the files over to these directories as follows:

$ cd instantclient_11_2

$ mv ojdbc* /Applications/oracle/product/instantclient_64/11.2.0.4.0/jdbc/lib/

$ mv x*.jar /Applications/oracle/product/instantclient_64/11.2.0.4.0/rdbms/jlib/

$ mv glogin.sql /Applications/oracle/product/instantclient_64/11.2.0.4.0/sqlplus/admin/

$ mv *dylib* /Applications/oracle/product/instantclient_64/11.2.0.4.0/lib/

$ mv *README /Applications/oracle/product/instantclient_64/11.2.0.4.0/

$ mv * /Applications/oracle/product/instantclient_64/11.2.0.4.0/bin/

3. Create a proper tnsnames.ora file to define proper connection strings

Copy or create a tnsnames.ora file to /Applications/oracle/product/instantclient_64/11.2.0.4.0/network/admin/

Example:

Create the tnsnames.ora file with the vi editor, paste the following lines and save it.

MYDB=

(DESCRIPTION=

(ADDRESS=

(PROTOCOL=TCP)

(HOST=*********)

(PORT=1521)

)

(CONNECT_DATA=

(SERVER=dedicated)

(SID=MYDB-SID)

) )

(You can better ask to a DBA to review the content of this file and ask her to provide you with a proper test connection)

4. Set up environment variables

Edit or create a file .bash_profile

$ cd /Users/UserName

$ vi ~/.bash_profile

if you haven’t created a .bash_profile before the file will be empty, otherwise just add the following lines to the end of the existing file.

export ORACLE_HOME=/Applications/oracle/product/instantclient_64/11.2.0.4.0

export PATH=$ORACLE_HOME/bin:$PATH

export DYLD_LIBRARY_PATH=$ORACLE_HOME/lib

To load this profile, run the following command:

$ source ~/.bash_profile

Assuming you have set up your tnsnames.ora file correctly, you should now be able to connect one of the databases as follows:

5. Start using SQLPlus

$ sqlplus username/password@database

6. Did you enjoy? That’s all folks.

🙂

**********************************

Fixing command history for using SQLPlus line edition with arrow keys

If you have used the command-line SQLPlus in a Windows environment, you will probably be used to using the command history to execute previous SQL statements using the arrow keys. One thing you’ll notice in SQLPlus for the Mac is that this doesn’t work by default, if you hit the up key you’ll see a strange character sequence ^[[A rather than the previous command. Let’s go ahead and fix this now.

To do this, you’ll need to use rlwrap. You could download this from source and build it yourself, but I find it much easier to use the fantastic brew package manager for Mac OS X. Head over to http://brew.sh/ and follow the instructions to install and set up Homebrew (it’s very easy). With Homebrew installed, you can now easily install rlwrap on your system with one command:

$ ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”

$ brew install rlwrap

Oracle Client For Mac

The final thing you need to do is tell your system to use rlwrap whenever you use SQL*Plus. To do that, you’ll need to edit your .bash_profile file again.

$ vi ~/.bash_profile

Add the following line to the end of the file.

Download Oracle Client For Mac

alias sqlplus=’rlwrap sqlplus’

Install Oracle On Mac

Now reload the .bash_profile:

Oracle Database For Mac

$ source ~/.bash_profile

Now, when you launch SQL*Plus and try to use the arrow keys to access previous commands, it will work.

Best Oracle Client For Mac

Advertisements