How to clone the database using Manual Hot backup

Hot backup database cloning is more suitable for databases that are running 24/7 types of databases and is done using the hot backup. For hot database cloning, the database has to be in archivelog mode and there is no need to shut down the database. The high-level steps for How to clone the database using […]

How to clone the database using Manual Hot backup Read More »

Oracle E-Business Suite Architecture in 12.2

R12.2 is the latest release of the E-Business Suite from Oracle. It contains the latest technology stack and it contains many new features. Most important is the online patching feature. Oracle  R12.2 Architecture Difference between  R12.1 and R12.2 technology stack Important things about Oracle  R12.2 Architecture FS-1 (Production file system) Used by the current users of

Oracle E-Business Suite Architecture in 12.2 Read More »

Pagination in Oracle

Pagination is common in Web-based applications. The user inputs a set of criteria, which runs a query and then lets the user click the Previous and Next buttons to page through the result set. To achieve this paging functionality, the application needs to be able to get a certain set of rows from the Database

Pagination in Oracle Read More »

Query to check languages installed in oracle apps

We can have different languages installed in Oracle apps. Here is the Query to check languages installed in oracle apps select LANGUAGE_CODE from fnd_languages where INSTALLED_FLAG in (‘B’, ‘I’); The Installed_Flag has 3 values I- InstalledB- BaseD- Disabled Example sqlplus apps/<apps pass>select LANGUAGE_CODE from fnd_languages where INSTALLED_FLAG in (‘B’, ‘I’);LANG_____USDFR Important Points The above query

Query to check languages installed in oracle apps Read More »

Scroll to Top