Database Blog

Tips to import the export and import datapump performance

1) Use parallel 2)While mentioning the dump file, use _%U.dmp (generates multiple dumps), which will be faster. 3)Increase the stream pool size alter system set streams_pool_size=2G; alter system set “_disable_streams_pool_auto_tuning”=TRUE;…

Read More

An Invalid redirect has been blocked error

Issue: As we all know, APEX page can be integrated into EBS as a function. After integrating Apex pages in EBS 12.2 when you access apex page from EBS, you…

Read More

Moving datapump dumpfiles In and Out of Autonomous data warehouse

Click here to Download

Read More

Performing Expdp/Impdp in Autonomous datawarehouse using SQLDEVELOPER

Click here to Download

Read More

Cloning Autonomous data warehouse using backup

Click here to Download  

Read More

Cloning Autonomous data warehouse from Live

Click here to Download as PDF

Read More

Script to check Long running 12c forms in Forms Application server

The below script is to check Long running 12c forms in Forms Application server   #!/bin/bash ############################################################################### # File Name : long_runn_forms.sh # Author : Vimal Raju # Date :…

Read More

Script to get metadata for all dblinks

The below script is to get metadata for all dblinks   # @(#) ==================================================================== # @(#) Reverse engineering all database links # @(#) # @(#) # @(#) Format: reverse_all_dblinks.sql #…

Read More

Script to Disable constraints

The below script is to Disable constraints,   SET PAGES 0 SET TRIMSPOOL ON SET LINES 200 set echo off set feedb off set trimspool on set verify off col…

Read More

Script to Enable constraints

The below script is to Enable constraints,   SET PAGES 0 SET TRIMSPOOL ON SET LINES 200 set echo off set feedb off set trimspool on set verify off col…

Read More