Import package and dllhost process hanging

When attempting to run the import package through data manager, the window freezes while attempting to select an import file. The application server shows one of the dllhost.exe processes using all available CPU capacity from this step. After terminating the data manager on the client, the dllhost.exe that consumes the CPU on the application server terminates as well.
We are on BPC release 7.5.104.03 on the MS platform.
Any help would be appreciated.
Thanks.
Tom

as pavan said take a backup and delete expired archivelogs ...
connect as RMAN @target database...
rman target /
rman>report obsolete;
rman>delete expired archivelog all;
if no files are eligible for deletion ...then increase the FRA size....
SQL> alter system set db_recovery_file_dest_size=xG SCOPE=BOTH; larger amount
please post below details.....
SELECT * FROM V$RECOVERY_FILE_DEST;
Select file_type, percent_space_used as used,percent_space_reclaimable as reclaimable,
number_of_files as "number" from v$flash_recovery_area_usage;
select name, space_limit as Total_size ,space_used as Used,
SPACE_RECLAIMABLE as reclaimable ,NUMBER_OF_FILES as "number"
from V$RECOVERY_FILE_DEST;
source is oracle.com
Edited by: dbc001 on Mar 21, 2013 6:50 PM

Similar Messages

  • Import package and create view object

    Hi,
    How can i import package from another project and create a new view object with my package and with the imported package.
    Thanks
    null

    Hi,
    How can i import package from another project and create a new view object with my package and with the imported package.
    Thanks
    null

  • Import purchase and payment process

    HI All
    can any please explain the import PO procurement & payment process.
    Regards
    Chandoo

    Hi,
    How to settle the payment to the vendors
    means customs duty we have to pay one vendor and one more vendor is goods supplier.
    Please clarify how to settle payment to two vendor with reference to one PO.
    In MIRO how we can settle this payments
    Example: customs vendor is "X"
    Local vendor is "Y"
    I want settle the payment to "X" vendor 50 $ (customs charges)
    Local vendor "Y" 1000 $ (goods cost)
    we have custom condition in Po under condition tab
    select that condition click on details and give custom vendor
    and now while doing invoice for same po select layout planned delivery cost
    you will get both vendor then in  MIRO select one ( pop up will come)
    Regards
    Kailas Ugale

  • RWB status 'delivering' and SQL process hangs

    I am sending an IDOC to SQL Server thro XI using JDBC adapter. I am triggering a stored procedure to update SQL tables. The RWB status says 'delivering', sxmb_moni says 'successful' and all the steps are success in audit log. The status 'delivering' is not changing to sucessful.
    When i look at SQL-server side, the process is in sleeping mode. I have verified the stored procedure and it was executed sucessfully. After the COMMIT TRAN, RETURN(0) statments, the process is going to 'sleeping' mode. The @@trancount is 2. If I double click the process, the sql statement is 'IF @@TRANCOUNT > 0 COMMIT TRAN'. This process hangs at this step and it is not accepting the next message. If I kill the process, the stored procedure is executed once and its going to sleep mode and not returning the status to XI to make the flow complete or to change the status to successful.
    Thanks.

    HI Shankar ,
    Its seems that there might be some problem in your srored procedure.Did u tried to use some other stored procedure.I assume that you have uploaded the right version of driver for SQL server you are using.Remember JDBC adapter is vendor and version dependent.
    You can also look at the JDBC : FAQ at service market place.
    Thanx  & Regards
    Vinod

  • Import package and Variables

    Hi, I need your help
    It is possible to modify the import package to PROMPT for some dimensions when running...? Like for example, ask the user to select Dimension Category and then send that parameter to the construction of the import to be uploaded?
    For example tohave as source file
    ERP,sales,p1,2011.JAN,500
    ERP,sales,p2,2011.jan,350
    PROMT when run in DM.
    Select Category: PRON2
    Converted file
    ERP,sales,PRON2,p1,2011.JAN,500
    ERP,sales,PRON2,p2,2011.jan,350

    Hi Ana
    As per Sorin's post, it would make more sense to use a transformation file and then use *IF mapping functions.
    *If (Condition1 then Action1;Condition2 then Action2;Default Action)
    [http://help.sap.com/saphelp_bpc75/helpdata/en/5A/69200C88AA40C9B18844A25259F147/frameset.htm]
    For Example:
    CATEGORY=*If (TIME=JAN then PROD1;TIME=FEB then PROD2;COL(2))
    Hope this helps
    Kind Regards
    Daniel

  • Import packages and Compilation issues

    hello,
    I am trying to compile and import a package in eclipse but it is not working.
    Any helpful links or feedback would be helpful.
    In the left pane is package explorer.
    I right clicked and imported the apache commons .jar files.
    The source .java files are in the same project folder.
    On the top navigation in Eclispe the Project Button is not showing the build project accessible.

    Your problem is really vague. It´s too generic and visually. Please use technically correct terms. Also please tell what error message exactly you got.
    As far it sounds like that you don´t understand how classpaths work and how the Eclipse´s buildpath is related to that.

  • Data Modeler importing packages and triggers

    Hi,
    I don't see any option to import triggers or packages from an Oracle Database, is it possible?
    Despite having no option for trigger import, and no option on the GUI tree or table properties to display the available table triggers, to my surprise there is a 'triggers' tab in the DDL generation window. So I think triggers are imported automatically, but neither are visible, nor can be created. Please correct me if I'm wrong.
    For packages I haven't seen any option, can this be true?
    Thanks

    Importing packages would be a useful thing, and also having more control of the other PL/SQL objects like triggers.
    By the way, DDL file generation lacks customization, like generating multiple files depending on the type of objects.
    I hope points like these could be introduced in the next release.

  • Importing packages and classes

    Hi, I wanted to know if anyone could tell me how to import a packages under the following circumstances:
    Say the class i'm importing TO is called SourceClass1, and is in a folder SourceFolder1, and SourceFolder1 is in the folder Root. Let's say I want to import a package that is in another directory called SourceFolder2 and SourceFolder2 is also in Root. So I want to import Root.SourceFolder2.* but I need to tell java to go up a directory and into SourceFolder2. I tried
    import ../SourceFolder2.*;
    But that's an invalid syntax. Thanks for your help!

    Thanks for your input, I appreciate it. However, the class that i am writing is in a directory whose parent has another directory containing a class i want.
    Root
    Directory1 Directory2
    SourceClass.java ToBeImported.java
    Is there a way of doing this without setting the classpath? just by pointing to the relative path of the directory and package?

  • Importing Packages and Efficiency

    is it more efficient to import only the classes your program needs ( in a single package) or would it be the same as importing everything in that package?
    many thanks
    akz

    Import has no impact at all on runtime performance.
    Importing might have some impact on compilation performance. Whether it is measurable depends on what you are doing and what the compiler does.

  • Malloc() receives signals and the process hangs

    Hi, I am having a batch process which receives a signal (sometimes SIGSEGV and someother times SIGUSR) during malloc and hangs forever. Please refer the following pstack and let me know, if it is related to some patch issue or heap corruption issue.
    Os Details
    SunOS dxxxxx09 5.8 Generic_117350-46 sun4u sparc SUNW,Ultra-Enterprise-10000
    Pstack
    ----------------- lwp# 1 / thread# 1 --------------------
    ffffffff748a79bc lwp_sema_wait (1002666d0)
    ffffffff74e0c3d0 _park (1002666d0, ffffffff74f20000, 0, 1002665c0, 2, ffffffff74f21c74) + 114
    ffffffff74e0c09c _swtch (1002665c0, ffffffff749c0308, ffffffff74f20000, 0, 5, 1000) + 424
    ffffffff74e0db80 mutexadaptive_lock (ffffffff749c0308, ffffffff74f2f5d8, 4c00, 1000, fffeffff, 1) + 164
    ffffffff74e0d888 cmutexlock (ffffffff749c0308, ffffffff74f20000, ffffffff7f72e930, ffffffff7484ab5 4, ffffffff7a701d28, ffffffff7fff982c) + 84
    ffffffff7484ab54 free (100272900, ffffffff76810b98, ffffffff768384d0, ffffffff7a701d28, ffffffff7f72 e930, ffffffff73d00838) + 18
    ffffffff763179bc meFree (1, 100272900, ffffffff7fff9980, ffffffff768384d0, ffffffff72800000, a) + 1c
    ffffffff7683348c shm_deallocate (100378b80, ffffffff7fffa0a8, ffffffff769525e0, ffffffff769525d8, ff ffffff7694a5f0, 1) + 24
    ffffffff768384d0 discshm (0, c350, ffffffff7fffa0a8, ffffffff7682d6b8, ffffffff7694a5f0, ffffffff73d 00838) + 250
    ffffffff76830ab0 tlDiscon (10030f980, a, ffffffff7681ccfc, ffffffff76826cb8, ffffffff7f72e930, fffff fff73d00838) + b4
    ffffffff7682d6b8 slSQIdiscon (0, a, a, ffffffff7fffa0a8, ffffffffffffffff, 10037eea0) + 2b8
    ffffffff76826cb8 pfDiscon (ffffffff7fffa0a8, a, ffffffff7fffa008, ffffffff7fffa0a8, 10030f980, 10037 ee00) + b8
    ffffffff7681ccfc cmDiscon (a, 10030fa50, ffffffff7fffa008, ffffffff76814dc4, 0, 0) + ac
    ffffffff7681198c ascAbort (ffffffff7fffa0a8, 10030fa50, ffffffff7fffa000, ffffffff7fffa0a8, ffffffff 7694a5f0, ffffffffffffff84) + 24
    ffffffff76814dc4 asfExit (10030ff30, ffffffff7fffa0a8, a, 0, 0, 10030fa50) + 224
    ffffffff76814b34 ASF_Call (a, ffffffff76950f18, f0, ffffffff7fffa000, ffffffff7fffa0a8, 10030fa50) + 3e4
    ffffffff76a1388c asf_abort (10030f980, 2, 1002f6870, 2, ffffffff7a701680, 10037c816) + 84
    ffffffff76a1546c disconnect (1002f6870, 2, 0, 1002b4ae0, 0, 1002f7140) + 184
    ffffffff76a1579c disconnect_all (1002f6870, 0, ffffffff76b63a00, 2, 2, 1002f6870) + 13c
    ffffffff76a15a74 sqli_connect_close_tcb (0, 100268610, 2, ffffffff76b5df48, 0, 2) + a4
    ffffffff76a2b804 sqlexit (1002f6870, 0, 0, 0, 0, 0) + 34
    0000000100077c40 __1cOsignal_handler6Fi_v_ (a, ffffffff7fffaf90, ffffffff7fffacb0, 0, 0, 0) + 10
    ffffffff74e1edd8 __sighndlr (a, ffffffff7fffaf90, ffffffff7fffacb0, 100077c30, 8000, 0) + c
    ffffffff74e1b668 sigacthandler (1002665c0, 0, 0, 0, ffffffff7fffacb0, a) + 71c
    --- called from signal handler with signal 2516416 (SIG Unknown) ---
    ffffffff7484aa60 t_splay (0, 100470ff0, ffffffff749b6f60, 140, 0, 2d60) + 110
    ffffffff7484a3a4 realfree (100470fe0, ffffffff749c3780, 100470eb0, ffffffff749b6f60, 100470ea0, 141) + a0
    ffffffff7484acb8 cleanfree (0, ffffffff749c3670, ffffffff749b6f60, 0, ffffffff749c3668, ffffffff749c 3768) + 60
    ffffffff74849da0 mallocunlocked (a, 0, ffffffff749b6f60, 10, 5, 0) + f8
    ffffffff74849c8c malloc (a, 100268610, 0, 0, 1002f6c18, 2000c) + 20
    ffffffff74c08820 __1c2n6FL_pv_ (a, ffffffff74c07830, 0, 104274, ffffffff74d0ca70, 1002f6c18) + 28
    00000001000ee2a8 __1cIpre_sfno6F_v_ (0, 0, ffffffff7fffba57, ffffffff7fffbce4, ffffffff7fffba6b, 2) + 40d0
    00000001000679dc __1cTprocessStagingTable6F_i_ (0, ffffffff7fffc720, ffffffff7fffcd78, 20, 132, ffff ffff7fffc843) + 32c
    0000000100076948 main (9, ffffffff7fffcf08, ffffffff7fffcf58, 0, 0, 100000000) + 21e8
    000000010003cd1c _start (0, 0, 0, 0, 0, 0) + 17c
    ----------------- lwp# 2 / thread# 2 --------------------
    ffffffff748a74c0 signotifywait ()
    ffffffff74e11794 _dynamiclwps (ffffffff74f20000, ffffffff746044b6, ffffffff74b01698, ffffffff73d0083                                          8, 6d8b5, 0) + 24
    ffffffff74e14d38 thr_yield (0, 0, 0, 0, 0, 0) + 8c
    ----------------- lwp# 4 / thread# 4 --------------------
    ffffffff74e1c77c lwp_cond_wait (ffffffff74f21c20, ffffffff74f21c08, 0)
    ffffffff74e0b684 cotimerset (ffffffff74f21c20, ffffffff74f20000, ffffffff74f21c08, 3, 0, 0) + a0
    ffffffff74e1ecd8 threadstart (0, 0, 0, 0, 0, 0) + 40
    ----------------- lwp# 5 --------------------------------
    ffffffff748a5534 door (0, 0, 0, 0, ffffffff73209ba0, 4)
    ffffffff74e19c94 scdoor_func (ffffffff73209c50, ffffffff74f20000, 4, 3, ffffffff74f20000, 1) + 6c
    ffffffff74e0d0c8 lwpstart (ffffffff73209c50, 0, 0, 0, 0, 0) + 18
    ffffffff74e14d38 thr_yield (0, 0, 0, 0, 0, 0) + 8c
    ----------------- lwp# 6 / thread# 3 --------------------
    ffffffff748a79bc lwp_sema_wait (ffffffff7360dd60)
    ffffffff74e0c3d0 _park (ffffffff7360dd60, ffffffff74f20000, 0, ffffffff7360dc50, 1, ffffffff74f21c74                                          ) + 114
    ffffffff74e0c09c _swtch (ffffffff7360dc50, ffffffff74f260c8, ffffffff74f20000, 0, 5, 1000) + 424
    ffffffff74e10800 reapwait (ffffffff74f260c8, ffffffff74f2b618, 0, 0, 0, 0) + 38
    ffffffff74e10550 _reaper (ffffffff74f21d18, ffffffff74f260c8, 0, ffffffff74f21cf0, 0, 1000) + 38
    ffffffff74e1ecd8 threadstart (0, 0, 0, 0, 0, 0) + 40

    Thanks a lot for your response.
    Yes, I executed the program in dbx using RTC. There are couple of Read from uninitialized (rui) errors and Read from unallocated (rua). Surprisingly, the (rua) error comes from the location where I am using EXEC SQL FREE.
    The following is the code inside DoPrepare():
    db_count++;
    EXEC SQL PREPARE curs_stm_1 FROM ' select * from eq_to_pr
    where location_id = ? and e_trak = ?';
    db_count++;
    EXEC SQL DECLARE cc_bay CURSOR WITH HOLD FOR curs_stm_1;
    EXEC SQL FREE curs_stm_1;
    db_count++;
    return true; /* SUCCESS*/
    In the above code, dbx points Read from unallocated (rua) error from EXEC SQL FREE statement. When I commented out, the error is gone.
    The samething with the following code too:
    EXEC SQL CLOSE cc_bay;
    EXEC SQL FREE cc_bay;
    Note: I am using IBM Informix CSDK Version 2.80, IBM Informix-ESQL Version 9.52.FC2
    Otherthan the above errors, RTC output was not having anything else.
    I dont know why EXEC SQL FREE is being flaged.
    The following is the dbx output:
    <rtc> Read from unallocated (rua) on thread 1:
    Attempting to read 4 bytes at address 0x1006a1dcc
    which is 75 bytes past end of heap block of size 121 bytes at 0x1006a1d08
    This block was allocated from:
    [1] sqgdesc() at 0xffffffff5312af94
    [2] process_msgs() at 0xffffffff5312f0d4
    [3] sqrmessages() at 0xffffffff5312bccc
    [4] _iqprepare() at 0xffffffff5311ae14
    [5] sqli_prep_tcb() at 0xffffffff5311ab74
    [6] sqli_prep() at 0xffffffff5311aa48
    [7] DoPrepare() at line 275 in "oreo_eq_add.ec"
    [8] oreo_eq_add() at line 390 in "oreo_eq_add.ec"
    Location of error:
    current thread: t@1
    =>[1] sqli_curs_free_tcb(0x1005cbdf8, 0x1006a1db0, 0x2010c, 0x0, 0x1005a67d8, 0x0), at 0xffffffff531197dc
    [2] DoPrepare(), line 284 in "oreo_eq_add.ec"
    [3] oreo_eq_add(e_trak = 29365102, e_error1 = 0, process = 9, equip_id = 0), line 390 in "oreo_eq_add.ec"
    [4] pre_bay_sc(), line 452 in "pre_bay_sc.ec"
    [5] processStagingTable(), line 576 in "OreoDatabaseFunctions.ec"
    [6] main(argc = 9, argv = 0xffffffff7fffccb8), line 327 in "OreoMain.ec"

  • Java-JSP working with packages and classes

    Hi everybody,
    I'm bearly new on Java-JSP developping and I wanted to know how Tomcat (for example) manage the imported packages and classes.
    The fact is I'm working on a project ('/bob') which use some packages that I don't see in the '/bob' directory. So, is that possible that '/bob' is downloading packages and classes from Internet to '/bob/download' virtual repertory and use it? If it is true, is it possible to override this download by making '/bob' project using local packages or classes (example : com.boblibrary.classes.util in '/bob/WEB-INF/classes/com/boblibrary/classes/util') instead of downloading it?
    Therefore, the '/bob' project is using bugged classes (that I think it downloads from Internet) which I can't correct.
    Thanks for your help.
    - Renaud

    Thank you for your answer, but I can't imagine where is physicaly the class that my project use and show me as http://localhost:8080/atlassian-jira-3.13.2/download/ressources/br.com.ecore.jira.plugin.projectViewPlugin:ProjectViewTabPanel/js/projectviewtabpanel.js. Where is that Javascript file suppose to be on my hard drive? Or where is that class 'br.com.ecore.jira.plugin.projectViewPlugin' suppose to be on my hard drive? If it is not dowloaded from the Internet.
    I have no trace of that class on 'atlassian-jira-3.13.2/', neither on 'jdk1.6.0_18/', 'jre6/' or 'apache-tomcat-5.5.28/common/classes/'.
    Thanks.

  • Process hanging

    Hi,
    I have a process running on Solaris 9. After the proces starts it hangs infinietly consuming 100 % of 1 CPU . There are 8 CPU's. I attached this process to truss utility. Below is the snapshot: the thread goes into sleep mode and the process hangs.
    /3:     lwp_self()                         = 3
    /1:     lwp_create(0xFFBFE868, LWP_DETACHED|LWP_SUSPENDED, 0xFFBFE864) = 4
    /4:     lwp_create()     (returning as new lwp ...)     = 0
    /3:     sysconfig(_CONFIG_NPROC_ONLN)               = 8
    /4:     setustack(0xFCF70634)
    /1:     lwp_continue(4)                         = 0
    /4:     lwp_schedctl(SC_STATE|SC_PREEMPT, 0, 0xFCC7BD24) = 0
    /4:     munmap(0x03F42000, 57344)               = 0
    /4:     brk(0x03F50000)                         = 0
    /4:     brk(0x04050000)                         = 0
    /4:     munmap(0x03F52000, 57344)               = 0
    /4:     lwp_unpark(3, 1)                    = 0
    /3:     lwp_park(0x00000000, 0)                    = 0
    /4:     lwp_mutex_wakeup(0xFF3EE8A0)               = 0
    /3:     lwp_mutex_lock(0xFF3EE8A0)               = 0
    /4:     lwp_self()                         = 4
    /4:     lwp_unpark(1, 1)                    = 0
    /1:     lwp_park(0x00000000, 0)                    = 0
    /4:     munmap(0x03F62000, 57344)               = 0
    /4:     lwp_unpark(1, 1)                    = 0
    /1:     lwp_park(0x00000000, 0)                    = 0
    /1:     priocntlsys(1, 0xFFBFE9BC, 3, 0xFFBFEA9C, 0)     = 16164
    /1:     priocntlsys(1, 0xFFBFE9BC, 1, 0xFFBFEA58, 0)     = 6
    /1:     getpid()                         = 16164 [16162]
    /4:     lwp_park(0x00000000, 0)          (sleeping...)
    /3:     lwp_park(0x00000000, 0)          (sleeping...)
    /2:     Received signal #2, SIGINT, in sigtimedwait() [caught]
    /2:     sigtimedwait(0xFCE7BCD8, 0x00000000, 0x00000000) = SIGINT
    /2:     munmap(0x03F72000, 57344)               = 0
    /2:     munmap(0x03F82000, 57344)               = 0
    /2:     munmap(0x03F92000, 57344)               = 0
    /2:     time()                              = 1129292137
    /2:     munmap(0x03FA2000, 57344)               = 0
    /2:     munmap(0x03FB2000, 57344)

    Anjan, I do not use the specific tool set your post is about but the answers to the following questions might help someone zero in on the problem:
    During the time that the problem is occurring do any error messages appear in the alert.log?
    Did you provide Oracle support a hang analyze dump taken during the problem period? If so, what did support identify that the hang was on?
    What do the machine CPU and memory utilization look like during the problem period?
    HTH -- Mark D Powell --

  • C++ process hangs when started from Java

    I am trying to execute a c++ code from java on a remote Windows machine. In order to deal with the remote part, I have created a Web service from where the actual command is run using Runtime.exec(). The c++ exe is not being called directly from the java code. I have a batch file that eventually calls the exe.
    The problem is, both java and c++ processes hang. The java code on server side does handle the output stream and error stream. Also, the c++ code is logging everything in a file on Windows. The strange thing is that, when I remove the WS call and run the java code on server side as a standalone java program, it succeeds. Also, execution of the batch file alone does not hang. Here is the java code:
    public class RunCPlusPlusExecutable {
    public int runExecutable() {
        int exitValue = 0;
        try {
            Process p = null;
            Runtime rt = Runtime.getRuntime();
            System.out.println("About to execute" + this + rt);
            p = rt.exec("c:/temp/execcplusplus.bat");
            System.out.println("Process HashCode=" + p.hashCode());
            StreamProcessor errorHandler = new StreamProcessor(p.getErrorStream(), "Error");
            StreamProcessor outputHandler = new StreamProcessor(p.getInputStream(), "Output");
            errorHandler.start();
            outputHandler.start();
            exitValue = p.waitFor();
            System.out.println("Exit value : " + exitValue);
            if (exitValue == 0)
                System.out.println("SUCCESS");
            else
                System.out.println("FAILURE");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (InterruptedException e) {
            e.printStackTrace();
        } catch (Exception e) {
        return exitValue;
    class StreamProcessor extends Thread {
        private InputStream is = null;
        private String type = null;
        private InputStreamReader isr = null;
        private BufferedReader br = null;
        private FileWriter writer = null;
        private BufferedWriter out = null;
        StreamProcessor(InputStream is, String type) {
            this.is = is;
            this.type = type;
        public void run() {
            try {
                isr = new InputStreamReader(is);
                br = new BufferedReader(isr);
                writer = new FileWriter("*******path to log file********");
                out = new BufferedWriter(writer);
                String line = null;
                while ((line = br.readLine()) != null) {
                    Date date = new Date();
                    out.write("[" + type + "]: " + date + " : " + line);
                    out.newLine();
                writer.flush();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            } finally {
                try {
                    if (br != null)
                        br.close();
                    if (isr != null)
                        isr.close();
                    if (out != null)
                        out.close();
                    if (writer != null)
                        writer.close();
                } catch (IOException e) {
                    e.printStackTrace();
    String line = null;
                while ((line = br.readLine()) != null) {
                    Date date = new Date();
                    out.write("[" + type + "]: " + date + " : " + line);
                    out.newLine();
                writer.flush();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            } finally {
                try {
                    if (br != null)
                        br.close();
                    if (isr != null)
                        isr.close();
                    if (out != null)
                        out.close();
                    if (writer != null)
                        writer.close();
                } catch (IOException e) {
                    e.printStackTrace();
    The WS server is running from some admin user. And I have been running the standalone java program from some other user. It seems that the c++ executable is giving referenced memory error when being executed from WS call. There are pop-ups citing the error with OK and Cancel buttons(visible when logged in as admin). The error states
    The instruction at 0x05473030 referenced memory at 0x000001d4. The memory could not be read
    Any idea what is causing the problem and how to debug it? Why does this memory error comes only when the exe is run through WS call? Please note that I won't be able to debug the c++ code and the web service is an apache axis2 service.
    Thanks

    How can I know? Its your environment, not mine. The only thing we know is that when running the stuff through one path things blow up and when you run them through another path, things don't blow up. User rights is an obvious suspect, but not necessarily the actual problem. Generally when rights are the problem, you get some form of "access denied" exception, not a code hang.
    Another likely possibility is that of network settings; perhaps your server goes through a proxy and your local applications do not, or the other way around.
    Yet another likely possibility is that the version of Java used is different, or different versions of libraries are no the classpath causing differences in behavior. There is only one way to figure it out: get to know your environment very well and through solid reasoning and experimentation try to figure out where the breaking point is. It all starts with answering this question: what might be different in the environment of the web server, and outside of it? I can't know, only you can. Good luck.

  • Import process hangs indefinately on JPG and AVI files

    Hi,
    I'm seeing a similar issue to some of the other posts.
    My configuration is Windows 7 x64, 4GB RAM and a Core i7. All the photos I want imported have been moved to the C drive.
    When I try to import a folder with a couple of sub-folders containing a total of about 3000 JPG and AVI files (from a CANON 450D and Fuji Finepix 200EX), the import process hangs inderfinately, and I need to kill the process.
    Only around 500 photos get imported.
    One strange thing is that I am only able to preview a couple of the files in the preview grid. However when selecting to view a single file instead of the grid view I am able to view the file in question.
    I have tried to import one file at a time (for a couple of the ones that fail that is) but the import process still hangs, even though I am able to view the file itself before import.
    Have also tried only JPG files, same result.
    Any ideas?
    thanks

    What happens if you try to copy these files to your iMac first? Your problem may not be that applications quit when opening but rather you're having problems simply accessing the disk.
    If your external disk was formatted as NTFS by your Windows machine then your Mac will not be able to write back to the disk. Your applications may be attempting to save temporary or permanent files back to the disk. Verify this by going to the Apple menu and selecting "About This Mac". Click the "More Info..." button. Under the Hardware section on the left, look for your drive. It's probably under ATA. Select your drive and look at the "File System". If it is formatted as NTFS, you can copy the files to your iMac, and use the Disk Utility to reformat the drive to a Mac or MS-DOS format.
    This could also be a symptom of disk corruption. You can begin troubleshooting by using the Disk Utility found in /Applications/Utilities to verify/repair your disk. If Disk Utility finds problems but is unable to fix them, you can purchase third party tools such as DiskWarrior or TechTool Pro to attempt to repair your disk.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.7)  

  • Import process hanging?

    Hi,
    Import process hanging and not response nothing,,, 50% database tables are imported remiaining is pending..
    I have checked at event viewer application log as below error
    Archive process error: ORA-16038: log 2 sequence# 186 cannot be archived
    ORA-19809: limit exceeded for recovery files
    ORA-00312: online log 2 thread 1: 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\EHDTEST\REDO02.LOG'
    resolving for above error need to resize by using
    SQL> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST_SIZE=2048576000 SCOPE=BOTH;
    I have executed this command... after that import process same condition..
    So, database need to shutdown and restart again...what will happen 50% imported tables while shutdown & startup?
    thanks
    ananda

    as pavan said take a backup and delete expired archivelogs ...
    connect as RMAN @target database...
    rman target /
    rman>report obsolete;
    rman>delete expired archivelog all;
    if no files are eligible for deletion ...then increase the FRA size....
    SQL> alter system set db_recovery_file_dest_size=xG SCOPE=BOTH; larger amount
    please post below details.....
    SELECT * FROM V$RECOVERY_FILE_DEST;
    Select file_type, percent_space_used as used,percent_space_reclaimable as reclaimable,
    number_of_files as "number" from v$flash_recovery_area_usage;
    select name, space_limit as Total_size ,space_used as Used,
    SPACE_RECLAIMABLE as reclaimable ,NUMBER_OF_FILES as "number"
    from V$RECOVERY_FILE_DEST;
    source is oracle.com
    Edited by: dbc001 on Mar 21, 2013 6:50 PM

Maybe you are looking for

  • JDOQL - isEmpty() on variable field not working?

    I have a class X that has a Set of Filters. Each Filter has a Set of elements. For this example, I'll use CommodityFilter that has a Set of Commodities. Here is some example code of the example: public class X { // type: Filter private Set filters =

  • TS2446 My ID has been disabled

    My ID has been disabled and do not know how to fix it. I live in Lebanon which is not listed among the countries for support, can you help?I have tried to change my password but did not help

  • Customize dynamic video playlist template

    Hi, I downloaded a dynamic video playlist template for streaming delivery of video from -http://www.adobe.com/devnet/flash/articles/video_playlist.html I have customized the playlist to play and display my own videos and thumbs. I would like to custo

  • VISTA 32 doesn´t detect my Audigy 2 ZS.

    <img height="" alt="[/img] width="" src="http://forums.creative.com/i/p.gif"> The problem is, when i try to install the drivers SBAX_PCDVTBETA_US_2_2_000, this message below appear to me:?"Setup is unable to detect a supported product on your system.

  • ITunes sorting question -- Email Edited by Host

    Dear all, I find iTunes not sorting movies and tv shows correctly. And within movies, I want to differenciate between own movies and movies I bought. Does anyone know how I can do this best? Best regards, a