Home » Page 22

How to check encrypted tablespace in the Database

This post will discuss How to check encrypted tablespace in the Database. This question will be useful when you are checking the security of the database. What is a TDE wallet? Transparent Data Encryption (TDE) is a feature available in Oracle Database for securing sensitive data at the storage level. The TDE Wallet is a …

How to check encrypted tablespace in the Database Read More »

How to drop the sql baseline in Oracle

You can drop a SQL Plan Baseline in Oracle using the DBMS_SPM.DROP_SQL_PLAN_BASELINE function. DBMS_SPM.DROP_SQL_PLAN_BASELINE ( sql_handle IN VARCHAR2 := NULL, plan_name IN VARCHAR2 := NULL) RETURN PLS_INTEGER; Syntax To drop all the plans of the sql statement DECLARE l_result INTEGER; BEGIN l_result := DBMS_SPM.drop_sql_plan_baseline(sql_handle => ‘&SQL_HANDLE’); END; / To drop a particular plan of the …

How to drop the sql baseline in Oracle Read More »

Scroll to Top