Best API to reset password in oracle EBS R12.

Introduction:- In this article, we will use best API to reset password from backend | Being Oracle Database administrator,we are using various API scripts to do the administrative task in Oracle Database.Before executing script we should test it on test/dev instance, then migrate the solution/script to production carefully. Here we are discussing ‘how to change user password … Read more

Best API to end date responsibility from fnd user

Introduction:- Being Oracle Database administrator, we are using various API to end date responsibility to do the administrative task in Oracle Database.Before executing script we should test it on test/dev instance, then migrate the solution/script to production carefully. Here we are discussing ‘how to end date responsibility in oracle apps from backend‘ using API to … Read more

API to add responsibility to user in oracle apps from backend

API to add responsibility to Assign responsibility to user in oracle apps from backend | Being Oracle Database administrator, we are using various API scripts to do the administrative task in Oracle Database.Before executing script we should test it on test/dev instance, then migrate the solution to production carefully. Here we are discussing ‘how to … Read more

rman catalog commands to register old backupset

Introduction: – RMAN catalog command tips | To restore the oracle database using rman , first of all we have to Cataloging RMAN backup in RMAN Catalog. There are many rman catalog commands to register old backupset to new location, so that rman read the backup piece and restore them. Below is some RMAN CATALOG command example. Catalog … Read more

sh: error importing function definition for BASH_FUNC_module in linux

In this post, we will resolve error importing function definition for ‘BASH_FUNC_module‘. Error:   sh: module: line 1: syntax error: unexpected end of file   sh: error importing function definition for ‘BASH_FUNC_module‘   or   sh: module: line 1: syntax error: unexpected end of file sh: error importing function definition for `module’     Steps … Read more

drop database command in oracle

Introduction: –     Steps to remove oracle database in Oracle |. Suppose we have requirement to drop entire oracle   database if we are planning to refresh test or development database instance, to fulfill the   requirement we must drop/delete/remove the database. There are several ways to remove database. We   will discuss here using CLI to delete oracle … Read more

adrelink is exiting with status 1 r12

adrelink is exiting with status 1 r12| When attempting to apply R12.ATG_PF.B.delta.3 patch 8919491, error appears on relink, the following error occurs on relinking executables task. How to fix adrelink is exiting with status 1 r12 ERROR — adrelink failed in r12 adrelink.log:- Relink of module “MSCCPP” failed. Relink of module “MSCMON” failed. Relink of module “MSCNEW” … Read more

Create bigfile tablespace in oracle

How to Create bigfile tablespace| A bigfile tablespace is a tablespace with a single, but very large (up to 4g blocks) datafile. A bigfile tablespace with a typical 8K block can contain a single 32-terabyte datafile. If you’re using a 32K block, it can contain a 128-terabyte datafile.  SQL> CREATE BIGFILE TABLESPACE bigtbls DATAFILE ‘/data01/prod/bigtbs01.dbf’ … Read more