Home » Page 2

How to check Tablespace in Oracle – Size, Free space, datafiles , growth

How to check tablespace name in Oracle To list the names and various other parameters of all tablespace in a database, use the following query on the DBA_TABLESPACES view: SELECT TABLESPACE_NAME “TABLESPACE”, EXTENT_MANAGEMENT,FORCE_LOGGING,BLOCK_SIZE,SEGMENT_SPACE_MANAGEMENTFROM DBA_TABLESPACES; With CDB Databases, you must connect to individual PDB and execute the query to check the tablespace. If you want to …

How to check Tablespace in Oracle – Size, Free space, datafiles , growth Read More »

How to check undo tablespace in Oracle : Size , Usage

What is UNDO? How to monitor the usage of UNDO tablespace (1)Check allocated space and free space for UNDO tablespace. SELECT /* + RULE */ df.tablespace_name “Tablespace”,df.bytes / (1024 * 1024) “Size (MB)”,SUM(fs.bytes) / (1024 * 1024) “Free (MB)”,Nvl(Round(SUM(fs.bytes) * 100 / df.bytes),1) “% Free”,Round((df.bytes – SUM(fs.bytes)) * 100 / df.bytes) “% Used”FROM dba_free_space fs,(SELECT …

How to check undo tablespace in Oracle : Size , Usage Read More »

How the histograms are generated in EBS

How the histograms are generated in EBS Oracle product team decides about the column where histograms are needed and those columns are inserted into the table FND_HISTOGRAM_COLS. FND_STATS collects histogram information if a column is listed in FND_HISTOGRAM_COLS. we should not use DBMS_STATS to gather stats in the EBS database as then it will create …

How the histograms are generated in EBS Read More »

Scroll to Top