Mir Sayeed Hassan – Oracle Blog

Oracle DBA – Tips & Techniques | Learn with real-time examples

  • Translate

  • It’s Me




  • My Certificates

  • Links

    My Acclaim Certification : Credly Profile
    My Oracle ACE Pro Profile

  • Achievements

    Awarded Top 100 Oracle Blogs from Worldwide - #RANK 39
  • VISITORS COUNT

  • Verified International Academic Qualification from World Education Service (WES)

    Verified International Academic Qualification from World Education Service (WES)

  • Jobs

Archive for the 'Oracle SQL' Category

How to drop all object from Schema in Oracle Database.

Posted by Mir Sayeed Hassan on 29th April 2023

How to drop all object from Schema in Oracle Database. In this scenario., we are going to drop all the objects under the schema Check the status of database. [oracle@ora21cdb ~]$ sqlplus / as sysdba SQL*Plus: Release 21.0.0.0.0 – Production on Wed Apr 26 16:43:19 2023 Version 21.3.0.0.0 Copyright (c) 1982, 2021, Oracle. All rights Read More

Posted in Oracle SQL | Comments Off on How to drop all object from Schema in Oracle Database.

How to generate the ramdon User Password in Oracle Database

Posted by Mir Sayeed Hassan on 6th December 2022

How to generate the ramdon User Password in Oracle Database Note: – Password should be 12 characters in length or as per the organization. – Password should include at least one uppercase letter, one lower case letter, one number and one special character (&*(){}|[]+<>!@#$%^?). SQL> select translate(dbms_random.string(‘a’,… Read more..

Posted in Oracle SQL | Comments Off on How to generate the ramdon User Password in Oracle Database

Overview of Profile Management with real-time scenario in Oracle Database 11gR2 (11.2.0.4)

Posted by Mir Sayeed Hassan on 20th October 2020

Overview of Profile Management with real-time scenario in Oracle Database 11gR2 (11.2.0.4) A Profile is a database object & it’s named set of resource limits to such as restrict database usage by a system user. Examples of resources that need to be managed are Disk storage space, I/O bandwidth to run queries, CPU power, CPU Read More

Posted in Oracle SQL | Comments Off on Overview of Profile Management with real-time scenario in Oracle Database 11gR2 (11.2.0.4)

How to login another database user without knowing a password in Oracle database 11gR2

Posted by Mir Sayeed Hassan on 5th February 2019

How to login another database user without knowing a password in Oracle database 11gR2 This operation can perform by DBA, if & only if it’s approved from higher management & it’s not a good practice to break the Oracle Security rule. Consider we want to perform the activity with different user but you don’t have Read More

Posted in Oracle SQL | Comments Off on How to login another database user without knowing a password in Oracle database 11gR2

How to login a database user without knowing a password in Oracle database 11gR2

Posted by Mir Sayeed Hassan on 5th February 2019

How to login a database user without knowing a password in Oracle database 11gR2 This method also try to login into the MIR1 user without knowing the password, after completion of the task later we can restore the same password for MIR1. [oracle@testdb ~]$ !sq sqlplus / as sysdba sys@TESTDB> sho user USER is “SYS”

Posted in Oracle SQL | Comments Off on How to login a database user without knowing a password in Oracle database 11gR2

Query to delete all Objects from specific user in Oracle database 11gR2

Posted by Mir Sayeed Hassan on 4th February 2019

Query to delete all Objects from specific user in Oracle database 11gR2 Database Status sys@TESTDB>select instance_name,status,version from V$instance; INSTANCE_NAME STATUS VERSION —————- ———— —————– testdb OPEN 11.2.0.4.0 Connect to specific user “MIR” sys@TESTDB>connect… Read more..

Posted in Oracle SQL | Comments Off on Query to delete all Objects from specific user in Oracle database 11gR2