The specific module could not be found

hi,
  While i am opening cube in SSDT, I am getting error like "the specific module could not be found"..pls help me to solve this issue.
Thanks
Selva

I found solution myself. i replaced DDL
C:\Program Files (x86)\Common Files\Microsoft Shared\MSDesigners8
from where Visual solution is working fine.

Similar Messages

  • Error loading C:\Program Files\Common Files\ParetoLogic\UUS2\UUS.dll The specific module could not be found. What to do????

    I don't know if this has anything to do with Firefox, or not. I sure would appreciate any help. Could this be why I can't download anything?

    >
    Efstratios Karaivazoglou wrote:
    > Make sure to use CR Designer 2008 V1 (WITHOUT SP2) unless you install SP2 for BO Edge.
    OK, so I will only install the BO Client Tools as well as the SAP Integration Kit. I don't necessarily need CR at this moment.
    @ Raghu: we are on the base version of the BO Edge and SAP Integration Kit installation (= no SP, no FP)
    EDIT:
    I now installed the BusinessObjects Client Tools and the SAP Integration Kit on another PC, the error didn't occur on this PC

  • When Starting the computer A small screen appears with the message: RUN DLL Problem stating: \3\LXCGtime.dll..The specific module could not be found

    I am an old lady...please e-mail me in understandable talk for me..I do not know too much about computers.
    Would like to eliminate this small box when starting up the
    computer....HELP

    Hello! That DLL may be related to your Lexmark printer. You may need to remove and reinstall the software to fix that issue. Do you still have your disk for it?

  • Icon-the specific module could not open, background contains pops up on opening firefoxwhe

    recently became new fire fox customer.two items it will not open one specific site i always visit.when i click on the site in gmail to open it the whole page fades and the sys freezes i have to x out of it.
    the other problems is icon when firefox opens says the specific module could not be found background contains. what does this mean.
    thx

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • 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.

  • OraOledbous10.dll Specific module could not be found

    To Any Oracle experts,
    I have downloded the latest Oracle 10g Vista\XP client 10.2.03 which includes the OraOledb ADO drivers. I am getting a spuradic error :
    "OraOleDBpus10.dll .. Specific module could not be found." My Oracle database is 9i ..
    Strangly enough .. this only occurs when I run my executable from my local drive ( xp sp3 ) . if I place the executable on a network drive .. running it from my box ( same box ) .. the error does not occur ..
    I am new to this forum .. I am using a TOLeAuto() class from xHarbour and Borland's C++ 5.5 compiler. The below code is the syntax. I loaded the Oracle database utilities, SQL+ and the Windows Drivers which includes the OraOledb. I know the setup is working because I can connect with the SQL+ utility so I know my tnsnames and sqlnet.ora files are correct.
    Again .. this error only shows up sporadically on my local xp-sp3 box .. I have not loaded it on Vista .. and forget about Windows 7 .. the client will not even install because the OS version number is out of range.
    The paths are correct, and my compiled program runs from a network .. just not ( always ) on my local xp sp-3 machine .. especially seems to happen after a run-time failure of my application. This is an app in development and I wil lhave run-time failures constantly.
    Any advice would be quite helpful
    Rick Lipkin
    SC Dept of Health, USA
    xPROVIDER := "OraOledb.oracle"
    xSOURCE := "efis"
    xUSERID := "suntrack"
    xPASSWORD := "xxxxxxxx"
    oRs := TOleAuto():New( "ADODB.Recordset" )
    oRs:CursorType := 3 // opendkeyset
    oRs:CursorLocation := 3 // local cache
    oRs:LockType := 3 // lockoportunistic
    cSQL := "SELECT FAC.LOCAL_FACIL_EID, "
    cSQL += "FAC.TANK_OWNER_EID, "
    cSQL += "FAC.SITE_NUM AS SITE_NUM, "
    cSQL += "STANDARDTASKS.GETNAME( LOCAL_FACIL_EID,'NO_NUM' ) AS FACILITY, "
    cSQL += "ADDR.ADDRESS_1 AS ADDRESS, "
    cSQL += "ADDR.CITY AS CITY, "
    cSQL += "ADDR.STATE_CODE AS STATE, "
    cSQL += "STANDARDTASKS.GETNAME( FAC.TANK_OWNER_EID,'NO_NUM' ) AS OWNER, "
    cSQL += "FAC.LOCKED_IND AS READ_ONLY "
    cSQL += "from SUNTRACK.EFIS_UST_FACILITIES FAC, "
    cSQL += "SUNTRACK.ADDRESSES ADDR "
    cSQL += "where ADDR.OWNER_EID = FAC.LOCAL_FACIL_EID "
    cSQL += "AND ADDR.ADDRESS_TYPE_CODE = 'BUSINESS' "
    cSQL += "AND ADDR.STOP_DATE IS NULL order by site_num"
    TRY
    oRS:Open(cSQL,'Provider='+xPROVIDER+';Data Source='+xSOURCE+';User Id='+xUSERID+';Password='+xPASSWORD )
    CATCH oErr
    MsgInfo( "Error in Opening EFIS_UST_RELEASES table" )
    oWndChild:Show()
    RETURN(.F.)
    END TRY

    Would you resolve this problem? I have the same problem.

  • I continue to have an Adobe error when booting up my computer. It reads:   this specific module could not be found.    \AppData\local\diagnostics\tlfpizv.dll

    I continue to have an Adobe error when booting up my computer. It reads:   this specific module could not be found.    \AppData\local\diagnostics\tlfpizv.dll
    Please tell me there is a fix that does not involve buying a computer clean sweep program.

    Hi brigitta2,
    You might be getting the error message because of any of the following reasons:
    .dll files are corrupt or missing
    Attack of malware or other spyware
    Incorrect installation of applications
    Damaged Windows registry
    Old Windows device drivers that need to be updated
    The problem can be sorted if you know the exact reason behind the same. Please let me know the exact error message that appears on your screen.
    If the issue is with damaged files then you might need to replace them or if it is a system issue, then please take your laptop to an expert who can deal with system issues.
    Regards,
    Anubha

  • 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 :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();

  • 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

  • The specified module could not be found. (Exception from HRESULT: 0x8007007E)

    Hi,
    We have an exisiting .NET MVC project which uses crystal reports versions 2008 (dlls of version 12.0.). No we have Crystal Reports 2011 for.NET SDK is installed and I've updated all the crystal related dlls (Enterprise.Framework.dll, CrystalDecisions.Chared, CrystalDecisions.Web ...) to newer version which is 14.0. After this upgrade, when I run application, I am getting the following error:
    The specified module could not be found. (Exception from HRESULT: 0x8007007E)
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.IO.FileNotFoundException: The specified module could not be found. (Exception from HRESULT: 0x8007007E)
    Source Error: 
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [FileNotFoundException: The specified module could not be found. (Exception from HRESULT: 0x8007007E)]
       System.Reflection.Assembly._nGetModules(Boolean loadIfNotFound, Boolean getResourceModules) +0
       System.Reflection.Assembly.nGetModules(Boolean loadIfNotFound, Boolean getResourceModules) +40
       System.Reflection.Assembly.GetTypes() +28
       System.Web.Mvc.TypeCacheUtil.FilterTypesInAssemblies(IBuildManager buildManager, Predicate`1 predicate) +161
       System.Web.Mvc.TypeCacheUtil.GetFilteredTypesFromAssemblies(String cacheName, Predicate`1 predicate, IBuildManager buildManager) +63
       System.Web.Mvc.ControllerTypeCache.EnsureInitialized(IBuildManager buildManager) +115
       System.Web.Mvc.DefaultControllerFactory.GetControllerTypeWithinNamespaces(RouteBase route, String controllerName, HashSet`1 namespaces) +58
       System.Web.Mvc.DefaultControllerFactory.GetControllerType(RequestContext requestContext, String controllerName) +634
       System.Web.Mvc.DefaultControllerFactory.CreateController(RequestContext requestContext, String controllerName) +58
       System.Web.Mvc.MvcHandler.ProcessRequestInit(HttpContextBase httpContext, IController& controller, IControllerFactory& factory) +118
       System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContextBase httpContext, AsyncCallback callback, Object state) +46
       System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContext httpContext, AsyncCallback callback, Object state) +63
       System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData) +13
       System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +8770194
       System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +155
    We have another ASP.Net project, which is working fine after I update older crystal dlls to newer ones. This project is working fine.
    Thanks in advance

    This error I am getting, after I update the "CrystalDesicions.Web.dll" from version 12 to 14.0. Any I dea on this?
    After, I verified with fusin log and ProcessMonitor, they are reporting on this:
    path to BusinessObjects.Licensing.KeyCode.Decoder.dll  is not found. Does this dll is used by CrystalDecisions.Web.dll?
    and I don't have any mixed reference.
    Any help?

  • 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]]

  • The specified module could not be found

    This error box pops up when I try to open an image     (the specified module could not be found) also the icon for photoshop
    would not respond on the taskbar.I can open my images in other programmes,would reinstalling photoshop be a good idea.
    Thanks.

    Using PS cc, the problem relates to all images as they are set to open in PS, and the message appears immediately,.i have noticed that my start up screen has changed in appearance I am using a Asrock board - could be a coincidence but the problem has only started this week 08.02.15
    I am using windows 7 home premium
    Thanks.

Maybe you are looking for

  • Configuring Standby Database from non ASM to ASM

    Hi All, i am trying to configure a standby database from non ASM file system to ASM file system. my primary database having datafiles in /u02,/u03,/u04 etc, and my Standby database having filesystem in ASM diskgroup DATA. can anyone of you help me in

  • Support Package Problem

    Hi Experts,   While applying the support package of BASIS (KB70012) and ABAP (KA70012) in SAP ECC 6.0.we get the following error. <i>The import was stopped, since an error occurred during the phase DDIC_ACTIVATION, which the Support Package Manager i

  • Customized PO printing program and sapscript

    Hello, i have created a customized program and sapscript for PO printing. its working fine in our config client..when i moved to our training client... 2 information is not printing (ie: vendor name) i tried to do comparision of the program and sapsc

  • SOLAR_EVAL Short Dump - Documentation Assignments Analysis

    When I go into Solution Manager transaction SOLAR_EVAL and search for Documentation Assignment, I get the runtime error GETWA_NOT_ASSIGNED. It says "The current ABAP program "CL_SPRO_SOL_EVAL_GET_DOCU=====CP" had to be terminated because it has come

  • "User Not Recognized" when installing UPK with Windows Authentication

    Hi all, When installing UPK Server with Windows Authentification mode, everything work fine until when the installer starts populating the Library. I get an error message saying "User is not recognized. Please enter a valid administrator user name an