sh: error importing function definition for BASH_FUNC_module in linux

In this post, we will resolve error importing function definition for ‘BASH_FUNC_module‘. Error:   sh: module: line 1: syntax error: unexpected end of file   sh: error importing function definition for ‘BASH_FUNC_module‘   or   sh: module: line 1: syntax error: unexpected end of file sh: error importing function definition for `module’     Steps … Read more

drop database command in oracle

Introduction: –     Steps to remove oracle database in Oracle |. Suppose we have requirement to drop entire oracle   database if we are planning to refresh test or development database instance, to fulfill the   requirement we must drop/delete/remove the database. There are several ways to remove database. We   will discuss here using CLI to delete oracle … Read more

adrelink is exiting with status 1 r12

adrelink is exiting with status 1 r12| When attempting to apply R12.ATG_PF.B.delta.3 patch 8919491, error appears on relink, the following error occurs on relinking executables task. How to fix adrelink is exiting with status 1 r12 ERROR — adrelink failed in r12 adrelink.log:- Relink of module “MSCCPP” failed. Relink of module “MSCMON” failed. Relink of module “MSCNEW” … Read more

Create bigfile tablespace in oracle

How to Create bigfile tablespace| A bigfile tablespace is a tablespace with a single, but very large (up to 4g blocks) datafile. A bigfile tablespace with a typical 8K block can contain a single 32-terabyte datafile. If you’re using a 32K block, it can contain a 128-terabyte datafile.  SQL> CREATE BIGFILE TABLESPACE bigtbls DATAFILE ‘/data01/prod/bigtbs01.dbf’ … Read more

Create tablespace in oracle database.

If you want to increase the size of oracle database. We must Create tablespace in oracle database. or increase the size of existing tablespace by resize datafile or add datafile to tablespace. Check Tablespace size in oracle database. SELECT /* + RULE */  df.tablespace_name “Tablespace”,        df.bytes / (1024 * 1024) “Size (MB)”, … Read more

Alter database datafile resize.

If we want to resize the existing data file. We must use alter database datafile resize command. Steps to resize using alter database datafile resize.     Before doing resize the data file in oracle database, we will have to check the existing data file size.   SQL>select file_name,bytes/1024/1024 SIZE_IN_MB from  dba_data_files where tablespace_name=’XXCUSTOM’;     … Read more

Alter tablespace add datafile.

Suppose our database getting full. In that situation we have to increase the size of database to add datafile in existing tablespace or creating new tablespace along with datafile. How to add datafile to tablespace in oracle: – We can increase space in oracle database to add datafile or resize existing datafile to existing tablespace. … Read more

Weblogic 10.3.6 Patching Error Using BSU – “java.lang.OutOfMemoryError: GC overhead limit exceeded.”

We will fix java.lang.OutOfMemoryError: GC overhead limit exceeded. Facing this error while applying bsu patches. We can resolve it by increasing memory size as below. How to fix java.lang.OutOfMemoryError. Error:- While trying to apply the BSU patch, facing below error. $./bsu.sh -install -patch_download_dir=$FMW_HOME/utils/bsu/cache_dir -patchlist=KRDE -prod_dir=/data01/apps1225/fs1/FMW_Home/wlserver_10.3 Solution: – Follow these steps to resolve the issue: A.==>Go … Read more