DBD: Error while trying to load the transport provider for odbc. Failed to load the library. System error: The specified module could not be found.

Hello Everyone,
We are getting an error while trying to create an Universe via Microsoft -> MS Analysis Services 2014 -> OLEDB for OLAP Provider under Connection in UDT -"DBD: Error while trying to load the transport provider for odbc. Failed to load the library. System error: The specified module could not be found."  We have installed BI 4.1 SP05 in our system. As per earlier posts in scn in BO XI 3.x this issue used to be for improper installation of Integration KIT but in our scenarion Integration KIT is within the BO 4.1 package so no seperate installation is required. Moreover I have checked whether all the driver is present under file: "C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\dataAccess\connectionServer\drivers" and seems everything is fine. But still I am getting this error. One important point is we could use IDT because in IDT still we don't have option to connect with 'Microsoft Analysis Services - 2014 (XMLA)' as we are using Microsoft Analysis Services 2014 version.
Kindly help if anyone has faced the same problem with SAP BO 4.1.
Thanks and Best Regards,
Ghosal

Hello Everybody,
The problem is solved now after installing "OLEDB drivers from SQL Server 2012 Feature Pack". We had OLEDB drivers that comes directly from SQL Server but that did not worked out in our case.
Thanks for your support.
Best Regards,
Ghosal

Similar Messages

  • RUNDLL, error loading c:\documents the specified module could not be found

    Hi! I am new here and really need your help. We have a few Lenovo T400 notebooks. If I want to install Windows XP Prof with SP3 I always get this error dialog during GUI mode setup 9 Min. before finishing.
    RUNDLL, error loading c:\documents the specified module could not be found 
    We install this version of Windows on other notebooks without error. The logs show nothing special.
    Nothing really happens but it's looks bad for our customers. I think I am not alone because there are more
    entries in different forums with same problem without solution.
    Every help is appreciated. Thanks!

    Thanks for your reply! But the list of hotfixes on Microsoft Knowledge Base includes this hotfix?
    List of fixes that are included in Windows XP Service Pack 3
    888111  (http://support.microsoft.com/kb/888111/ ) Universal Audio Architecture (UAA) High Definition Audio class driver version 1.0a available for Windows XP, Windows Server 2003, and Windows 2000 Hotfix
    http://support.microsoft.com/kb/946480/en-us
    Sorry, we use Windows XP SP3 with this hotfix included. All of our other hardware which needs this hotfix too works fine with SP3.

  • SQL SERVER - Error while executing SSIS package on specific environment : Connection manager - The specified module could not be found

    I have deployed my SSIS packages on SQL 2008 server.
    I have a .bat file which will invoke these packages and also the bat file is placed in the server where the SSIS packages are deployed.
    Scenario 1:
    I double clicked on the bat file to invoke the SSIS packages and ; this executed successfully
    Scenario 2:
    I have used the IBM Tivoli work scheduler(TWS)  to invoke the bat file which in tern will invoke the ssis packges; 
    but when i do this i am getting the below error
     Code: 0x8007007E
       Source: SSIS_Master_Event_Data_Transfer Connection manager "Config DB"
       Description: The specified module could not be found.
    Config BD is a connection manager which will get the connection string from the config file of the SSIS package.
    Please help me to resolve this issue.
    Regards,
    Prakash

    Check you TWS jobmanrc.cmd configuration file.   You may need to add a PATH environment variable in that file that includes your SQL Server file locations.   When TWS jobs are executed, they may not be executing with the same
    PATH variable as when you execute the SSIS outside of TWS.

  • "Unable to load DLL '/system/usr/lib/libidlprinter.so': The specified module could not be found. (Exception from HRESULT: 0x8007007E)"}

    I am using intermec printer (directly loading to the printer no system used for printing) for this program and if i run this,i'm getting this below error
    "Unable to load DLL '/system/usr/lib/libidlprinter.so': The specified module could not be found. (Exception from HRESULT: 0x8007007E)"}
    any help on this .........
    Thanks in advance.
    using System.Globalization;
    using Intermec.Printer;
    using System;
    using System.IO;
    using System.Threading;
    class TestCommunicationUSBHost
        static UI.Canvas _canvas;
        static UI.Keypad _keypad;
        static UI.Canvas.Text _exitInstruction;
        static UI.Canvas.Text _appliCationTitle;
        // static UI.Canvas.Text _companyname;
        static string _operatorCodeValue;
        static UI.Canvas.Text _operatorCodeDisplayText;
        private const string operatorCodeDisplayHeader = "SCAN Code: ";
        static PrintControl printControl = new PrintControl();
        static Drawing drawing = new Drawing();
        private static bool _isExitKeyPressed = false;
      //  private static Communication.USBHost _usbHost;
        static int Main(string[] args)
            // Init new UI canvas
            _canvas = new UI.Canvas();
            // Set up some colors to use
            Color white = new Color(255, 255, 255, 255);
            Color blue = new Color(50, 100, 150);
            // Add UI black background
            UI.Canvas.Rectangle bg = new UI.Canvas.Rectangle(0, 0, _canvas.Width, _canvas.Height, blue);
            _canvas += bg;
            // Add Line
            UI.Canvas.Line ln = new UI.Canvas.Line(10, 35, 300, 35, white);
            _canvas += ln;
            // _companyname = new UI.Canvas.Text(30, 45, "KEYBORD DEMO", "Univers Bold", 18, white);
            // _canvas += _companyname;
            // Add UI keycode text
            _exitInstruction = new UI.Canvas.Text(20, 200, "Press [F4] to EXIT.", "Univers Bold", 18, white);
            _canvas += _exitInstruction;
            _appliCationTitle = new UI.Canvas.Text(05, 05, " A1 Technologies", "Univers Bold", 23, white);
            _canvas += _appliCationTitle;
            _operatorCodeDisplayText = new UI.Canvas.Text(20, 100, operatorCodeDisplayHeader, "Univers Bold", 20, white);
            _canvas += _operatorCodeDisplayText;
            // Set up keypad event handler
            _keypad = new UI.Keypad();
            _keypad.KeyDown += new UI.Keypad.KeyEventHandler(KeyHandler);
            // Set up timer event handler
            UI.Canvas.Timer timer = new UI.Canvas.Timer();
            timer.Interval = 1000;
            timer.Tick += new UI.Canvas.TimerEventHandler(TimerHandler);
            timer.Start();
            //int USBHost port o or Setup USBHost
            Communication.USBHost _usbHost = new Communication.USBHost("/dev/ttyUSB0");
            _usbHost.Open();
            // Enter UI main loop
            _canvas.Run();
            // Cleanup UI
            _canvas.Dispose();
            _keypad.Dispose();
            return 0;
        public static void KeyHandler(Object o, UI.Keypad.KeyEventArgs eventArgs)
            int keycode;
            keycode = eventArgs.KeyChar;
            if (keycode == 4)
                _isExitKeyPressed = true;
                return;
        public static void TimerHandler(Object obj, UI.Canvas.TimerEventArgs eventArgs)
            if (_isExitKeyPressed)
                UI.Canvas.Timer timer = (UI.Canvas.Timer)obj;
                timer.Stop();
                _canvas.Exit();
            else
                // Open the first USB host device and read any data sent
                Communication.USBHost usbHost = new Communication.USBHost("/dev/ttyUSB0");
                usbHost.Open();
                if (usbHost.IsOpen)
                    Console.WriteLine("Opened /dev/ttyUSB0 ({0})", usbHost.HIDName);
                    FileStream fileStream = usbHost.GetStream();
                    try
                        int timeout = 0;
                        int i;
                        while (timeout < 5)
                            // Console.WriteLine("Exiting in {0} secs", 10 - timeout);
                            Byte[] bytes = new Byte[256];
                            if ((i = fileStream.Read(bytes, 0, bytes.Length)) > 0)
                                // string data = System.Text.Encoding.ASCII.GetString(bytes, 0, bytes.Length);
                                string data = System.Text.Encoding.ASCII.GetString(bytes, 0, i++);
                                _operatorCodeValue = data;
                                // _operatorCodeValue = _operatorCodeValue + data;
                                _operatorCodeDisplayText.Data = operatorCodeDisplayHeader + _operatorCodeValue.Substring(_operatorCodeValue.Length - 7, 7);
                                int leftCordinate = 40;
                                drawing.Clear();
                                Drawing.Text line1Text = new Drawing.Text();
                                line1Text.Point = new Point(leftCordinate + 30, 40);
                                line1Text.Data = _operatorCodeValue.Substring(_operatorCodeValue.Length - 7, 7);
                                line1Text.Height = 18;
                                line1Text.FontName = "CG Times Bold";
                                drawing += line1Text;
                                drawing.PartialRendering = true;
                                printControl.PrintFeed(drawing, 4);
                            else
                                Thread.Sleep(1000);
                                timeout++;
                    catch (Exception ex)
                        Console.WriteLine("Exception reading /dev/ttyUSB0: {0}", ex.Message);
                // Wait a short while
                Thread.Sleep(1000);
                // Clean up 
               // usbHost.Dispose();
            return;

    Hiya,
     The error is because the app tried to import that driver but it was not found. So, you will need
    to recheck your project setup, provide locations for imports, etc. I am not familar with Intermec Printer.
    The code snippet does not show any information about the DLL import, check there too.
    Hope this helps. :)

  • Error :the specified module could not be found --oci.dll  : Oracle9i

    hi ,
    i m trying to connect thru my java code to the oracle on my system ,while creating the DSN it gives the error
    "the specified module could not be found" for the file oci.dll.
    earlier it was not able to look for the sqresus.dll which i copied to the winnt/system directory , and after this oci error is coming , anyone knowing it please guide
    with regards,

    Make sure it is the same version of 9i (i.e. 9.0.x or 9.2.x) for both OO4O and ODBC. Also make sure that the ORACE_BASE\ORACLE_HOME\BIN directory is in your search path AND last, check your windows directories and subdirectories for duplicate copies of OCI.DLL (or anywhere else on the PC for that matter). Sometimes MicroSoft will include one and it is usually an OLD one.

  • Error messages:  "itunesobjspl/jenetsvc.dll The specified module could not be found."  And Error -2032  "Quicktime failed to initialize."

    I initially got the Error -2032 message after downloading the newest version of itunes.  I read a geek blog that said to uninstall Quicktime and I did that a bunch of times.  I also uninstalled and reinstalled itunes repeatedly.  None of this works.  I noticed that the apple website said the requirements for the new quicktime/itunes download included an intel processor and I have a celeron processor, so I wondered if that was the problem, although everything has been running fine up until now, so I don't know.  It also doesn't address the missing .dll file, but I may have accidentally deleted that because I went into the registry to try and unload some Quicktime files when I uninstalled Quicktime.  I did this at the suggestion of the blog, but I may have screwed it up.  Now I need to repair the missing .dll and still try to get itunes running

     ErikEJ wrote:
    Have you set your solution target to "Any CPU" ?? If so, set to "x86", as SQL Compact only runs in WoW mode on x64. Or use corflags.exe /32BIT+ against your project output (.exe file).
     ErikEJ wrote:
    Look at this blog post for a walk-through: http://erikej.blogspot.com/2008/01/x64-and-sql-compact.html
    Hello everyone,
    I have the same problem as mentioned above "Unable to load DLL 'elev.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) ", when trying to load the dll file into a window application.  I developed a window application in VS2005 and want to import a dll file from another program into my project and use it.  But when I try to call one of the function in the dll file, I got the error message "Unable to load dll 'elev.dll".  I try all options that say it works to solve this problem, but somehow it doesn't work for me. I put the "elev.dll" file in the bin folder and use P/Invoke to import the dll file into my project.  Can anyone help me out with this?  thanks and really appreciated!
     Here is how I import the dll:
    [DllImport(@"D:\elev.dll")]
    //[DllImport("emap.dll", SetLastError = true)]
    private static extern void EMA_Init();
    and in the code,  I call the function above but failed to load the dll file
    EMA_Init();

  • Unable to load DLL 'sqlceme35.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

    I'm new to ADO.NET and need help with this error.
    Currently running Vista Home Premium 64 and Visual Studio 2008 Trial.
    1. Create Win form app.
    2. Add new data source...
    3. New connection - SQL Server Compact 3.5 - Northwind.sdf
    4. Highlight Products and Suppliers.
    5. Drag both onto Win form
    6. Run with debug
    7. Error message "Unable to load DLL 'sqlceme35.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)"
    some blogs advice change dir in SQL Server Compact 3.5 in regedit but regedit doesn't even have SQL Server Compact 3.5; only SQL Server\SQLExpress.
    reinstall SQL Server Compact 3.5 and problem still exists.
    anyone knows how to fix this problem?

     ErikEJ wrote:
    Have you set your solution target to "Any CPU" ?? If so, set to "x86", as SQL Compact only runs in WoW mode on x64. Or use corflags.exe /32BIT+ against your project output (.exe file).
     ErikEJ wrote:
    Look at this blog post for a walk-through: http://erikej.blogspot.com/2008/01/x64-and-sql-compact.html
    Hello everyone,
    I have the same problem as mentioned above "Unable to load DLL 'elev.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) ", when trying to load the dll file into a window application.  I developed a window application in VS2005 and want to import a dll file from another program into my project and use it.  But when I try to call one of the function in the dll file, I got the error message "Unable to load dll 'elev.dll".  I try all options that say it works to solve this problem, but somehow it doesn't work for me. I put the "elev.dll" file in the bin folder and use P/Invoke to import the dll file into my project.  Can anyone help me out with this?  thanks and really appreciated!
     Here is how I import the dll:
    [DllImport(@"D:\elev.dll")]
    //[DllImport("emap.dll", SetLastError = true)]
    private static extern void EMA_Init();
    and in the code,  I call the function above but failed to load the dll file
    EMA_Init();

  • Dboraslib.dll - Error 126 : "The specified module could not be found."

    Hi,
    After installation XI 3.0 and adapters, the dispatcher(dispwork.exe) is failing to start in a ABAPJ2EE system (web AS 6.40).
    The dev_disp trace file shows the following error:
    Please do help to resolve this problem.
    trc file: "dev_disp", trc level: 1, release: "640"
    Mon Aug 09 12:14:43 2004
    kernel runs with dp version 124000(ext=101000) (@(#) DPLIB-INT-VERSION-124000-UC)
    length of sys_adm_ext is 524 bytes
    ERROR => DlLoadLib: LoadLibrary(dboraslib.dll) Error 126 [dlnt.c       237]
            Error 126 = "The specified module could not be found."
    systemid   560 (PC with Windows NT)
    relno      6400
    patchlevel 0
    patchno    1
    intno      0
    make:      multithreaded, Unicode
    pid        2908
    ***LOG Q00=> DpSapEnvInit, DPStart (00 2908) [dpxxdisp.c   1093]
         shared lib "dw_xml.dll" version 1 successfully loaded
         shared lib "dw_xtc.dll" version 1 successfully loaded
         shared lib "dw_stl.dll" version 1 successfully loaded
         shared lib "dw_gui.dll" version 1 successfully loaded
    Mon Aug 09 12:14:48 2004
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  3878]
    MtxInit: -2 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: JAVA is not active
    DpShMCreate: sizeof(wp_adm)          10528     (1316)
    DpShMCreate: sizeof(tm_adm)          2506872     (12472)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpShMCreate: sizeof(comm_adm)          290000     (580)
    DpShMCreate: sizeof(vmc_adm)          0     (372)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 06440040, size: 2919328)
    DpShMCreate: allocated sys_adm at 06440040
    DpShMCreate: allocated wp_adm at 06441B58
    DpShMCreate: allocated tm_adm_list at 06444478
    DpShMCreate: allocated tm_adm at 064444A0
    DpShMCreate: allocated wp_ca_adm at 066A8518
    DpShMCreate: allocated appc_ca_adm at 066AE2D8
    DpShMCreate: allocated comm_adm_list at 066B0218
    DpShMCreate: allocated comm_adm at 066B0230
    DpShMCreate: allocated vmc_adm_list at 066F6F00
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 066F6F28
    DpShMCreate: allocated wall_adm at 066F6F30
    MBUF state OFF
    Mon Aug 09 12:14:49 2004
    EmInit: MmSetImplementation( 2 ).
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation std
    <EsNT> Memory Reset enabled as NT default
    <EsNT> EsIUnamFileMapInit: Initialize the memory 614 MB
    <ES> 613 blocks reserved for free list.
    ES initialized.
    Mon Aug 09 12:14:52 2004
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3216
      argv[0] = C:\usr\sap\SXI\DVEBMGS00/j2ee/os_libs/jcontrol.exe
      argv[1] = C:\usr\sap\SXI\DVEBMGS00/j2ee/os_libs/jcontrol.exe
      argv[2] = pf=C:\usr\sap\SXI\SYS\profile\SXI_DVEBMGS00_cgnlpt036
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1352
      argv[5] = -DLISTEN_PORT=1353
      argv[6] = -DSAPSYSTEM=00
      argv[7] = -DSAPSYSTEMNAME=SXI
      argv[8] = -DSAPMYNAME=cgnlpt036_SXI_00
      argv[9] = -DSAPPROFILE=C:\usr\sap\SXI\SYS\profile\SXI_DVEBMGS00_cgnlpt036
      argv[10] = -DFRFC_FALLBACK=ON
      argv[11] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 2.0 2.0 3.1.1) [dpxxdisp.c   1455]
    ***LOG Q0K=> DpMsAttach, mscon ( cgnlpt036) [dpxxdisp.c   9701]
    Mon Aug 09 12:14:54 2004
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 6400, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1025]
    DpMsgAdmin: Set patchno for this platform to 1
    Release check o.K.
    Mon Aug 09 12:15:33 2004
    ERROR => W0 (pid 3224) died [dpxxdisp.c   12152]
    ERROR => W1 (pid 3232) died [dpxxdisp.c   12152]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => W2 (pid 3240) died [dpxxdisp.c   12152]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => W3 (pid 3248) died [dpxxdisp.c   12152]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => W4 (pid 3256) died [dpxxdisp.c   12152]
    ERROR => W5 (pid 3264) died [dpxxdisp.c   12152]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W6 (pid 3272) died [dpxxdisp.c   12152]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W7 (pid 3280) died [dpxxdisp.c   12152]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    killing W0-3224 (SIGUSR2)
    ERROR => DpWpKill(3224, SIGUSR2) failed [dpxxtool.c   2464]
    killing W1-3232 (SIGUSR2)
    ERROR => DpWpKill(3232, SIGUSR2) failed [dpxxtool.c   2464]
    killing W2-3240 (SIGUSR2)
    ERROR => DpWpKill(3240, SIGUSR2) failed [dpxxtool.c   2464]
    killing W3-3248 (SIGUSR2)
    ERROR => DpWpKill(3248, SIGUSR2) failed [dpxxtool.c   2464]
    killing W4-3256 (SIGUSR2)
    ERROR => DpWpKill(3256, SIGUSR2) failed [dpxxtool.c   2464]
    killing W5-3264 (SIGUSR2)
    ERROR => DpWpKill(3264, SIGUSR2) failed [dpxxtool.c   2464]
    killing W6-3272 (SIGUSR2)
    ERROR => DpWpKill(3272, SIGUSR2) failed [dpxxtool.c   2464]
    killing W7-3280 (SIGUSR2)
    ERROR => DpWpKill(3280, SIGUSR2) failed [dpxxtool.c   2464]
    NiWait: sleep (10000 msecs) ...
    NiISelect: timeout 10000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:15:43 2004
    NiISelect: TIMEOUT occured (10000 ms)
    dump system status
    Workprocess Table (long)               Mon Aug 09 06:45:43 2004
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA     3224 Ended         no      1   0             0                                                             
    1 DIA     3232 Ended         no      1   0             0                                                             
    2 UPD     3240 Ended         no      1   0             0                                                             
    3 ENQ     3248 Ended         no      1   0             0                                                             
    4 BTC     3256 Ended         no      1   0             0                                                             
    5 BTC     3264 Ended         no      1   0             0                                                             
    6 SPO     3272 Ended         no      1   0             0                                                             
    7 UP2     3280 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Mon Aug 09 06:45:43 2004
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    3
    2000
    10
    10
    --------++++--
    +
    DIA
    5
    5
    2000
    5
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          13
    wake_evt_udp_now     0
    wake events           total     9,  udp     6 ( 66%),  shm     3 ( 33%)
    since last update     total     9,  udp     6 ( 66%),  shm     3 ( 33%)
    Dump of tm_adm structure:               Mon Aug 09 06:45:43 2004
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Mon Aug 09 06:45:43 2004
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000 msecs) ...
    NiISelect: timeout 5000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:15:48 2004
    NiISelect: TIMEOUT occured (5000 ms)
    Shutdown server ...
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3216)
    killing process (3216) (SOFT_KILL)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    NiSelClear: removed hdl 3 from selectset
    DpDelSocketInfo: del info for socket 3 (type=7)
    NiBufClose: clear extensions for hdl 3
    NiBufSetStat: bufstat of hdl 3 changed from OK to OFF
    NiICloseHandle: shutdown and close hdl 3 / socket 456
    NiSelClear: removed hdl 4 from selectset
    DpDelSocketInfo: del info for socket 4 (type=9)
    NiBufClose: clear extensions for hdl 4
    NiBufSetStat: bufstat of hdl 4 changed from OK to OFF
    NiICloseHandle: shutdown and close hdl 4 / socket 448
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: write 110, 1 packs, MESG_IO, hdl 5, data complete
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes...
    Stop gateway
    killing process (3172) (SOFT_KILL)
    Stop icman
    killing process (3196) (SOFT_KILL)
    Terminate gui connections
    [DpProcDied] Process lives  (PID:3172  HANDLE:472)
    waiting for termination of gateway
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:15:49 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process died  (PID:3172  HANDLE:472)
    [DpProcDied] Process died  (PID:3196  HANDLE:464)
    DpHalt: cancel all lcom connections
    MPI CancelAll 2 -> 0
    MPI DeleteAll 2 -> 0
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:15:50 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:15:51 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:15:52 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:15:53 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:15:54 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:15:56 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:15:57 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:15:58 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:15:59 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:16:00 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:16:01 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:16:02 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:16:03 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:16:04 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:16:05 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:3216  HANDLE:440)
    waiting for termination of J2EE server
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=489
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Aug 09 12:16:06 2004
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process died  (PID:3216  HANDLE:440)
    NiIMyHostName: hostname = 'cgnlpt036'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 163 bytes
    NiBufSend starting
    NiIWrite: write 562, 1 packs, MESG_IO, hdl 5, data complete
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name          -, type 4, key -
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   9927]
    NiBufSend starting
    NiIWrite: write 110, 1 packs, MESG_IO, hdl 5, data complete
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiSelClear: removed hdl 5 from selectset
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/8
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 19)
    MBUF component DOWN
    NiBufClose: clear extensions for hdl 5
    NiBufSetStat: bufstat of hdl 5 changed from OK to OFF
    NiICloseHandle: shutdown and close hdl 5 / socket 368
    MsIDetach: detach MS-system
    EsCleanup ....
    ***LOG Q05=> DpHalt, DPStop ( 2908) [dpxxdisp.c   8460]
    Good Bye .....

    Hi,
    Thanks for the reply.
    dboraslib.dll is properly installed - I checked the registry and physical location of the file.
    The problem was : Environment variable "Path" not being set properly for the "oracle jre".
    Solution:
    After setting the path, the dispatcher started to run properly without any problems.
    Path=<Drive>\oracle\ora92\bin;<Drive>\Program files\Oracle\jre\1.3.1\bin; <Drive>\Program files\Oracle\jre\1.1.8\bin
    FYI - We are using WIN2K with SP4 and oracle DB 9.2
    Regards,
    Sridhar

  • Error ::OraOLEDBpus10.dll:  The specified module could not be found.

    hello all,
    i have Oracle 9i installed in my system;
    Without deinstalling Oracle 9i , i have installed Orale 10 G ...
    while opening my application(it is in vC++), i got the following error:
    OraOLEDBpus10.dll: The specified module could not be found.
    pls advise...

    thanks for your prompt response...
    i haven't restarted my machine...
    whether it is mandate to restart....
    anyway... in the path variable...Oracle 10 G installation path preceeds the Oracle 9i... i believe it is sufficient to make the system to look into Oracle 10 G location...
    Am i right???

  • Please help with "Error writing the project file. The specified module could not be found." error.

    I am a student.  I've been trying to install and use Visual Studio 2013 Professional for three weeks now and I cannot get it to work.  I am now two weeks behind in my Visual Basic class.  I've installed, uninstalled, ran the repair option... 
    I've tried everything I know how to do.  I just spent 45 minutes on the phone with Microsoft, was transferred four times and finally told I will have to use the forums to find an answer.  I'm almost completely out of patience with this.
    I got the software through the Dream Spark program as a student.  I installed it with the web installer and it appeared to install fine.  When I try to create a new project, I get the error:  "Error writing the project file.  The
    specified module could not be found."
    When I exit the application, I also get:  "The automatically saved settings file 'c:\users\user\documents\visual studio 2013\Settings\CurrentSettings-2015-02-02.vssettings' is not available for write.  You can change this file on the 'Import
    and Export Settings' Tools Options page."
    Please tell me you can help.

    Hi,
    could you please try the points mentioned here:
    http://social.msdn.microsoft.com/Forums/en-US/vssetup/thread/0376db8f-4761-4ae5-9af2-98c53216318a#VS_IDE_unexpected_problems to eliminate the possible cause of your issue?
    Please update the result in the forum after you try the method above!
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • O/S-Error: (OS 126) The specified module could not be found.

    i get this error in my vb6.0 application...
    "O/S-Error: (OS 126) The specified module could not be found.
    ROW-00054: Cannot load the library"
    Assuming my connection is fine...
    DB is oracle 9.2.0.4 patch installed,MDAC 2.8,VB6.0
    My code snipped goes like this...
    conn.Open "Provider=OraOledb.Oracle;User ID=test;Password=test;DATA SOURCE=oracle.world;UseSession Format=1"
    objADOCommand.CommandText = "select * from wfmuser"
    objADOCommand.ActiveConnection = conn
    adorec.CursorLocation = adUseClient
    objADOCommand.Properties("IRowsetChange") = True
    objADOCommand.Properties("Updatability") = 7 ' Insert, Delete and Update
    Set adorec = objADOCommand.Execute
    it gives me the error upon execution of above line.
    i have reinstalled the OLEDB provider,as well as MDAC.
    but of no help...
    i have even cheked my OS path for oraHome entry.
    please respond ASAP...i am stuck.

    Searching the web for "loadlibrary failed with error 126 java" seems to point to issues with OpenGL and certain video drivers and/or environments with multiple monitors. Here are several discussions...
    https://netbeans.org/bugzilla/show_bug.cgi?id=243153
    Error "LoadLibrary failed with error 126: The module could not - Microsoft Community
    [SOLVED] Issue with Technic Launcher: Load Library failed with Error 126 - Technic Launcher - Technic Forums
    So it seems this issue is not specific to SQL Developer. The last discussion includes a video link in its last post saying that ".dll" is searched for rather than "atioglxx.dll" on 32-bit systems or "atio6axx.dll" on 64-bit system (in the C:\Windows\system32 folder), so a workaround is to copy one of those to ".dll".

  • System.DllNotFoundException: Unable to load DLL 'OraOps10.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

    Hi,
    I have a asp.net web application running on windows server 2008 with oracle server 10g installed.
    now we are planning to run application on another server with same server as database server. but when the deployed on new server the login page comes up and after login System.DllNotFoundException: Unable to load DLL 'OraOps10.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) exception is thrown. any help would highly be appreciated.

    Did you run the ODAC installer, OUI or xcopy, or did you just copy over Oracle.DataAccess.dll to the new machine? If the latter, then you need to run the installer to put in all the necessary Oracle DLLs ODP.NET references.

  • Error message @ Win 7 Pro start up "There was aproblem starting C:\programdata\ofpviaowu.dat - The specified module could not be found."

    Error message @ Win 7 Pro start up "There was a problem starting C:\programdata\ofpviaowu.dat - The specified module could not be found."
    This error message appears every time I start (boot) my computer and windows starts (Firefox is not running at start up). Firefox 15.01 functions properly otherwise.
    This started after I installed the 15.0.1 patch.
    I uninstalled and reinstalled Firefox but the problem remains. Google search for "ofpviaowu.dat" came up with "2012-08-29 Firefox Release 15 Startup Crash Report" as the only listing.
    Is this a Firefox issue?

    hello QAMgr, i'm not aware of this file being a part of firefox & also find it slightly suspicious that there are no more google search hits. maybe this is malware related... could you do a full scan of your system with the security software already in place and/or a different tool like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes]?
    [[Troubleshoot Firefox issues caused by malware]]

  • ODBC error: The specified module could not be found. ?

    Hi,
    I have Oracle9i database installed on a test server. If I set the ODBC on the server (the TNS service name is ABCD), I can test it and run a VB application without any error. Then, I need to run the VB application on a client (Windows XP), that does not have any Oracle database installed. Following somebody's suggestion, I installed oo4o for Oracle9i which has the Universal Installer. Then, I installed the Oracle ODBC driver for Oracle9i. It looks okay because when I click Add under System DSN, it lists "Oracle in OraHome90" which is the same as I see on my oracle9i database server. However, the TNS service name is empty (on the database server, it lists ABCD). If I enter ABCD (or ABCD.xyz.com, the full global database host name)in it and run the test connection, I got: "The specified module could not be found" in OCI.DLL window. The listener.ora on the database server does show SID_LIST_LISTNER = ... (SID_NAME = ABCD).
    Can somebody explain why? I definetly don't want to install the database client software on this client machine, I just want to run a VB or JAVA application on it to connect to the database server using ODBC, or something else if possible.
    Any help is appreciated!
    Harvey

    Make sure it is the same version of 9i (i.e. 9.0.x or 9.2.x) for both OO4O and ODBC. Also make sure that the ORACE_BASE\ORACLE_HOME\BIN directory is in your search path AND last, check your windows directories and subdirectories for duplicate copies of OCI.DLL (or anywhere else on the PC for that matter). Sometimes MicroSoft will include one and it is usually an OLD one.

  • Script error line 2053 the specified module could not be found URL res://ieframe.dll/preview.js

    Script error line 2053 the specified module could not be found URL res://ieframe.dll/preview.js

    The issue is caused when Windows creates the printer profile in the control panel that it doesn't correctly create it with the drivers.
    We're not going to completely uninstall all the HP software, instead we're going to remove the corrupt Windows printer profile and reinstall it.  Total time for this on an average computer is about 5-10 minutes to completely repair (including reboot).
    1) Navigate to Start Menu > Devices and Printers or Start Menu > Control Panel > Printers
    2) Select each printer profile for the printer with an issue, then select remove device/printer.
    3) Reboot
    4) Navigate to Start Menu > All Programs > HP > insert model # here > Add Printer (or Setup Wizard)
    5) Follow the setup prompts to reinstall the printer profile and it recreates the Windows printer.
    6) Run the HP Update Tool from Start Menu > All Programs > HP if your printer installs it, rebooting afterwards if necessary.
    7) Test by printing google.com (uses very little ink when the test page comes out).
    Let me know if you have any questions or issues.
    Thanks,
    Dan
    I work for an internation tech company and personally perform thousands of computer repairs a year. I'm based out of the US working for a US company, and have been working on computers for over 13 years.
    ****Click the White Kudos star to say thanks****
    ****Please mark Accept As Solution if it solves your problem****

Maybe you are looking for