Oracle Flashback query

In this post, we will discuss the Flashback technology in Oracle, its architecture, Oracle  Flashback query, the syntax to use Oracle  Flashback query What is Flashback technology in Oracle? Oracle has introduced Flashback Technology that lets you view past states of database objects or return database objects to a previous state without using point-in-time media […]

Oracle Flashback query 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 »

Supplemental Logging in Oracle

What is Supplemental Logging in Oracle Oracle Redo log file has the record of all the operations performed in the database by default or automatically. So Redo log files are generally used for instance recovery and media recovery. They are also used for Physical standby or physical replication. But by default Oracle redo logs files

Supplemental Logging in Oracle Read More »

Scroll to Top