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 'DBA Administration' Category

Managing Redo Logfiles in Oracle database 11gR2

Posted by Mir Sayeed Hassan on 7th February 2018

Managing Redo Logfiles in Oracle database 11gR2 Brief about the Redo logfiles in an Oracle databases it should contain atleast 2 redo logfile group as mandatory & Oracle writes every statement expect the select statement, Example – update etc, The Oracle writes to the datafile in case if there is power failure or any system Read More

Posted in DBA Administration | Comments Off on Managing Redo Logfiles in Oracle database 11gR2

Creation of dblink from Oracle to SQL Server

Posted by Mir Sayeed Hassan on 31st January 2018

Creation of dblink from Oracle to SQL Server Step by step procedure to create a database link from Oracle Database 11g to SQL Server. Database Version: sys@testdb> select INSTANCE_NAME, VERSION from v$instance; INSTANCE_NAME    VERSION —————- ———– testdb          … Read more..

Posted in DBA Administration | Comments Off on Creation of dblink from Oracle to SQL Server

How to move the table from one tablespace to another in Oracle database 11gR2

Posted by Mir Sayeed Hassan on 22nd January 2018

How to move the table from one tablespace to another in Oracle database 11gR2 Fallow the step by step procedure as shown below for testing env: sys@testdb> sho user USER is “SYS” sys@testdb> create user mir identified by mir; User created. sys@testdb> grant connect,resource… Read more..

Posted in DBA Administration | Comments Off on How to move the table from one tablespace to another in Oracle database 11gR2

Resize Redo log files in Oracle database 11gr2

Posted by Mir Sayeed Hassan on 31st December 2017

Resize Redo log files in Oracle database 11gr2  Note: We cannot resize the redo log files in Oracle database as we need to drop them & re-create it, Hence its the only way to resize the redo log files Therefore database require at least 2 groups of redo log files regardless the no of… Read Read More

Posted in DBA Administration | Comments Off on Resize Redo log files in Oracle database 11gr2

Set up your own SID name by connecting Sql*Plus in Oracle database

Posted by Mir Sayeed Hassan on 31st December 2017

Set up your own SID name by connecting Sql*Plus in Oracle database Below example will change the Sql*Plus view & display your DB Name (SID) by connecting username instead of word “SQL” By default in all the Oracle database as shown below: SQL> show user; USER is “SYS” You need… Read more..

Posted in DBA Administration | Comments Off on Set up your own SID name by connecting Sql*Plus in Oracle database

Monitoring any table operation from your own schema in Oracle database

Posted by Mir Sayeed Hassan on 31st December 2017

Monitoring any table operation from your own schema in Oracle database SQL> conn mir/mir123; Connected. SQL> select table_name from user_tables; TABLE_NAME ———— TEST1 SQL> conn sys/sys as sysdba Connected. SQL> alter table mir.test1 monitoring; Table… Read more..

Posted in DBA Administration | Comments Off on Monitoring any table operation from your own schema in Oracle database