Home » Page 14

Steps to clear Production credential in cloned EBS instance

Invalidating all the passwords in the database (1) Start the database clone for the first time startup restrict (2) Clear all production credentials from the cloned database( This step is not mandatory, we can avoid it also) update SYS.user$ setpassword = translate(password,’0123456789ABCDEF’,’0000000000000000′)where type#=1 and length(password) = 16/update APPLSYS.FND_ORACLE_USERID setENCRYPTED_ORACLE_PASSWORD=’INVALID’/update APPLSYS.FND_USER setENCRYPTED_FOUNDATION_PASSWORD=’INVALID’,ENCRYPTED_USER_PASSWORD=’INVALID’/commit; (3)Shutdown the database shutdown …

Steps to clear Production credential in cloned EBS instance Read More »

How to perform DML operations on Oracle View: Insert, Update, delete

DML operations like insert, update, and delete are allowed in Oracle views with certain restrictions. Let’s check in this post to update the view in Oracle, insert into view Oracle, delete from view in Oracle DML on view in Oracle For example, Let’s first create the TEST view. Create view emp_data  as select e.empno,e.ename,e.sal,e.deptno,d.dname From …

How to perform DML operations on Oracle View: Insert, Update, delete Read More »

What is Essbase 21c

Essbase 21c is the latest version of Oracle essbase. It is the first release after 11.1.2.4 where Oracle is giving the option of installing on the on-prem machine. New Feature in Essbase 21c New Improved User Interface Essbase 21c has improved the user interface from the Essbase 19c Version. Shadow Application New Improved Outline Editor …

What is Essbase 21c Read More »

Scroll to Top