A technical troubleshooting blog about Oracle with other Databases & Cloud Technologies.

black and white photo of clocks 2 min read

Cron is named after Greek word “Chronos” that is used for time. It is a system process that will automatically...

1 min read

Create user CREATE USER <USERNAME> IDENTIFIED BY <PASSWORD> DEFAULT TABLESPACE <TABLESPACE_NAME> TEMPORARY TABLESPACE ; Drop user drop user <USERNAME> cascade;...

monitor displaying computer application 1 min read

Daily Archivelog Generation and size: with daily_summary as ( select trunc(COMPLETION_TIME,'DD') Day, thread#, round(sum(BLOCKSBLOCK_SIZE)/1048576) MB,count() Archives_Generated from v$archived_log where dest_id=1...