Mir Sayeed Hassan – Oracle Blog

Oracle DBA – Tips & Techniques | Learn with real-time examples

Archive for the 'DBA Administration' Category

How to set up the Oracle Wallets in Oracle Database 21C/19C

Posted by Mir Sayeed Hassan on 1st November 2023

How to set up the Oracle Wallets in Oracle Database Brief about the Oracle Wallets The Oracle Wallet is a container or we can called it as repository that stores authentication and credentials such as certificates, certificate requests, and private keys., By using this we can connect to db without providing the schema name & Read More

Posted in DBA Administration | Comments Off on How to set up the Oracle Wallets in Oracle Database 21C/19C

How to Install Docker on UBUNTU Server

Posted by Mir Sayeed Hassan on 1st November 2023

How to Install Docker on UBUNTU Server Check the IP address to assign into the resolv.conf file nameserver 178.22.***.*** ubuntu@mir-docker-test:~$ sudo cat /etc/resolv.conf nameserver 178.22.***.***— this file is added nameserver 127.0.0.53 options edns0 search openstacklocal This command will remove if any Docker is… Read more..

Posted in DBA Administration | Comments Off on How to Install Docker on UBUNTU Server

Installation of Ansible Packages on Oracle Linux 7

Posted by Mir Sayeed Hassan on 29th October 2023

Installation of Ansible Packages in Oracle Linux Download the below require Packages to configure ansible. [root@ansible-test]# cd /u02/SOURCE/RPM_PKG/ansible/ [root@ansible-test]# ll total 17808 -rwxrwxrwx. 1 root root 17832207 Oct 29 15:26 ansible-2.9.27-1.el7.noarch (2).rpm -rwxrwxrwx. 1 root root 42303 Oct 29 15:26 python2-jmespath-0.9.4-2.el7.noarch… Read more..

Posted in DBA Administration | Comments Off on Installation of Ansible Packages on Oracle Linux 7

Cannot open the Pluggable Database due to ORA-65086: cannot open/close the pluggable database

Posted by Mir Sayeed Hassan on 27th August 2023

Cannot open the Pluggable DB due to ORA-65086: cannot open/close the pluggable database Check the status of database SQL> select instance_name, open_mode, version from V$database, v$instance; INSTANCE_NAME OPEN_MODE VERSION —————————————– ORA19c READ WRITE 19.0.0.0.0 Perform the Unplug… Read more..

Posted in DBA Administration | Comments Off on Cannot open the Pluggable Database due to ORA-65086: cannot open/close the pluggable database

Error occur while dropping tablespace as ORA-23515: materialized views and/or their indices exist in the tablespace

Posted by Mir Sayeed Hassan on 10th August 2023

Error occur while dropping tablespace as ORA-23515: materialized views and/or their indices exist in the tablespace Drop the tablespace SQL> drop tablespace MGMT_TABLESPACE including contents and datafiles; drop tablespace MGMT_TABLESPACE including contents and datafiles * ERROR at line 1: ORA-23515: materialized views and/or… Read more..

Posted in DBA Administration | Comments Off on Error occur while dropping tablespace as ORA-23515: materialized views and/or their indices exist in the tablespace

How to login the user schema without knowing the password in Oracle Database

Posted by Mir Sayeed Hassan on 4th May 2023

How to login the user schema without knowing the password in Oracle Database 19c Note: – This scenario is to login to the user without knowing the password & perform some test operation purpose only. – You can change/re-set the user password with new password but inconvenience to the end user. – Therefore the Oracle… Read More

Posted in DBA Administration | Comments Off on How to login the user schema without knowing the password in Oracle Database