It depends on what name you want to change in the database. Usually, database name can be DB_NAME, DB_UNIQUE_NAME or both in Oracle. We have… Read More »How Oracle Rename Database
USER_LOCK USER_LOCK is not a default package of SYS, you need to install it before using it. SQL> conn / as sysdba Connected. SQL> @?/rdbms/admin/userlock.sql… Read More »How to Install USER_LOCK Package
Scheduler Time Zone Before doing that, we have make sure the time zone region you want to set is valid for Oracle. Then we change… Read More »How to Set Scheduler Time Zone
PACKAGE DBMS_SCHEDULER I found that some subprograms of DBMS_SCHEDULER package are no listed in the Oracle documentation. However, we get the complete list by describing… Read More »DBMS_SCHEDULER Subprograms All Available List
Stopping a Running Job Sometimes, we may find scheduled jobs currently impact other running sessions, we may consider to turn it off right away. Killing… Read More »How DBMS_SCHEDULER.STOP_JOB
DBA_, ALL_ and USER_ Views You may think all dictionary views have their corresponding ones in different sets or scopes. For example, I'd like to… Read More »Data Dictionary View Sets Comparison