Posts

Showing posts from 2025
Image
                                                 Fusion General Ledger Introduction 1. What is GL in Oracle Fusion Cloud Finance ? GL = General Ledger The General Ledger (GL) is the central accounting hub of Oracle Fusion Cloud Financials. It is where all financial transactions from different modules (such as Payables , Receivables , Assets , and Cash Management ) are recorded, summarised, and reported. Key Functions of GL Record Transactions All journal entries from sub- ledgers (AP, AR, FA, etc.) flow into the GL. You can also create manual journals directly in GL. Financial Reporting GL provides real-time financial data for generating trial balances , balance sheets , profit and loss statements, and other statutory reports . Chart of Accounts (CoA) GL uses a structured Chart ...

Database Credentials in Oracle Wallet

   Database Credentials in Oracle Wallet When managing Oracle Databases, storing user credentials in plain text inside scripts is a major security risk. Oracle provides a secure solution with Oracle Wallet , which allows you to store database credentials in an encrypted location. Once configured, applications and utilities like Data Pump or JDBC can connect without requiring a clear-text password. This blog walks through the step-by-step procedure to store database credentials in Oracle Wallet and use it securely. Overview The Oracle Wallet securely stores database credentials, eliminating the need to expose passwords in scripts. Multiple credentials can be stored in a single wallet. Supports auto-login , meaning applications don’t need a password to access it. OS file permissions ensure security. In this example, a non-Oracle binary owner OS user ( bidhan ) is used to create the wallet. Example usage: Data Pump with Wallet nohup expdp /@BSA1EP directory=...

Oracle 19c Active Data Guard Switchover Procedure

  Oracle 19c Active Data Guard Switchover Procedure Oracle Active Data Guard provides high availability and disaster recovery by allowing seamless role transitions between the primary and standby databases. A switchover is a planned role reversal where the primary database becomes the standby, and the standby takes over as the new primary without data loss. This guide covers the step-by-step procedure for switchover in Oracle 19c Active Data Guard . 1. Pre-Checks Before initiating a switchover, ensure both databases are synchronized and healthy. On both primary and standby : SELECT DATABASE_ROLE, OPEN_MODE FROM V$DATABASE; Primary should show: PRIMARY , READ WRITE Standby should show: PHYSICAL STANDBY , READ ONLY WITH APPLY or MOUNTED Also, confirm there are no active sessions or long-running transactions on the primary. 2. Verify Log Transport and Apply Ensure redo logs are being shipped and applied correctly. On Primary : SELECT DEST_ID, STATUS, ERRO...

Oracle 19c Active Data Guard Configuration on Linux – Step by Step

  Oracle 19c Active Data Guard Configuration on Linux – Step by Step Oracle Active Data Guard provides high availability, data protection, and disaster recovery by maintaining a synchronized copy of the primary database on a standby system. In this guide, we will configure Oracle 19c Active Data Guard between two Linux servers. 1. Environment Setup Primary Database : primary.localdomain (192.168.0.187) Standby Database : standby.localdomain (192.168.0.188) Update /etc/hosts on both servers: 192.168.0.187 primary.localdomain primary 192.168.0.188 standby.localdomain standby Disable firewall & SELinux (if required): systemctl stop firewalld setenforce 0 2. Enable FORCE LOGGING & ARCHIVELOG Mode on Primary On the Primary Database : ALTER DATABASE FORCE LOGGING; ARCHIVE LOG LIST; If not in ARCHIVELOG mode: SHUTDOWN IMMEDIATE; STARTUP MOUNT; ALTER DATABASE ARCHIVELOG; ALTER DATABASE OPEN ; 3. Configure Primary Initialization Parameters Update the paramete...

Introduction to Oracle Fusion General Ledger (GL)

  Introduction to Oracle Fusion General Ledger (GL) Oracle Fusion General Ledger is the core financial component of the Oracle Fusion Cloud Financials suite. It delivers a modern, highly configurable, and scalable accounting system designed to meet global business needs. Whether you’re part of a multinational enterprise or a growing organization, Oracle Fusion GL provides the foundation for accurate, real-time financial reporting and decision-making. Key Features of Oracle Fusion General Ledger 1. Multi-Dimensional Accounting Oracle Fusion GL introduces a multi-dimensional chart of accounts using segments. Each transaction is recorded with rich context, such as: Company Cost Center Account Product Location This allows flexible and powerful financial analysis. 2. Ledgers and Ledger Sets Fusion GL supports: Primary Ledgers for actual accounting Secondary Ledgers for statutory or management reporting Ledger Sets for consolidating reporting acros...

Configure Oracle Database Vault Realms

Configure Oracle Database Vault Realms to Secure the HR Schema Oracle Database Vault (DV) is a powerful security feature that enables fine-grained access control by enforcing security policies that protect sensitive data. One of the most important components in Database Vault is the Realm , which creates a security boundary around database objects to prevent unauthorized access — even by highly privileged users. In this blog, we’ll walk through the step-by-step process of configuring a Realm to secure the HR schema in an Oracle Database 19c environment. You’ll learn how to: Create a Realm Add objects to it Restrict access Enable auditing for security tracking What is a Realm? A Realm in Oracle Database Vault defines a logical security boundary around one or more database objects. Once a Realm is in place, no one — not even privileged users like DBAs — can access the protected objects without being explicitly authorized. Realms are ideal for: Securing sensitive ap...

Configure Oracle Database Vault on Oracle CDB$ROOT

Configure Oracle Database Vault on Oracle CDB$ROOT Oracle Database Vault (DV) strengthens the security posture of the Oracle database by enforcing separation of duties and restricting access, even for highly privileged users. While DV is often configured at the PDB level , enterprise environments typically require securing the CDB$ROOT itself to protect the entire multitenant architecture. This blog walks through the complete process of enabling and verifying Oracle Database Vault on CDB$ROOT in an Oracle 19c environment. Step 1: Verify DV and OLS Status Before starting, check if Database Vault and Oracle Label Security (OLS) are installed and verify their status. sql COL DESCRIPTION FORMAT A40 SET LINES 900 SELECT * FROM SYS.DBA_DV_STATUS; SELECT * FROM DBA_OLS_STATUS; If the components are not installed, install them using DBCA or the Oracle-provided scripts. Step 2: Create DV Owner and Account Manager Users You must create common users to manage Database Vault. The...