I’m given a task to find the empty tablespaces.I’ve checked dev server and majority of the tables’ stats were locked.This solution takes time but works.…
View More Finding Empty Tablespaces in OracleTag: oracle
Understanding IOPS vs. throughput
Input/output operations per second (IOPS) and data throughput are two popular performance characteristics of any storage system. In the early days of computer technology, when…
View More Understanding IOPS vs. throughputSelectivity vs Cardinality
What is selectivity? Selectivity is the estimated proportion of the rows that will return from our query based on the total rows of that table.…
View More Selectivity vs CardinalityEnable or Disable Table Locks in Oracle Database
Table Locks are an important part of Oracle Working Mechanism as they provide security from unwanted deletion or modification of table’s data which can sometimes…
View More Enable or Disable Table Locks in Oracle DatabaseColumn Histograms in Oracle 11g
Data skew in a column can make it difficult for the optimizer to accurately estimate the cardinality of an operation. Without a histogram it will…
View More Column Histograms in Oracle 11gOracle Text Index
With Oracle text indexes (or Domain index), we can index text documents and search it based on contents using text patterns with specialized text query operators. Oracle…
View More Oracle Text IndexExport Import statistics with dbms_stats in Oracle
You can use the Oracle dbms_stats and export utilities to migrate schema statistics from your PROD instance to your TEST instance, so that your developers…
View More Export Import statistics with dbms_stats in OracleOracle Version Numbers
Something that always comes up when discussing Oracle versions is that I am not always sure which number is the Major Database Release and which is the Database…
View More Oracle Version NumbersFind password for database link (<= 11.2.0.2)!
when we need to recreate a database link for some reason and we do not happen to have the password handy, weβre usually stuck. However,…
View More Find password for database link (<= 11.2.0.2)!How to check progress of a long running statistics gathering job
If you have a long-running statistics job running, you can check it from v$session_longops: For example, you execute: Check progress with:
View More How to check progress of a long running statistics gathering job