Find users with DBA privilege in Oracle
Being Oracle DBA we are aware that Oracle provides lots of views and parameters which helps DBA a lot to maintain the database. In this article, we are going to know about the user’s privilege. We may...
View ArticleProgress status of index rebuild in Oracle
The game never ends after the creation of anything. It starts when it comes to the phase of maintenance. Today we are going to have look on the query which is used to look “Progress status of index...
View ArticleHow to Flush Single SQL Plan out of Shared Pool in Oracle
Todays let ‘s have look at the query which we use to resolve this issue ” How to Flush Single SQL Plan out of Shared Pool”. Find the address and the hash valueSQL> select ADDRESS, HASH_VALUE...
View ArticleMAXDATAFILES and other files in Oracle
This Post is about the trick by which we can use to monitor the CRDs of Oracle Database. Monitoring is the most important and common task in RDBMS. Without monitoring CDR Let’s have look on the query...
View ArticleHow to Purge Listener Log in Oracle
Being DBA we all are aware that Oracle Database makes a connection with a client with the help of listener. Oracle provides the facility to have look over the status of Oracle listen. Being a part of...
View ArticleDelete applied archivelog script
We need to delete archivelogs which are applied on standby servers. Following script will do the job for you. vi /home/oracle/crons/remove_applied_archivelog.sh #!/bin/ksh # # # Remove applied...
View ArticleRMAN Backup With Archivelog
This post is about how to take RMAN Backup With ArchivelogRMAN> run { allocate channel c1 type disk; backup database; backup(archivelog all); }RMAN> backup archivelog all delete input;Note: This...
View Article