{"id":5467,"date":"2015-09-16T15:44:42","date_gmt":"2015-09-16T13:44:42","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/"},"modified":"2015-09-16T15:44:42","modified_gmt":"2015-09-16T13:44:42","slug":"install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/","title":{"rendered":"Install Oracle instant client and perl DBD::Oracle @\u00a0Mac OS X Yosemite"},"content":{"rendered":"<p>Recently, I tried to install and connect to Oracle databases directly from my new Mac Book using perl\u00a0 (Yes, perl is still one of the most friendly programming language for DBAs). What first seemed to be easy was in reality quite difficult and long. Alone, the huge quantity of\u00a0 hits on the WorldWideWeb was impressive. However none of the hits were providing the entire solution.<\/p>\n<p>Follows, all the steps to prepare and install the Oracle instant client 11.2.0.4 &#8230; instant client 12c not yet available\u00a0 \ud83d\ude41 for Mac OS X (Intel x86) (32-bit and 64-bit)<\/p>\n<p><!--more--><\/p>\n<h3>Oracle instant client installation<\/h3>\n<p>Following archives are required to run the client on your Mac<\/p>\n<ul>\n<li>\u00a0<em>instantclient-basic-macos.x64-11.2.0.4.0.zip<\/em> or<em> instantclient-basiclite-macos.x64-11.2.0.4.0.zip<\/em> :<br \/>\ncontains all files required to run OCI, OCCI, and JDBC-OCI applications<\/li>\n<li><em>instantclient-sdk-macos.x32-11.2.0.4.0.zip<\/em> :<br \/>\nSoftware Development Kit (SDK) contains all header files required to develop (compile) programs<\/li>\n<\/ul>\n<p>and optionally the additional executable to run SQL*Plus<\/p>\n<ul>\n<li><em>instantclient-sqlplus-macos.x64-11.2.0.4.0.zip<\/em><\/li>\n<\/ul>\n<p>Once downloaded, extract the client to a desired destination. Personally, I\u00a0 like to install commercial add-on applications under the &#8220;\/opt&#8221; folder:<\/p>\n<pre class=\"brush: shell; gutter: true; first-line: 1\">X-Biederthal:~ jew$ ls -l \/opt\/ora_instantclient_112024_x64\ntotal 386296\n-rw-rw-rw-@ 1 root  wheel        484 Apr 10  2014 BASIC_README\n-rw-rw-rw-@ 1 root  wheel        488 Apr 10  2014 SQLPLUS_README\n-rwxrwxrwx@ 1 root  wheel      14348 Apr 10  2014 adrci\n-rwxrwxrwx@ 1 root  wheel      40768 Apr 10  2014 genezi\n-r--r--r--@ 1 root  wheel        368 Apr 11  2011 glogin.sql\n-r-xr-xr-x@ 1 root  wheel   66167420 Feb  7  2014 libclntsh.dylib.11.1\n-r-xr-xr-x@ 1 root  wheel    2817872 Jan 29  2014 libnnz11.dylib\n-r-xr-xr-x@ 1 root  wheel    1897664 Feb  7  2014 libocci.dylib.11.1\n-rwxrwxrwx@ 1 root  wheel  118707148 Apr 10  2014 libociei.dylib\n-r-xr-xr-x@ 1 root  wheel     159004 Jan  7  2014 libocijdbc11.dylib\n-r-xr-xr-x@ 1 root  wheel    1365444 Jan 27  2014 libsqlplus.dylib\n-r-xr-xr-x@ 1 root  wheel    1504252 Jan  7  2014 libsqlplusic.dylib\n-r--r--r--@ 1 root  wheel    2091135 Jan 28  2014 ojdbc5.jar\n-r--r--r--@ 1 root  wheel    2739616 Jan 28  2014 ojdbc6.jar\ndrwxrwxrwx@ 7 root  wheel        238 Apr 10  2014 sdk\n-r-xr-xr-x@ 1 root  wheel       8744 Jan 27  2014 sqlplus\n-rwxrwxrwx@ 1 root  wheel     162380 Apr 10  2014 uidrvci\n-r--r--r--@ 1 root  wheel      66779 Jan  7  2014 xstreams.jar<\/pre>\n<p>As I&#8217;m quite lazy, I added the Oracle instant client to my .bash_profile to automatically extend the PATH variable and set the ORACLE_HOME:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">X-Biederthal:~ jew$ cat ~\/.bash_profile \n# required for the Oracle Client\nexport ORACLE_HOME=\/opt\/ora_instantclient_112024_x64\/\nexport TNS_ADMIN=${ORACLE_HOME}\/network\/admin\nexport PATH=${ORACLE_HOME}:\/usr\/local\/ActivePerl-5.20\/bin:${PATH}<\/pre>\n<p>Does SQL*Plus works?<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">X-Biederthal:~ jew$ sqlplus -v\ndyld: Library not loaded: \/ade\/dosulliv_sqlplus_mac\/oracle\/sqlplus\/lib\/libsqlplus.dylib\n  Referenced from: \/opt\/ora_instantclient_112024_x64\/sqlplus\n  Reason: image not found\nTrace\/BPT trap: 5<\/pre>\n<p>Outch! why does the sqlplus binary not load the dynamic library &#8220;libsqlplus.dylib&#8221;? Indeed it&#8217;s yet available in the ORACLE_HOME. The solution consist either of relinking all dynamic libraries or adding the ORACLE_HOME to the Mac OS X dynamic linker (variable DYLD_LIBRARY_PATH). Please refer to\u00a0<a title=\"Casey Lucas's Blog\" href=\"http:\/\/blog.caseylucas.com\/2013\/03\/03\/oracle-sqlplus-and-instant-client-on-mac-osx-without-dyld_library_path\/\">Casey Lucas&#8217;s Blog<\/a> post for details<\/p>\n<p>Verify SQL*Plus works once one of the Cays Luca&#8217;s fix applied:<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">X-Biederthal:~ jew$ sqlplus -v\n\nSQL*Plus: Release 11.2.0.4.0 Production<\/pre>\n<h3>Install perl module DBD::Oracle<\/h3>\n<p>The below module installation has been tested with <a title=\"ActivePerl\" href=\"http:\/\/www.activestate.com\/activeperl\">ActivePerl<\/a> and the supplied system &#8220;\/usr\/bin\/perl&#8221;<\/p>\n<p>Before, we can start with the module installation (compilation) we have to install the entire Apple software development tools and libraries <a title=\"Xcode\" href=\"https:\/\/developer.apple.com\/xcode\/\" target=\"_blank\" rel=\"noopener\">Xcode<\/a>&#8230; \ud83d\ude15<\/p>\n<p>&nbsp;<\/p>\n<p>To install the latest module DBD::Oracle, we can simply use <a title=\"Comprehensive Perl Archive Network \" href=\"http:\/\/www.cpan.org\/\">Comprehensive Perl Archive Network (CPAN)<\/a> command line tool, in conjunction with SHELL variables to enable successful compilation:<\/p>\n<pre class=\"brush: shell; gutter: true; first-line: 1\">X-Biederthal:~ jew$ sudo su - \nX-Biederthal:~ root# export ORACLE_HOME=\/opt\/ora_instantclient_112024_x64\nX-Biederthal:~ root# export DYLD_LIBRARY_PATH=${ORACLE_HOME}\nX-Biederthal:~ root# \/usr\/local\/ActivePerl-5.20\/bin\/cpan -i \"DBD::Oracle\"\n\nCPAN: Storable loaded ok (v2.49_01)\nReading '\/var\/root\/.cpan\/Metadata'\n\n  Database was generated on Tue, 08 Sep 2015 03:53:22 GMT\n\nRunning install for module 'DBD::Oracle'\n\nCPAN: Digest::SHA loaded ok (v5.95)\nCPAN: Compress::Zlib loaded ok (v2.068)\nChecksum for \/var\/root\/.cpan\/sources\/authors\/id\/P\/PY\/PYTHIAN\/DBD-Oracle-1.74.tar.gz ok\nCPAN: File::Temp loaded ok (v0.2304)\nCPAN: YAML loaded ok (v1.15)\nCPAN: Parse::CPAN::Meta loaded ok (v1.4414)\nCPAN: CPAN::Meta loaded ok (v2.140640)\nCPAN: Module::CoreList loaded ok (v5.20150520)\nConfiguring P\/PY\/PYTHIAN\/DBD-Oracle-1.74.tar.gz with Makefile.PL\n\nMultiple copies of Driver.xst found in: \/usr\/local\/ActivePerl-5.20\/site\/lib\/auto\/DBI\/ \/usr\/local\/ActivePerl-5.20\/lib\/auto\/DBI\/ at Makefile.PL line 39.\nUsing DBI 1.634 (for perl 5.020002 on darwin-thread-multi-2level) installed in \/usr\/local\/ActivePerl-5.20\/site\/lib\/auto\/DBI\/\n\nConfiguring DBD::Oracle for perl 5.020002 on darwin (darwin-thread-multi-2level)\nRemember to actually *READ* the README file! Especially if you have any problems.\n\nInstalling on a darwin, Ver#10.8\nUsing Oracle in \/opt\/ora_instantclient_112024_x64\nDEFINE _SQLPLUS_RELEASE = \"1102000400\" (CHAR)\nOracle version 11.2.0.4 (11.2)\nLooks like an Instant Client installation, okay\n\nYour DYLD_LIBRARY_PATH env var is set to '\/opt\/ora_instantclient_112024_x64'\nOracle sysliblist: \nFound header files in \/opt\/ora_instantclient_112024_x64\/sdk\/include.\nclient_version=11.2\n&lt; OUTPUT TRUNCATED &gt;\n&lt; OUTPUT TRUNCATED &gt;\n&lt; OUTPUT TRUNCATED &gt;\n\nAll tests successful.\nFiles=38, Tests=9,  6 wallclock secs ( 0.11 usr  0.05 sys +  5.99 cusr  0.41 csys =  6.56 CPU)\nResult: PASS\n  PYTHIAN\/DBD-Oracle-1.74.tar.gz\n  \/usr\/bin\/make test -- OK\nRunning make install\nFiles found in blib\/arch: installing files in blib\/lib into architecture dependent library tree\nInstalling \/usr\/local\/ActivePerl-5.20\/site\/lib\/auto\/DBD\/Oracle\/mk.pm\nInstalling \/usr\/local\/ActivePerl-5.20\/site\/lib\/DBD\/Oracle.pm\nAppending installation info to \/usr\/local\/ActivePerl-5.20\/lib\/perllocal.pod\n  PYTHIAN\/DBD-Oracle-1.74.tar.gz\n  \/usr\/bin\/make install  -- OK<\/pre>\n<p>The module has been installed successfully. However, it&#8217;s still not working when you try import the module in your perl program:<\/p>\n<pre class=\"brush: perl; gutter: true; first-line: 1\">Can't load '\/usr\/local\/ActivePerl-5.20\/site\/lib\/auto\/DBD\/Oracle\/Oracle.bundle' for module DBD::Oracle: dlopen(\/usr\/local\/ActivePerl-5.20\/site\/lib\/auto\/DBD\/Oracle\/Oracle.bundle, 1): Library not loaded: libclntsh.dylib.11.1   \nReferenced from: \/usr\/local\/ActivePerl-5.20\/site\/lib\/auto\/DBD\/Oracle\/Oracle.bundle   \nReason: image not found at \/usr\/local\/ActivePerl-5.20\/lib\/DynaLoader.pm line 198.<\/pre>\n<p>This is caused because the dynamic library loader can&#8217;t find the Oracle instant client library &#8220;libclntsh.dylib.11.1&#8221;.<\/p>\n<p>To solve this issue extend the Mac dynamic linker\u00a0 path with the Oracle instant client folder to SHELL.<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">export DYLD_LIBRARY_PATH=${ORACLE_HOME}<\/pre>\n<p>To make it permanent, add the above command to your ~\/.bash_profile.<\/p>\n<p>Et voil\u00e0 \ud83d\ude42 you are now ready to connect\u00a0 and query an Oracle Database from perl.<\/p>\n<h3>Nota bene<\/h3>\n<p>Currently, the Oracle 12c database client has not yet been released on Mac&#8230;.\u00a0 The Oracle client 11.2.0.X is fully compatible (certified) to connect to an Oracle 12.1.0.X database. Please refer to the My Oracle Support Matrix for details about <a title=\"Client \/ Server Interoperability Support Matrix for Different Oracle Versions (Doc ID 207303.1)\" href=\"https:\/\/support.oracle.com\/epmos\/faces\/DocumentDisplay?_afrLoop=365209237804058&amp;parent=DOCUMENT&amp;sourceId=1298096.1&amp;id=207303.1&amp;_afrWindowMode=0&amp;_adf.ctrl-state=13owfke5mp_98\">&#8220;Client \/ Server Interoperability (Doc ID 207303.1)&#8221;<\/a><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Recently, I tried to install and connect to Oracle databases directly from my new Mac Book using perl\u00a0 (Yes, perl is still one of the most friendly programming language for DBAs). What first seemed to be easy was in reality quite difficult and long. Alone, the huge quantity of\u00a0 hits on the WorldWideWeb was impressive. [&hellip;]<\/p>\n","protected":false},"author":25,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229],"tags":[635,636,47,637],"type_dbi":[],"class_list":["post-5467","post","type-post","status-publish","format-standard","hentry","category-database-administration-monitoring","tag-dbdoracle","tag-instant-client","tag-perl","tag-yosemite"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install Oracle instant client and perl DBD::Oracle @\u00a0Mac OS X Yosemite - dbi Blog<\/title>\n<meta name=\"description\" content=\"Install an Oracle client and the perl module DBD::Oracle on Mac OS X Yosemite\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Oracle instant client and perl DBD::Oracle @\u00a0Mac OS X Yosemite\" \/>\n<meta property=\"og:description\" content=\"Install an Oracle client and the perl module DBD::Oracle on Mac OS X Yosemite\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2015-09-16T13:44:42+00:00\" \/>\n<meta name=\"author\" content=\"J\u00e9r\u00f4me Witt\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"J\u00e9r\u00f4me Witt\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/\"},\"author\":{\"name\":\"J\u00e9r\u00f4me Witt\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/a2d3ecddaf732850101a39b9d62c31b7\"},\"headline\":\"Install Oracle instant client and perl DBD::Oracle @\u00a0Mac OS X Yosemite\",\"datePublished\":\"2015-09-16T13:44:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/\"},\"wordCount\":497,\"commentCount\":0,\"keywords\":[\"DBD::Oracle\",\"instant client\",\"Perl\",\"Yosemite\"],\"articleSection\":[\"Database Administration &amp; Monitoring\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/\",\"name\":\"Install Oracle instant client and perl DBD::Oracle @\u00a0Mac OS X Yosemite - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2015-09-16T13:44:42+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/a2d3ecddaf732850101a39b9d62c31b7\"},\"description\":\"Install an Oracle client and the perl module DBD::Oracle on Mac OS X Yosemite\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Oracle instant client and perl DBD::Oracle @\u00a0Mac OS X Yosemite\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/a2d3ecddaf732850101a39b9d62c31b7\",\"name\":\"J\u00e9r\u00f4me Witt\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/17095c081578ca53f52ec4030ba2bde72cc18badb325cd2ba1ee2831106507ad?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/17095c081578ca53f52ec4030ba2bde72cc18badb325cd2ba1ee2831106507ad?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/17095c081578ca53f52ec4030ba2bde72cc18badb325cd2ba1ee2831106507ad?s=96&d=mm&r=g\",\"caption\":\"J\u00e9r\u00f4me Witt\"},\"description\":\"J\u00e9rome Witt started his Consultant career a few years ago. He is specialized in database and infrastructure management, engineering, and optimization. He is very skilled in Oracle high availability, backup &amp; recovery, and tuning technologies. His expertise also includes the open source field (Linux\/Unix), advanced Perl, Shell, Windows PowerShell programming, and Automation tools (UC4). J\u00e9r\u00f4me Witt is Oracle Certified Professional 11g (OCP 11g), Oracle Certified Expert Tuning (OCE), and ITIL V3 Foundation certified. Prior to joining dbi services, J\u00e9r\u00f4me Witt was Consultant at Trivadis in Basel. He also worked as a Junior Automation specialist at Selmoni AG in Basel. J\u00e9r\u00f4me Witt holds a BTS degree in Information Systems and Industrial Networks from France. His branch-related experience covers Pharma, Health Care, Banking &amp; Financial Services, Energy, Automotive etc.\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/jerome-witt\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install Oracle instant client and perl DBD::Oracle @\u00a0Mac OS X Yosemite - dbi Blog","description":"Install an Oracle client and the perl module DBD::Oracle on Mac OS X Yosemite","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/","og_locale":"en_US","og_type":"article","og_title":"Install Oracle instant client and perl DBD::Oracle @\u00a0Mac OS X Yosemite","og_description":"Install an Oracle client and the perl module DBD::Oracle on Mac OS X Yosemite","og_url":"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/","og_site_name":"dbi Blog","article_published_time":"2015-09-16T13:44:42+00:00","author":"J\u00e9r\u00f4me Witt","twitter_card":"summary_large_image","twitter_misc":{"Written by":"J\u00e9r\u00f4me Witt","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/"},"author":{"name":"J\u00e9r\u00f4me Witt","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/a2d3ecddaf732850101a39b9d62c31b7"},"headline":"Install Oracle instant client and perl DBD::Oracle @\u00a0Mac OS X Yosemite","datePublished":"2015-09-16T13:44:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/"},"wordCount":497,"commentCount":0,"keywords":["DBD::Oracle","instant client","Perl","Yosemite"],"articleSection":["Database Administration &amp; Monitoring"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/","url":"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/","name":"Install Oracle instant client and perl DBD::Oracle @\u00a0Mac OS X Yosemite - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2015-09-16T13:44:42+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/a2d3ecddaf732850101a39b9d62c31b7"},"description":"Install an Oracle client and the perl module DBD::Oracle on Mac OS X Yosemite","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/install-oracle-instant-client-perl-dbdoracle-mac-os-x-yosemite\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Oracle instant client and perl DBD::Oracle @\u00a0Mac OS X Yosemite"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/a2d3ecddaf732850101a39b9d62c31b7","name":"J\u00e9r\u00f4me Witt","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/17095c081578ca53f52ec4030ba2bde72cc18badb325cd2ba1ee2831106507ad?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/17095c081578ca53f52ec4030ba2bde72cc18badb325cd2ba1ee2831106507ad?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/17095c081578ca53f52ec4030ba2bde72cc18badb325cd2ba1ee2831106507ad?s=96&d=mm&r=g","caption":"J\u00e9r\u00f4me Witt"},"description":"J\u00e9rome Witt started his Consultant career a few years ago. He is specialized in database and infrastructure management, engineering, and optimization. He is very skilled in Oracle high availability, backup &amp; recovery, and tuning technologies. His expertise also includes the open source field (Linux\/Unix), advanced Perl, Shell, Windows PowerShell programming, and Automation tools (UC4). J\u00e9r\u00f4me Witt is Oracle Certified Professional 11g (OCP 11g), Oracle Certified Expert Tuning (OCE), and ITIL V3 Foundation certified. Prior to joining dbi services, J\u00e9r\u00f4me Witt was Consultant at Trivadis in Basel. He also worked as a Junior Automation specialist at Selmoni AG in Basel. J\u00e9r\u00f4me Witt holds a BTS degree in Information Systems and Industrial Networks from France. His branch-related experience covers Pharma, Health Care, Banking &amp; Financial Services, Energy, Automotive etc.","url":"https:\/\/www.dbi-services.com\/blog\/author\/jerome-witt\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/5467","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/25"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=5467"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/5467\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=5467"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=5467"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=5467"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=5467"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}