MBRKAIS
D:\MBR-DBS-DATA\MBRKAIS\{DB_UNIQUE_NAME}
E:\MBR-DBS-DATA\MBRKAIS\FAST_RECOVERY_AREA\{DB_UNIQUE_NAME}
Click Advanced Configuration
E:\MBR-DBS-DATA\MBRKAIS\FAST_RECOVERY_AREA\
MBRKAIS
D:\MBR-DBS-DATA\MBRKAIS\{DB_UNIQUE_NAME}
E:\MBR-DBS-DATA\MBRKAIS\FAST_RECOVERY_AREA\{DB_UNIQUE_NAME}
Create a oracle home directory and extract downloaded oracle home setup to this folder location
D:\app\oracle\product\19.0.0\dbhome_1
Oracle base:
D:\app\oracle
Oracle Home (Software Location) :
D:\app\oracle\product\19.0.0\dbhome_1
SELECT
a.tablespace_name "TABLESPACE_NAME",
ROUND(a.current_mb) "CURRENT SIZE(MB)",
ROUND(a.max_mb) "MAXIMUM SIZE (MB)",
ROUND(a.max_mb - (a.current_mb - c.free)) "FREE SPACE (MB)",
ROUND(a.current_mb - c.free) "USED_MB",
ROUND(((a.current_mb - c.free) * 100) / a.max_mb) "USED PCT%"
FROM
(
SELECT
tablespace_name,
SUM(a.bytes) / (1024 * 1024) current_mb,
SUM(
DECODE(
a.autoextensible,
'NO',
a.bytes / (1024 * 1024),
GREATEST(
a.maxbytes / (1024 * 1024),
a.bytes / (1024 * 1024)
)
)
) max_mb
FROM dba_data_files a
GROUP BY tablespace_name
) a,
(
SELECT
d.tablespace_name,
SUM(NVL(c.bytes / (1024 * 1024), 0)) free
FROM dba_tablespaces d,
dba_free_space c
WHERE d.tablespace_name = c.tablespace_name(+)
GROUP BY d.tablespace_name
) c
WHERE
a.tablespace_name = c.tablespace_name
ORDER BY
ROUND(((a.current_mb - c.free) * 100) / a.max_mb) DESC;
An Oracle Database consists of at least one database instance and one database. The database instance handles memory and processes. The multitenant container database consists of physical files called data files. An Oracle Database also uses several database system files during its operation.
A single-instance database architecture consists of one database instance and one database. A one-to-one relationship exists between the database and the database instance. Multiple single-instance databases can be installed on the same server machine. There are separate database instances for each database. This configuration is useful to run different versions of Oracle Database on the same machine.
The listener is a database server process. It receives client requests, establishes a connection to the database instance, and then hands over the client connection to the server process. The listener can run locally on the database server or run remotely. Typical Oracle RAC environments are run remotely.
The shared pool is a component of the System Global Area (SGA) and is responsible for caching various types of program data. For example, the shared pool stores parsed SQL, PL/SQL code, system parameters, and data dictionary information. The shared pool is involved in almost every operation that occurs in the database. For example, if a user executes a SQL statement, then Oracle Database accesses the shared pool.
The shared pool is divided into several subcomponents: