OCI Commandline Interface (CLI) Filtering
In my previous CLI post, I went over some of the basics of getting started with the command line client
Read moreIn my previous CLI post, I went over some of the basics of getting started with the command line client
Read moreWhen you begin working with the Oracle Cloud Infrastructure (OCI), or any other cloud provider, you soon notice that creating
Read moreThe OCI Command Line Interface (CLI), is a Python-based command line interpreter, that lets you interact with the Oracle Cloud
Read moreFor the third time, I’ll be joining the Swim Across America fundraiser for cancer research. I know that many families
Read moreWhen trying to make an http request from my Oracle database running inside a Docker container, I received the following error:
Read more…or a 12.2…or a 11.2 image… Docker installation instructions for RHEL 7. To quickly build an Oracle database Docker image, you
Read moreHere is a nice guide for a full-stack APEX configuration: http://dsavenko.me/oracledb-apex-ords-tomcat-httpd-centos7-all-in-one-guide-introduction/
Read moreHere is a quick way to convert a list of colon separated numbers into a number array:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
declare l_list_of_numbers varchar2(32767) := '1:2:3'; l_string_array apex_application_global.vc_arr2; l_number_array apex_application_global.n_arr; begin l_string_array := apex_util.string_to_table(l_list_of_numbers); select * bulk collect into l_number_array from table(l_string_array); for idx in 1..l_number_array.count loop dbms_output.put_line(l_number_array(idx)); end loop; end; |
Read more
Here is a quick trick that allows you to download files from OTN through the command line. In order to
Read moreThis is a reblog from Chris Saxon: https://blogs.oracle.com/sql/12-things-developers-will-love-about-oracle-database-12c-release-2
Read more