Advertisement

12.15.2006 at 12:04AM PST, ID: 22094308
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.0

Error loading external library

Asked by aman_greval in Oracle Database

Tags: , , ,


Error loading external library

I am trying to work with a C routine called in Pl/Sql.

When i run the program i encounter the following error.

nimsD2>exec nim_orders.pr_process_orders;
begin nim_orders.pr_process_orders; end;

*
ERROR at line 1:
ORA-06520: PL/SQL: Error loading external library
ORA-06522: ld.so.1: extprocepsid_nims: fatal: libclntsh.so.8.0: open failed: No such file or
directory
ORA-06512: at "NIMS.NIMK_SEND_MAIL", line 0
ORA-06512: at "NIMS.NIM_ORDERS", line 81
ORA-06520: PL/SQL: Error loading external library
ORA-06522: ld.so.1: extprocepsid_nims: fatal: libclntsh.so.8.0: open failed: No such file or
directory
ORA-06512: at line 1

From Oracle Help;
ORA-06520: PL/SQL: Error loading external library
Cause: An error was detected by PL/SQL trying to load the external library dynamically.
Action: Check the stacked error (if any) for more details.

LIBRARY MQCANCELORDER and it's path is already present in all_libraries.

===============================================================================================

CREATE OR REPLACE PACKAGE BODY nim_orders
AS
      PROCEDURE pr_process_orders
      IS

            :
            :
      BEGIN
            :
            :
              lvReturnValue := fn_call_C_proc(recQueueInfo.queue_manager_name, recQueueInfo.get_queue_name, lvreceivedMsg);
      
            :
            :
      End;

      FUNCTION fn_call_C_proc(p_queue_manager_name IN VARCHAR2
                              ,p_queue_name IN VARCHAR2
                              ,p_received_msg OUT VARCHAR2
                              )
      RETURN BINARY_INTEGER
      AS
      EXTERNAL
      LIBRARY MQCANCELORDER
      NAME "processCancelledOrders"
      Language C
      WITH CONTEXT
      PARAMETERS(CONTEXT,
                 p_queue_manager_name,
                 p_queue_manager_name INDICATOR SHORT,
                 p_queue_name,
                 p_queue_name INDICATOR SHORT,
                 p_received_msg,
                 p_received_msg INDICATOR SHORT
                 );
      END fn_parse_cancelled_order;
End nim_orders;


Start Free Trial
[+][-]12.15.2006 at 12:45AM PST, ID: 18144963

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12.15.2006 at 02:00AM PST, ID: 18145132

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12.15.2006 at 03:00AM PST, ID: 18145282

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12.15.2006 at 06:44AM PST, ID: 18146309

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12.15.2006 at 07:21AM PST, ID: 18146561

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12.15.2006 at 07:25AM PST, ID: 18146592

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12.15.2006 at 09:16AM PST, ID: 18147447

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12.15.2006 at 09:36AM PST, ID: 18147579

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12.15.2006 at 09:47AM PST, ID: 18147639

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12.15.2006 at 05:49PM PST, ID: 18150227

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12.18.2006 at 05:23AM PST, ID: 18158062

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Oracle Database
Tags: error, library, external, loading
Sign Up Now!
Solution Provided By: johnsone
Participating Experts: 3
Solution Grade: A
 
 
[+][-]12.18.2006 at 07:28AM PST, ID: 18158866

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]09.26.2007 at 06:59PM PDT, ID: 19968251

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]10.01.2007 at 05:57PM PDT, ID: 19995592

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32