Home

Sql plan Management in Oracle

SQL Plan Management (SPM) in Oracle is a preventative mechanism that provides a level of control over the execution plans used by the Oracle optimizer. It ensures that regression due to changes in execution plans doesn’t occur, even as the database undergoes changes such as database upgrades, a gathering of new statistics, or changes to …

Sql plan Management in Oracle Read More »

How do I drop the histogram on a column and prevent to generate in future

Sometimes you want to drop the histogram of a particular table and dont want to generate a histogram for a particular column in the table. let’s see how we can achieve it 11G and the above solution First of all, you can delete the existing histograms using the below command BEGIN dbms_stats.delete_column_stats( ownname=>’SCOTT’, tabname=>’TEST’, colname=>’UNIQ_ID’, …

How do I drop the histogram on a column and prevent to generate in future Read More »

How to check recycle bin in Oracle: Purge, enable/disable

The concept of a “Recycle Bin” plays a crucial role in data recovery and management. This feature, introduced in Oracle 10g, is akin to the recycle bin in Windows or the trash in macOS, providing a safety net for data that has been deleted. In this article, we will discuss the recycle bin in Oracle, …

How to check recycle bin in Oracle: Purge, enable/disable Read More »

Scroll to Top