BBaskarinbaskarblogspot.hashnode.dev·Mar 20 · 3 min readHow to Mount OCI Object Storage as normal File System in OCI DBCS or OCI Compute VM InstancesHow to Mount OCI Object Storage as normal File System in OCI DBCS or OCI Compute VM Instances Step 1 - Add the EPEL repository Login to your DBCS / Compute VM Server and run the following command in 00
BBaskarinbaskarblogspot.hashnode.dev·Nov 29, 2025 · 4 min readHow to Install Postgres Server & Client in an Oracle Linux Machine and How to quickly Get Started to work with Postgres DatabaseIn this article, I will explain how to install the Postgres Server and Postgres Client in an Oracle Linux Machine. And I will also show you how to quickly get started with Postgres Database including creation of an User, Database, Tables and backing ...00
BBaskarinbaskarblogspot.hashnode.dev·Oct 8, 2025 · 3 min readHow to Update Linux Firewall to Allow the Specific Services (http, https) and Ports (1522, 8501) and Update the IPtablesThis article guides you with the commands for updating your Linux Firewall to allow specific services like http, https; and Ports like 1522, 8501; and update the iptables. 1. Check the firewall status (Run the below commands as root OS user or sudo e...00
BBaskarinbaskarblogspot.hashnode.dev·Sep 29, 2025 · 2 min readSample Oracle RMAN Backup Scripts for FULL Backup and Incremental Backups with Automatic Unique TAG GenerationFull Backup Script (Disk Location & Static Tag) $ vi orcl_db_full_backup_invokerfile.sh #!/bin/sh export ORACLE_SID=ORCL export ORACLE_BASE=/u01/app/oracle export ORACLE_HOME=/u01/app/oracle/product/19c/dbhome_1 export LD_LIBRARY_PATH=/u01/app/oracle...00
BBaskarinbaskarblogspot.hashnode.dev·Sep 7, 2025 · 1 min readMethods for Loading ONNX ModelMethod 1 - How to Load Local ONNX file BEGIN DBMS_VECTOR.LOAD_ONNX_MODEL( directory => 'VEC_DUMP', -- DB Directory where ONNX is located file_name => 'all_MiniLM_L12_v2.onnx', -- Your actual filename model_name =>...00