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

asrblogger

KSC-20161117-PH-SWW01_0001 1 min read

The SEC_CASE_SENSITIVE_LOGON parameter is deprecated. It is retained for backward compatibility only.  SEC_CASE_SENSITIVE_LOGON enables or disables password case sensitivity in the database. true:...

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...

a close up shot of a command key 6 min read

File and Directory The "pwd" command displays the current directory: # pwd /u01/app/oracle/product/19.0.0/dbhome_1 The "ls" command lists all files and directories in the specified...

1 min read

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

Greeting card featuring two cartoons depicting Mr P.L. Oliver (blood donation memorabilia) 3 min read

In this article, we’ll discuss 5 new features and functionality of Oracle Database 19c that will have you not just...

monitor displaying computer application 3 min read

LOCK A USER: alter user SCOTT account lock; UNLOCK A USER: alter user SCOTT account unlock; CHECK STATUS OF USERS:...

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...