error connecting database from perl


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting error connecting database from perl
# 1  
Old 09-17-2007
Java error connecting database from perl

Hi,

While i am trying to connect to Oracle database from Perl using DBI module,am getting the error as follows :

Can't load '/usr/local/fuseperl-modules/lib/i586-linux-thread-multi/auto/DBD/Oracle/Oracle.so' for module DBD::Oracle: libwtc9.so: cannot open shared object file: No such file or directory at /usr/lib/perl5/5.8.0/i586-linux-thread-multi/DynaLoader.pm line 229.

I am confident in the case that the driver DBD::Oracle was installed.

Can anyone suggest,what is happening and why?

With Regards
Dileep Pattayath
# 2  
Old 09-17-2007
Try This

#echo $ORACLE_HOME/lib >> /etc/ld.so.conf
# ldconfig
# 3  
Old 09-17-2007
Quote:
Originally Posted by SanjayLinux
Try This

#echo $ORACLE_HOME/lib >> /etc/ld.so.conf
# ldconfig
Thanks for your reply

But i don't have write access to this directory /etc.Can you suggest anything to be done from the user end.

Anyway what the above code will represent?

With Regards
Dileep Pattayath
# 4  
Old 09-17-2007
Hammer & Screwdriver

Dileep,
It seems to me some problem with Perl module that properly not installed or might be the lib path (xxxx.so) files in different location.

So why I asked for
#echo $ORACLE_HOME/lib >> /etc/ld.so.conf

Here it will put all the .so files with in /etc/ld.so.conf files.

# ldconfig

After executing the above command it will get affect mean to say it will read all these .so files location.

One suggestion you can verify whether that files (.pm) is existing or not
"/usr/lib/perl5/5.8.0/i586-linux-thread-multi/DynaLoader.pm "

## find / -name DynaLoader.pm

Then compare the location .. If it is not there that mean Your driver DBD perl module didn't compile properly.

~~~Sanjay~~~
# 5  
Old 09-17-2007
Java

ok,fine.Thank you.

The problem was solved now.I set the environment variable LD_LIBRARY_PATH="$ORACLE_HOME/lib".I think this was the same idea you gaven.Now it's working fine.

Thanks for your time and effort

With Regards
Dileep Pattayath
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Connecting to Oracle database

Hi guys, long time no typing :D I have problems when I try to connect to Oracle database from SQL Developer which is located on my Windows box. Server is running Solaris 11/11 and Oracle 11 enterprise. I can log in locally with sys account to database, start it up and shut it down but when I... (2 Replies)
Discussion started by: solaris_user
2 Replies

2. Shell Programming and Scripting

script for connecting database in loops

Hi experts. I have different database and schema and their passwords in one file. In Unix : I want to create the script that connect the sqlplus and execute the select query one by one schema with different database. Ex: password File Format databse schemaname password DB1 name1 ... (1 Reply)
Discussion started by: abhigrkist
1 Replies

3. Shell Programming and Scripting

Connecting database

Hi all, In my concern they gave a task to me do cran job like To write a shell script for To connect a database it should execute a query it should save the output of the query after getting the output it should send a mail to you inbox for every one hour I can able to... (8 Replies)
Discussion started by: thelakbe
8 Replies

4. Shell Programming and Scripting

Connecting to oracle database

Hai i want to connect to oracle database from user input and create a view. ${ECHO} "Debut Creating View" ${ECHO} "Please Enter the User Name:" read user_name ${ECHO} "Please Enter the Connection String:" read con_string ${ECHO} "Please Enter the Password:" read pwd... (3 Replies)
Discussion started by: shenthil76
3 Replies

5. Shell Programming and Scripting

connecting to different database in sqr

Hi, My requirement is to generate a single text output which fetches data from two different databases. I have two different sqrs to generate text file1(data from db1) and file2(data from db2). can I execute both the sqrs from a single shell script? If yes, pls let me know how to connect to db2... (1 Reply)
Discussion started by: vimalr
1 Replies

6. Shell Programming and Scripting

Connecting to Database

Hi, I want to write a shell script which connects to a Database, executes a set of SQLs and displays a message for every SQL that was run whether any records have been returned or not? Can anyone help me in this regard? Appreciate your help and concern. Thanks, Dave (1 Reply)
Discussion started by: yoursdavinder
1 Replies

7. Windows & DOS: Issues & Discussions

Client is not connecting to the Database

Hi, Am running my client in Windows and the database (IBM DB2) is in AIX machine. if I open my client its not connecting to the database at first time and failing in a particular SQL Query. But if I close the client and open again then its connecting and the query is also working fine. Don't... (0 Replies)
Discussion started by: mvictorvijayan
0 Replies

8. Shell Programming and Scripting

Connecting to Oracle Database

if; sql="select username from dba_users where username = '$FromUser';" check_FromUser=`ExecSql "$sql"` I want to connect to Oracle database & check the users in the database, store the value in check_FromUser. First how to connect to Oracle database from the shell script ? Appreciate your... (4 Replies)
Discussion started by: dreams5617
4 Replies

9. UNIX for Dummies Questions & Answers

connecting to a database through a script...if not give an error msg

Hello , i have a problem in writing the shell script.. i have a script already written n just need to make a change in which when the script is not able to connect to the database ..it should print an error msg on the screen. I have already seen previous posts on how to connect to the... (3 Replies)
Discussion started by: sommer_queen
3 Replies

10. UNIX for Advanced & Expert Users

Connecting to a database via UNIX

hello - Is it possible to connect to a database at the command line to an Oracle instance whilst logged in on the unix box i.e. not using a script Cheers (Running Solaris) Also if anyone has any info on how a Citirix ICA client might be helpful here that would be appreciated Cheers (1 Reply)
Discussion started by: penfold
1 Replies
Login or Register to Ask a Question