ld.so.1: sqlplus: fatal: relocation error: file ……/lib/libnnz10.so: symbol nltrc_entry: referenced symbol not found

Hi,

Probably you did not set your env. variables at all or correctly.
so, set these in your ~/.profile / ~/.bash_profile:

export ORACLE_BASE=/oracle/product/11.2.0
export ORACLE_HOME=$ORACLE_BASE/dbhome_1
export LD_LIBRARY_PATH=$ORACLE_HOME/lib
export ORACLE_SID=MUSDB
export PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:/sbin

try and pray :)


ORA-01839 : DATE NOT VALID FOR MONTH SPECIFIED

 

Hi,

 

When adding interval to sysdate be careful.

sysdate type is  date and you add timestamp. For example when you run this on 29.02.2012,

select trunc(sysdate) + interval '3' year from dual;

you will see:

ora-01839 : date not valid for month specified

 

solution:

–add months

select add_months(trunc(sysdate),36) from dual;

 

try and pray :)


HOW TO REMOVE APEX FROM DATABASE

 

Hi,

 

 

You can remove apex using apex remove script on oracle databases.

like this:

 

SQL> @?/apex/apxremov

 

Do not forget to utlrp:

SQL> @?/rdbms/admin/utlrp

 

try and pray :)


INF – ORA-19575: expected …….. blocks in file ………….., found ……..

 

Hi,

 

Probably one or more arc. files are backup up but con not be deleted.

When you lsof file, you may not see anything.

1)

Backup arc file:

$ cp file1.arc file1.arc.old

2)

remove arc file as a superuser:

# rm file1.arc

3)

RMAN> crosscheck archivelog all;

4)
* run archive backup.

try and pray :)


Follow

Get every new post delivered to your Inbox.