Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL error on AIX 5.1

Status
Not open for further replies.

ranjank

IS-IT--Management
May 9, 2003
176
IN
Hi ALL

I am getting the error while executing sql query on AIX 5.1,following is the error:-

$ ./sqlplus
exec(): 0509-036 Cannot load program ./sqlplus because of the following errors:
0509-130 Symbol resolution failed for sqlplus because:
0509-136 Symbol pw_post (number 273) is not exported from
dependent module /unix.
0509-136 Symbol pw_wait (number 274) is not exported from
dependent module /unix.
0509-136 Symbol pw_config (number 275) is not exported from
dependent module /unix.
0509-136 Symbol aix_ora_pw_version3_required (number 276) is not expor
ted from
dependent module /unix.
0509-192 Examine .loader section symbols with the
'dump -Tv' comman

Can anyone help me out on this.

Regards,
RK.
 
Take a look at this string: thread52-575521

The original user never came back to say if the solution fixed her problem, but it may help.
 
how about loading your kernel extensions with loadext? we keep our commands for that in /etc/inittab.

IBM Certified -- AIX 4.3 Obfuscation
 
The Oracle database uses asynchronous I/O (AIO) as an I/O media to read and write data on the storage system. In AIX, by default, the AIO capability is off. There will be error messages generated by AIX when an application tries to use AIO while it is not enabled. The error message is not very clear. The following is a sample:

0509-130 symbol resolution failed for /usr/lib/libc.a (aio.o) because
0509-136 symbol kaio_rdwr (number 0) is not exported from
dependent module /unix


Tuning
To enable AIO is simple. From "smitty aio,"

Change / Show Characteristics of Asynchronous I/O
STATE to be configured at system restart Choose "available."
This change does require a reboot.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top