Skip to content
  • Home, OCI

    Generating an API Signing Key through OCI Console

    Published by

    RishOraDev

    on

    April 8, 2025

    In this post, we will look into the step-by-step process of how you can generate a private key/public key pair from the OCI Console. When the OCI console is used to generate the API signing key pair, a configuration file preview snippet is generated with the following keys and OCIDs.…

    Continue reading →: Generating an API Signing Key through OCI Console
  • Home, OCI

    Step-by-Step Guide to Oracle Database API for MongoDB

    Published by

    RishOraDev

    on

    March 26, 2025
    Step-by-Step Guide to Oracle Database API for MongoDB

    Using Oracle Database API for MongoDB, you can manipulate collection of JSON documents stored in an Oracle Database. If you are using ORDS version 22.3 or later, then you can use Oracle Database MongoDB API with any Oracle Database Release 21c or later, or Oracle Autonomous Database 19c or later(serverless,…

    Continue reading →: Step-by-Step Guide to Oracle Database API for MongoDB
  • Home, OCI

    Configuring Oracle Cloud Infrastructure (OCI) Bastion Service

    Published by

    RishOraDev

    on

    May 30, 2024
    Configuring Oracle Cloud Infrastructure (OCI) Bastion Service

    Oracle Cloud Infrastructure Bastion provides restricted and time-limited access to target resources that don’t have public endpoints. Bastions let authorized users connect from specific IP addresses to target resources using Secure Shell (SSH) sessions. The target instance can be a compute instance or a DB system, an Autonomous Database for Transaction Processing…

    Continue reading →: Configuring Oracle Cloud Infrastructure (OCI) Bastion Service
  • Home, SQL/PLSQL

    Oracle Database 23ai: Boolean Data Type

    Published by

    RishOraDev

    on

    May 28, 2024
    Oracle Database 23ai: Boolean Data Type

    The Boolean Data Type has been introduced in Oracle Database 23ai. In this post, we will look at how we can use this new data type. Let us create a table called INVOICES with two columns – Invoice Number and Paid Status. We use the Boolean Data Type for the…

    Continue reading →: Oracle Database 23ai: Boolean Data Type
  • Home, SQL/PLSQL

    Oracle Database 23ai: Direct Joins for UPDATE and DELETE Statements

    Published by

    RishOraDev

    on

    May 27, 2024

    Oracle 23ai allows directs joins in update and delete statements. Let us understand how this works. Lets say we have two tables DEPARTMENT1. SQL> SELECT * FROM department_1; DEPTNO DNAME LOC_________ _____________ ___________ 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON And DEPARTMENT_2. SQL> SELECT…

    Continue reading →: Oracle Database 23ai: Direct Joins for UPDATE and DELETE Statements
  • Home, SQL/PLSQL

    Oracle Database 23ai : Group By and Having using Column Aliases

    Published by

    RishOraDev

    on

    May 27, 2024

    Oracle Database 23ai allows us to use Column Aliases in GROUP BY and HAVING clauses. It also allows us to use Column-position in GROUP BY clause. Let’s see, how. To demonstrate this enhancement, we will work with the EMP table and the DEPT table. SQL> SELECT * from emp; EMPNO…

    Continue reading →: Oracle Database 23ai : Group By and Having using Column Aliases
  • Home, OCI

    Uploading File from OCI Object Storage to Oracle Autonomous Database

    Published by

    RishOraDev

    on

    May 26, 2024
    Uploading File from OCI Object Storage to Oracle Autonomous Database

    I have shown in my previous post, how you can create an Oracle ATP Database 23ai on Oracle Cloud free Tier. In this post let us understand, how we can create Upload a File containing data from OCI Object Storage to a table in the database, using the DBMS_CLOUD Package.…

    Continue reading →: Uploading File from OCI Object Storage to Oracle Autonomous Database
  • Home, OCI, SQL/PLSQL

    User Creation in ORACLE Cloud Autonomous Database 23ai

    Published by

    RishOraDev

    on

    May 25, 2024
    User Creation in ORACLE Cloud Autonomous Database 23ai

    In my previous post, we saw how we can create an Autonomous Database 23ai on Oracle Cloud. In this post we will see, how we can create an user and connect to the user. User Creation To create an user, login to your OCI console. From the Navigation Menu, click…

    Continue reading →: User Creation in ORACLE Cloud Autonomous Database 23ai
  • Home, OCI, SQL/PLSQL

    Oracle Autonomous Database 23ai on Oracle Cloud

    Published by

    RishOraDev

    on

    May 25, 2024
    Oracle Autonomous Database 23ai on Oracle Cloud

    In my previous posts, I had demonstrated how you can configure Oracle Database 23ai Free on Oracle VM or on docker. In this post, we will see how we can configure Oracle Autonomous Database 23ai on Oracle Cloud free Tier. It is fairly simple to setup. So let’s jump into…

    Continue reading →: Oracle Autonomous Database 23ai on Oracle Cloud
  • Home, SQL/PLSQL

    Oracle 23ai New Feature: Automatic SQL Transpiler

    Published by

    RishOraDev

    on

    May 25, 2024
    Oracle 23ai New Feature: Automatic SQL Transpiler

    We know that both SQL and PL/SQL have their own execution engines. Every time we call a user defined PL/SQL function from a SQL query, or execute an SQL query in within a PL/SQL code, there is a context switch between the SQL and PL/SQL engines. The cost based optimizer…

    Continue reading →: Oracle 23ai New Feature: Automatic SQL Transpiler
  • Home, SQL/PLSQL

    Oracle Database 23ai Vector Search in action

    Published by

    RishOraDev

    on

    May 23, 2024
    Oracle Database 23ai Vector Search in action

    Oracle has just announced the release of Oracle Database 23ai, the next long-term support release of the industry-leading Oracle Database, on 2nd May 2024. You can find the announcement here. The new release is packed with tons of new features, strongly focusing on artificial intelligence (AI) and developer productivity. In…

    Continue reading →: Oracle Database 23ai Vector Search in action
  • SQL/PLSQL

    ORA-40478: output value too large – JSON_SERIALIZE

    Published by

    RishOraDev

    on

    May 22, 2024

    In my previous posts, while explaining JSON Relational Duality Views, I mentioned that I encountered ORA-40478: output value too large. So, in this post, let’s look at the available options to by-pass ORA-40478. But first, the basics. Let’s understand what the JSON_SERIALIZE functions does. The function takes JSON data of…

    Continue reading →: ORA-40478: output value too large – JSON_SERIALIZE
  • Home, SQL/PLSQL

    Oracle Database 23ai: JSON Relational Duality Views

    Published by

    RishOraDev

    on

    May 21, 2024
    Oracle Database 23ai: JSON Relational Duality Views

    Oracle has just announced the release of Oracle Database 23ai on 2nd May 2024. You can find the announcement here. The new release is packed with 300+ new features. One of the features introduced is the JSON Relational Duality View. In this post we will look at the basics and…

    Continue reading →: Oracle Database 23ai: JSON Relational Duality Views
  • Home, SQL/PLSQL

    Installing Oracle Database 23ai on Docker

    Published by

    RishOraDev

    on

    May 18, 2024
    Installing Oracle Database 23ai on Docker

    In my previous post, I have shown how you can install Oracle Database 23ai Free in VirtualBox Box. In this post we will see the steps to configure Oracle Database 23ai Free on Docker. Prerequisites Download Docker from here. Installation Once you have installed Docker, login to Docker. Open up…

    Continue reading →: Installing Oracle Database 23ai on Docker
  • Home, SQL/PLSQL

    Run SQL Developer from Microsoft VS Code

    Published by

    RishOraDev

    on

    May 18, 2024
    Run SQL Developer from Microsoft VS Code

    If you have been using Oracle SQL Developer for decades, then there is news for you. Oracle SQL Developer is entering it’s new life!!! You can now run Oracle SQL Developer from Microsoft Visual Studio Code. Microsoft Visual Studio Code is one of the top development platforms available today. It’s…

    Continue reading →: Run SQL Developer from Microsoft VS Code
  • Home, SQL/PLSQL

    Getting started with Oracle DB 23ai VirtualBox Appliance

    Published by

    RishOraDev

    on

    May 16, 2024
    Getting started with Oracle DB 23ai VirtualBox Appliance

    Oracle has just announced the release of Oracle Database 23ai, the next long-term support release of the industry-leading Oracle Database, on 2nd May 2024. You can find the announcement here. The new release is packed with tons of new features, strongly focusing on artificial intelligence (AI) and developer productivity. In…

    Continue reading →: Getting started with Oracle DB 23ai VirtualBox Appliance
  • Techno-Functional

    Journal Import using File-Based Data Import (FBDI)

    Published by

    RishOraDev

    on

    March 24, 2024
    Journal Import using File-Based Data Import (FBDI)

    As part of the data migration process, when you are moving financial data from your legacy system to Oracle ERP Cloud, you might need to import journals in bulk. We often use File-Based Data Import (FBDI) for this purpose. In is blog I’ll discuss how the process of importing journals…

    Continue reading →: Journal Import using File-Based Data Import (FBDI)
  • APEX, EBS, Home

    Intro: Extending Oracle E-Business Suite R12 using Oracle APEX #JoelKallmanDay

    Published by

    RishOraDev

    on

    October 11, 2022
    Intro: Extending Oracle E-Business Suite R12 using Oracle APEX #JoelKallmanDay

    I have been thinking of writing a series of blogs about Integrating Oracle APEX with Oracle E-Business Suite, for quiet a while now. When I saw the following post from Tim Hall couple of weeks ago, I said to myself that there is no better way to pay tribute to…

    Continue reading →: Intro: Extending Oracle E-Business Suite R12 using Oracle APEX #JoelKallmanDay
  • EBS, Home

    Customizing Oracle E-Business Suite Login Page in R12.2.5 or higher

    Published by

    RishOraDev

    on

    March 8, 2022
    Customizing Oracle E-Business Suite Login Page in R12.2.5 or higher

    In one of previous posts, I had shown how to change the Corporate Branding in an Oracle E-Business Suite instance. In this post, let us see how we can customize Oracle E-Business Suite Login Page. Up until R12.2.4, the login page was an Oracle Application Framework page. Hence administrators were…

    Continue reading →: Customizing Oracle E-Business Suite Login Page in R12.2.5 or higher
  • EBS, Home

    Create Custom Application in Oracle EBS R12.2

    Published by

    RishOraDev

    on

    February 10, 2022
    Create Custom Application in Oracle EBS R12.2

    Create Custom Application in Oracle EBS R12.2

    Continue reading →: Create Custom Application in Oracle EBS R12.2
  • Home, SQL/PLSQL

    Installing Oracle Database 19c on Oracle Linux 8

    Published by

    RishOraDev

    on

    January 25, 2022
    Installing Oracle Database 19c on Oracle Linux 8

    In one of my previous posts, I showed how to install Oracle Database 21c on Linux 7. In this post, I will show the step-by-step process of how to install and set up an Oracle Database 19c on Oracle Linux 8. For most of my installs, I use Linux 7.…

    Continue reading →: Installing Oracle Database 19c on Oracle Linux 8
  • Home, SQL/PLSQL

    Install Oracle Database 21c XE On Linux 7

    Published by

    RishOraDev

    on

    September 27, 2021
    Install Oracle Database 21c XE On Linux 7

    Oracle have released Oracle Database 21c Express Edition on Linux. Oracle Express Edition or XE is the free to use version of the database. You can download it from the following link: https://www.oracle.com/database/technologies/xe-downloads.html In one of my previous posts, I demonstrated how to install Oracle Database 21c on Linux 7.…

    Continue reading →: Install Oracle Database 21c XE On Linux 7
  • EBS, Home

    Change Corporate Branding in Oracle EBS R12.2

    Published by

    RishOraDev

    on

    September 13, 2021
    Change Corporate Branding in Oracle EBS R12.2

    Very often, there is a requirement to change the corporate branding, from the standard Oracle logo to the logo of the company or customer. How do we do this? In this post, I’ll show you how. The corporate branding image is visible at two places. On the top-left corner of…

    Continue reading →: Change Corporate Branding in Oracle EBS R12.2
  • Home, SQL/PLSQL

    Fun with Oracle Analytics SQL #1 : PIVOTS [ PART II ]

    Published by

    RishOraDev

    on

    September 10, 2021
    Fun with Oracle Analytics SQL #1 : PIVOTS [ PART II ]

    In my previous post, I showed how to rotate rows into column using the PIVOT operation in Oracle. I pivoted a single measure and dimension. But wait! When we create a PIVOT Table in spreadsheet, we get additional aggregated columns, a. showing the total quantity of items ordered across all…

    Continue reading →: Fun with Oracle Analytics SQL #1 : PIVOTS [ PART II ]
  • Home, SQL/PLSQL

    Fun with Oracle Analytics SQL #1 : PIVOTS [ PART I ]

    Published by

    RishOraDev

    on

    September 9, 2021
    Fun with Oracle Analytics SQL #1 : PIVOTS [ PART I ]

    Creating a “Pivot Table” using a spreadsheet is pretty straight forward, and it enables you to transpose rows into columns. But, can we do the same operation using Oracle SQL? Yes, it can be done, indeed. The pivot_clause of the Select statement serves this purpose. It enables us to rotate…

    Continue reading →: Fun with Oracle Analytics SQL #1 : PIVOTS [ PART I ]
Previous Page Next Page
RishOraDev's Oracle Blogs

Designed with WordPress

  • WordPress
  • LinkedIn
  • Bluesky
  • X
Loading Comments...

Notifications