Posted by Mir Sayeed Hassan on November 28th, 2021
How to Install the Oracle Enterprise Manager Cloud Control (OEM) 13.5c on Oracle Linux
Check the OS
[oracle@oem13 ~]$ cat /etc/redhat-release
Red Hat Enterprise Linux Server release 7.5 (Maipo)
Hostname:
[root@oem13 ~]# cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
192.168.***.***...
Read more..
Posted in OEM (Oracle Enterprise Manager) | Comments Off on How to Install the Oracle Enterprise Manager Cloud Control (OEM) 13.5c on Oracle Linux
Posted by Mir Sayeed Hassan on November 15th, 2021
Install Oracle 19c Database Software only on Oracle Linux 7.5
Check the OS
[oracle@ora19c ~]$ cat /etc/redhat-release
Red Hat Enterprise Linux Server release 7.5 (Maipo)
Hostname:
[root@ora19c ~]# cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
192.168.***.*** ora19c
[oracle@ora19c...
Read more..
Posted in DB Install & Create | Comments Off on Install Oracle 19c Database Software only on Oracle Linux 7.5
Posted by Mir Sayeed Hassan on October 30th, 2021
ORA-14404: partitioned table contains partitions in a different tablespace
Got the below error, While dropping a tablespace.
SQL> drop tablespace TEST1_TBL including contents and datafiles;
drop tablespace TEST1_TBL including contents and datafiles;
*ERROR at line 1:
ORA-14404: partitioned table contains partitions in a different tablespace
Posted in ORA-Error | Comments Off on Error while dropping tablespace: ORA-14404: partitioned table contains partitions in a different tablespace
Posted by Mir Sayeed Hassan on October 4th, 2021
How to configure the memory target in Oracle Database
Consider you are running the database with sga & pga configuration., if you need to change it to memroy target, fallow the below process.
Check the status of database
SQL> select instance_name, version, open_mode from V$database, v$instance;
INSTANCE_NAME VERSION OPEN_MODE
----------------------------------------------
oemsw...
Read more..
Posted in DBA Administration | Comments Off on How to configure the memory target in Oracle Database
Posted by Mir Sayeed Hassan on October 4th, 2021
How to create a RMAN Catalog & register in Oracle Database 12c(12.2.0.0)
Overview of recovery catalog
The recovery catalog contains metadata about RMAN operations for each registered target database. therefore when RMAN is connected to a recovery catalog, the RMAN obtains its metadata exclusively from the catalog db, to perform this operation you need to have a dedicated user...
Read more..
Posted in RMAN | Comments Off on How to create a RMAN Catalog & register in Oracle Database 12c(12.2.0.0)
Posted by Mir Sayeed Hassan on October 2nd, 2021
ORA-65162: The password of the common user has expired
The above error is occur due to the user password was expired in your database
Check the status of the user
SQL> select username,account_status from dba_users where account_status like '%EXPIRED%';
USERNAME ACCOUNT_STATUS
-----------------------------
SYSTEM EXPIRED
Posted in ORA-Error | Comments Off on ORA-65162: The password of the common user has expired