Jdeveloper threads?? how can I start a thread?

Does anyone know how I can automatically set a thread in motion once I call a file in the project? I basically want a background process to run constantly while my app runs.
Any thoughts??

Try this:
http://java.sun.com/docs/books/tutorial/uiswing/overview/threads.html
http://developer.java.sun.com/developer/Books/threads/chap9.pdf
Linda
null

Similar Messages

  • How can I close core thread in ThreadPoolExecutor?

    If I use unbounded LinkedBlockingQueue in ThreadPoolExecutor and set the core pool size to 5. When more than 5 tasks are submitted, there will be 5 threads created to handle the request. After finish, these threads will not be closed. How can I make the threads in core pool be closed when finishing their job? I couldn't use maximum pool for that I do need an unbounded queue.

    If you really want that functionality, set the core pool size to 0, the maximum pool size to 5 or greater, and the keepAliveTime to 0L. This will remove excess threads as soon as their tasks have completed.
    It's very wasteful though if you plan on executing the tasks repeatedly to create new threads everytime you submit a task. One of the benefits of using a thread executor is not having to construct and start a Thread object everytime you run a task.
    Brushfire,

  • How can I make watch thread disable to a single user

    How can I make  "watch thread" disable to a single user in the fourm administrator.

    If you have iWork Pages can be used to do what you want.
    OT

  • How can I find the Thread ID

    Hi
    I read the following sentences in FAQ:
    {forum:id=123} - Displays link to forum 123
    {thread:id=12345} - Displays link to thread 12345
    {message:id=1234567} - Displays link to message 1234567
    {user:id=1234} - Displays link to user 1234 (numeric ID)But I don' know where I can find the forum:id, thread:id and message:id
    Thank for your help
    hqt200475

    bigdelboy wrote:
    trent wrote:
    bigdelboy wrote:
    As far as I am aware the threadID and the messageID never appear in the same URL.At this top of this thread, there is a link for 'Last Post'
    This points to: Re: How can I find the Thread ID containing both thread and message id's
    In your example, the 'Whoever' bit is just plain text. i.e. no hyperlink (for me).
    I think you are talking about the links on the list of threads, whereas Aketi is referring to the link in the actual thread (at the top of the page).I feel a litlte outgunned {noformat};){noformat} ..... however I currently stand by my postulation their is no URL hyperlink where both the threadID (2234623 for this thread) and messageID (eg 9651344 for this post) are present in the same URL. URLs with the messageID obviously link to the thread on the basis the message is a child of the thread, but the threadID is not explicily present in this case.
    Rgds - bigdelboy
    http://en.wikipedia.org/wiki/A_Funny_Thing_Happened_on_the_Way_to_the_Forum ( {forum:id=29} )
    http://forums.oracle.com/forums/help.jspa
    Waht a plonker bigdelboy is!
    I think you are talking about the links on the list of threads, whereas Aketi is referring to the link in the actual thread (at the top of the page).I agree entirely. Apolgies to all. You are SO right.
    Permlink           Replies:  12  -   Pages:   1   -   Last Post:   Jun 10, 2011 8:23 AM  Last Post By: bigdelboy          Threads:  [ Previous |  Next   ]
    Re: How can I find the Thread ID

  • How Can I stop my thread?

    Hi!
    I'm developing an application of computacional geometry. It consist on a JFrame where I put some components like a JToolBar, a JTextArea, etc, and a JPanel. When the JPanel it's painted, there are a button that runs the JPanel in a new Thread.
    The problem is that I have another button to stop the thread, but I can't stop it completely if it is in a I/O operation.
    Here is the code of the run() method:
    public void run()
    Thread thisThread = Thread.currentThread();
    while (kicker == thisThread)
    if (runMode)
    lhull.removeAllElements();
         hull.removeAllElements();
    GrahamScan();
    runMode = false;
    aFrame.doneButton.setEnabled(true);
    stop();
    I stop the thread, but when it's in the GrahamScan() method, it continues painting things in the panel.
    How can I stop the thread completely?
    Thanxs in advance!!

    What's the matter with my line separators and my code indentation?
    Try to use yourThread.interrupt() at your button push event, and this code;
    public void run()
    Thread thisThread = Thread.currentThread();
    try {
    while (kicker == thisThread)
    if (runMode)
    lhull.removeAllElements();
    hull.removeAllElements();
    GrahamScan();
    runMode = false;
    aFrame.doneButton.setEnabled(true);
    stop();
    } catch (InterruptedException iEx){

  • How can I start windows 8 without useing my password

    how can I start windows 8 without useing my password

    Hi,
    Review the information posted in this thread.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • Thread: How to tell when the thread is finished AND how to kill it?

    Hi there,
    I have a thread that runs in the background and does this:
    class MyThread implements Runnable 
              public void run()
                   Stopper stopper = new Stopper();
                            //do something that takes some time
                            stopper.stop();
                            System.out.println("total time "+stopper.getTime());
    }this works fine (I have a swing gui where I click a button and this thread runs and it's ok. PROBLEM IS, when I click the button again (to re-activate the thread) it seems that the stopper is not null but still counting the time (I was under the impression that ...= new Stopper() will create a new object type Stopper).
    so -
    1. How can I tell when thread is finished?
    2. How do I kill this thread once it is finished?
    the invocation:
         public void actionPerformed(ActionEvent arg0)
              Thread t = new Thread( new MyThread());
              t.start();          
         }THANK YOU!

    You have not posted to code for Stopper, so it's impossible to reason about that
    1. How can I tell when thread is finished?
    Use Thread.Join() or Thread.isAlive()
    2. How do I kill this thread once it is finished?
    You can't and you don't. Just let the method the thread is running exit normally. Sometimes that means putting in a boolean variable to control a loop, and then exiting when the boolean is false.
    Another thought - you could set the thread as a Daemon thread - when you don't have any non-daemon threads running, java will exit.

  • How Can I Start And Start And DebugTomcad in Jdeveloper12C

    Hi
    How Can I Start And Start And Debug Tomcad Application Server in Jdeveloper12C.

    I'm not sure if this extension will work in 12c - but you can download the code and try and upgrade it to 12c - https://blogs.oracle.com/shay/entry/tomcat_extensions_for_jdevelop_1
    You can also just add command line short-cuts to start Tomcat to the tools->External tools option in Jdeveloper.

  • SAP dispatcher status is stopped in Console how can i start it

    Hi All
    Help me out
    *SAP dispatcher status is stopped in Console how can i start it
    Dispatcher turns green to yellow suddenly and status changes to stopped and all WP elemets shows status as ended.
    Alert from Syslog  : SAP Basis System: Message server disconnected
    Tracert : Disp+work.exe
    trc file: "dev_disp", trc level: 1, release: "640"
    Thu Oct 02 12:32:52 2008
    kernel runs with dp version 128(ext=102) (@(#) DPLIB-INT-VERSION-128)
    length of sys_adm_ext is 312 bytes
    systemid   560 (PC with Windows NT)
    relno      6400
    patchlevel 0
    patchno    21
    intno      20020600
    make:      multithreaded, ASCII
    pid        736
    ***LOG Q00=> DpSapEnvInit, DPStart (00 736) [dpxxdisp.c   1100]
         shared lib "dw_xml.dll" version 21 successfully loaded
         shared lib "dw_xtc.dll" version 21 successfully loaded
         shared lib "dw_stl.dll" version 21 successfully loaded
         shared lib "dw_gui.dll" version 21 successfully loaded
    Thu Oct 02 12:32:58 2008
    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  3886]
    MtxInit: -2 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: JAVA is not active
    DpShMCreate: sizeof(wp_adm)          6624     (828)
    DpShMCreate: sizeof(tm_adm)          2219848     (11044)
    DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    DpShMCreate: sizeof(comm_adm)          192000     (384)
    DpShMCreate: sizeof(vmc_adm)          0     (320)
    DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 05270040, size: 2505416)
    DpShMCreate: allocated sys_adm at 05270040
    DpShMCreate: allocated wp_adm at 052717A8
    DpShMCreate: allocated tm_adm_list at 05273188
    DpShMCreate: allocated tm_adm at 052731B0
    DpShMCreate: allocated wp_ca_adm at 054910F8
    DpShMCreate: allocated appc_ca_adm at 05495748
    DpShMCreate: allocated comm_adm_list at 05496EB8
    DpShMCreate: allocated comm_adm at 05496ED0
    DpShMCreate: allocated vmc_adm_list at 054C5CD0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 054C5CF8
    DpShMCreate: allocated wall_adm at 054C5D00
    MBUF state OFF
    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 2450 MB
    <ES> 2449 blocks reserved for free list.
    ES initialized.
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG Q0K=> DpMsAttach, mscon ( home) [dpxxdisp.c   9719]
    CCMS: Initalizing shared memory of size 40000000 for monitoring segment.
    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 21
    Release check o.K.
    Thu Oct 02 12:33:38 2008
    ERROR => W0 (pid 1500) died [dpxxdisp.c   12170]
    ERROR => W1 (pid 3796) died [dpxxdisp.c   12170]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => W2 (pid 3548) died [dpxxdisp.c   12170]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => W3 (pid 1464) died [dpxxdisp.c   12170]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => W4 (pid 3368) died [dpxxdisp.c   12170]
    ERROR => W5 (pid 3400) died [dpxxdisp.c   12170]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W6 (pid 2620) died [dpxxdisp.c   12170]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W7 (pid 380) died [dpxxdisp.c   12170]
    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-1500 (SIGUSR2)
    ERROR => DpWpKill(1500, SIGUSR2) failed [dpxxtool.c   2468]
    killing W1-3796 (SIGUSR2)
    ERROR => DpWpKill(3796, SIGUSR2) failed [dpxxtool.c   2468]
    killing W2-3548 (SIGUSR2)
    ERROR => DpWpKill(3548, SIGUSR2) failed [dpxxtool.c   2468]
    killing W3-1464 (SIGUSR2)
    ERROR => DpWpKill(1464, SIGUSR2) failed [dpxxtool.c   2468]
    killing W4-3368 (SIGUSR2)
    ERROR => DpWpKill(3368, SIGUSR2) failed [dpxxtool.c   2468]
    killing W5-3400 (SIGUSR2)
    ERROR => DpWpKill(3400, SIGUSR2) failed [dpxxtool.c   2468]
    killing W6-2620 (SIGUSR2)
    ERROR => DpWpKill(2620, SIGUSR2) failed [dpxxtool.c   2468]
    killing W7-380 (SIGUSR2)
    ERROR => DpWpKill(380, SIGUSR2) failed [dpxxtool.c   2468]
    NiWait: sleep (10000 msecs) ...
    NiISelect: timeout 10000 ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Oct 02 12:33:48 2008
    NiISelect: TIMEOUT occured (10000 ms)
    dump system status
    Workprocess Table (long)               Thu Oct 02 07:03:48 2008
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA     1500 Ended         no      1   0             0                                                             
    1 DIA     3796 Ended         no      1   0             0                                                             
    2 UPD     3548 Ended         no      1   0             0                                                             
    3 ENQ     1464 Ended         no      1   0             0                                                             
    4 BTC     3368 Ended         no      1   0             0                                                             
    5 BTC     3400 Ended         no      1   0             0                                                             
    6 SPO     2620 Ended         no      1   0             0                                                             
    7 UP2      380 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Thu Oct 02 07:03:48 2008
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    3
    2000
    8
    8
    --------++++--
    +
    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     7 ( 77%),  shm     2 ( 22%)
    since last update     total     9,  udp     7 ( 77%),  shm     2 ( 22%)
    Dump of tm_adm structure:               Thu Oct 02 07:03:48 2008
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Thu Oct 02 07:03:48 2008
    =============================
    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=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Oct 02 12:33:53 2008
    NiISelect: TIMEOUT occured (5000 ms)
    Shutdown server ...
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: write 110, 1 packs, MESG_IO, hdl 3, 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 (676) (SOFT_KILL)
    Stop icman
    killing process (924) (SOFT_KILL)
    Terminate gui connections
    [DpProcDied] Process lives  (PID:676  HANDLE:1564)
    waiting for termination of gateway
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1593
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Oct 02 12:33:54 2008
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process died  (PID:676  HANDLE:1564)
    [DpProcDied] Process died  (PID:924  HANDLE:1556)
    DpHalt: cancel all lcom connections
    MPI CancelAll 2 -> 0
    MPI DeleteAll 2 -> 0
    NiIMyHostName: hostname = 'home'
    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 3, 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   9945]
    NiBufSend starting
    NiIWrite: write 110, 1 packs, MESG_IO, hdl 3, data complete
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiSelClear: removed hdl 3 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 3
    NiBufSetStat: bufstat of hdl 3 changed from OK to OFF
    NiICloseHandle: shutdown and close hdl 3 / socket 1572
    MsIDetach: detach MS-system
    EsCleanup ....
    Thu Oct 02 12:33:55 2008
    ***LOG Q05=> DpHalt, DPStop ( 736) [dpxxdisp.c   8478]
    Good Bye .....
    Trace from WP table DIA 1
    trc file: "dev_w0", trc level: 1, release: "640"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Thu Oct 02 12:32:59 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\SUD\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\SUD\SYS\exe\run\dboraslib.dll' loaded
    B  Version of 'C:\usr\sap\SUD\SYS\exe\run\dboraslib.dll' is "640.00", patchlevel (0.19)
    B  New connection 0 created
    M systemid   560 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    21
    M intno      20020600
    M make:      multithreaded, ASCII
    M pid        1500
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 1500) [dpxxdisp.c   1160]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: JAVA is not active
    M  DpShMCreate: sizeof(wp_adm)          6624     (828)
    M  DpShMCreate: sizeof(tm_adm)          2219848     (11044)
    M  DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    M  DpShMCreate: sizeof(comm_adm)          192000     (384)
    M  DpShMCreate: sizeof(vmc_adm)          0     (320)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 05A70040, size: 2505416)
    M  DpShMCreate: allocated sys_adm at 05A70040
    M  DpShMCreate: allocated wp_adm at 05A717A8
    M  DpShMCreate: allocated tm_adm_list at 05A73188
    M  DpShMCreate: allocated tm_adm at 05A731B0
    M  DpShMCreate: allocated wp_ca_adm at 05C910F8
    M  DpShMCreate: allocated appc_ca_adm at 05C95748
    M  DpShMCreate: allocated comm_adm_list at 05C96EB8
    M  DpShMCreate: allocated comm_adm at 05C96ED0
    M  DpShMCreate: allocated vmc_adm_list at 05CC5CD0
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 05CC5CF8
    M  DpShMCreate: allocated wall_adm at 05CC5D00
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation std
    M  <EsNT> Memory Reset enabled as NT default
    X  ES initialized.
    M  calling db_connect ...
    C  Got ORACLE_HOME=C:\oracle\ora92 from environment
    C  Client NLS settings: AMERICAN_AMERICA.WE8DEC
    C  Logon as OPS$-user to get SAPSUD's password
    C  Connecting as /@SUD on connection 0 ...
    C  Attaching to DB Server SUD (con_hdl=0,svchp=040D325C,svrhp=040D3E34)
    C  Starting user session (con_hdl=0,svchp=040D325C,srvhp=040D3E34,usrhp=040DC614)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1033
    [dboci.c      3721]
    C  Detaching from DB Server (con_hdl=0,svchp=040D325C,srvhp=040D3E34)
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dbsloci.c    9753]
    C  Try to connect with default password
    C  Connecting as SAPSUD/<pwd>@SUD on connection 0 ...
    C  Attaching to DB Server SUD (con_hdl=0,svchp=040D325C,svrhp=040D3E34)
    C  Starting user session (con_hdl=0,svchp=040D325C,srvhp=040D3E34,usrhp=040DC614)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1033
    [dboci.c      3721]
    C  Detaching from DB Server (con_hdl=0,svchp=040D325C,srvhp=040D3E34)
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dbsloci.c    9753]
    B  ***LOG BV3=> severe db error 1033      ; work process is stopped [dbsh#2 @ 1195] [dbsh    1195 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink#1 @ 419] [dblink  0419 ]
    B  ***LOG BY0=> ORA-01033: ORACLE initialization or shutdown in progress [dblink#1 @ 419] [dblink  0419 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1271]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   9379]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server home_SUD_00 on host home (wp 0)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Thu Oct 02 12:32:59 2008
    M  *  RELEASE     640
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        9555
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   730]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  246]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 1500) [dpnttool.c   357]
    Thanks in advance please help me out
    Edited by: sudhakar aleti on Oct 2, 2008 12:54 PM
    Edited by: sudhakar aleti on Oct 2, 2008 12:56 PM

    Hi All please find the result r3trans -d
    4 ETW000 r3trans version 6.09 (release 640 - 28.04.04 - 16:14:00).
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 03.10.2008 - 11:02:35
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: r3trans -d
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [dev trc     ,00000]  Fri Oct 03 11:02:36 2008                            5494  0.005494
    4 ETW000  [dev trc     ,00000]  db_con_init called                                    40  0.005534
    4 ETW000  [dev trc     ,00000]  create_con (con_name=R/3)                             26  0.005560
    4 ETW000  [dev trc     ,00000]  Loading DB library 'dboraslib.dll' ...                33  0.005593
    4 ETW000  [dev trc     ,00000]  load shared library (dboraslib.dll), hdl 0        139566  0.145159
    4 ETW000  [dev trc     ,00000]      using "C:\usr\sap\SUD\SYS\exe\run\dboraslib.dll"
    4 ETW000                                                                              22  0.145181
    4 ETW000  [dev trc     ,00000]  Library 'dboraslib.dll' loaded                         7  0.145188
    4 ETW000  [dev trc     ,00000]  function DbSlExpFuns loaded from library dboraslib.dll
    4 ETW000                                                                              13  0.145201
    4 ETW000  [dev trc     ,00000]  Version of 'dboraslib.dll' is "640.00", patchlevel (0.19)
    4 ETW000                                                                            2501  0.147702
    4 ETW000  [dev trc     ,00000]  function dsql_db_init loaded from library dboraslib.dll
    4 ETW000                                                                              12  0.147714
    4 ETW000  [dev trc     ,00000]  function dbdd_exp_funs loaded from library dboraslib.dll
    4 ETW000                                                                              18  0.147732
    4 ETW000  [dev trc     ,00000]  New connection 0 created                              13  0.147745
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = -000000001 state = DISCONNECTED, perm = YES, reco = NO , con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              15  0.147760
    4 ETW000  [dev trc     ,00000]  db_con_connect (con_name=R/3)                      12391  0.160151
    4 ETW000  [dev trc     ,00000]  find_con_by_name found the following connection for reuse:
    4 ETW000                                                                              12  0.160163
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = NO , con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              14  0.160177
    4 ETW000  [dev trc     ,00000]  Found ORACLE_HOME=C:\oracle\ora92 in Registry        796  0.160973
    4 ETW000  [dev trc     ,00000]  -->oci_initialize                                    400  0.161373
    4 ETW000  [dev trc     ,00000]  Client NLS settings: AMERICAN_AMERICA.WE8MSWIN1252
    4 ETW000                                                                           34020  0.195393
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => Cannot connect: TNS-name missing         11  0.195404
    2EETW169 no connect possible: "DBMS = ORACLE                           --- TWO_TASK = ''"
    Thanks
    Sudhakar A

  • How can I start anew with Photos and clear the (minimal) stuff it has uploaded

    I've about had it up to here with this new Photos scheme. I reorganised my Aperture libraries on both my iMac and MBA in preparation for this, delayed turning Photos on for a couple of days until I thought everything was ready based upon the limited advice that was out there, and then got stuck in an endless loop of "uploading" and "preparing" every time I opened Photos. There are 19,975 images in my Aperture library on the iMac. I was stuck at Uploading at anywhere between that number and 19,000 with no progress after hours of waiting. I tried all the tricks mentioned here including re booting, restarting the app, repairing/rebuilding the database, killing the "cloudd" process, etc.today Today when I restarted Photos, it now said I had 23,775 images to upload- 4000
    more than I have-and of course it got stuck there, like it has for the last week.
    I copied the previous Aperture library (pre Photos migration)back to my iMac and opened it in Aperture. Thankfully, all the photos I had taken on my iPhone this week during this Photos clusterphuck transition were in the Aperture Stream so I didn't lose any of those. I'm willing to give this whole thing one more shot. So  i need some advice. How can I start anew with Photos and clear the (minimal) stuff it has uploaded (about 6000 of 19,000 images in the last 7 days) ? If I simply delete the Photos.photolibrary file will that do the trick and lt me start a new fresh library using?
    <Re-Titled By Host>

    How can I start anew with Photos and clear the (minimal) stuff it has uploaded (about 6000 of 19,000 images in the last 7 days) ? If I simply delete the Photos.photolibrary file will that do the trick and lt me start a new fresh library using?
    It is hard to say from your post, why the migration did not succeed in your case.
    by "stuck on upload" do you mean, you opened the Aperture library in Photos, and Photos converted it to a Photo Library, and then the upload to iCloud Photo Library did hang?  Or did already the upgrade to the Photo Library fail?
    If you want the Aperture library to upload to iCloud Photo Library, it needs to be on a disk formatted MacOS Extended (Journaled) and the original image files must not be referenced. Referenced originals will not upload.
    Also, the upload may hang, if you do not have enough free iCloud storage, orr if one of the videos or photos in your library is in an unsupported format or corrupted.
    To start over, try to repair and rebuild the Aperture library before opening it in Photos. Try all Aperture Library First Aid options - starting with repairing the permissions.  (Repairing and Rebuilding Your Aperture Library: Aperture 3 User Manual)
    If I simply delete the Photos.photolibrary file will that do the trick and lt me start a new fresh library using?
    You will have to delete the photos that are already in icloud too; otherwise you are risking duplicates.
    Can you launch Photos at all?  If yes, delete all photos in Photos and empty the Recently Deleted album. Wait for the deletion to sync to iCloud. Then delete the Photos.photolibrary.

  • How can i start Terminal in a specific folder

    how can i start Terminal in a specific folder

    From the menu bar, select
     ▹ System Preferences... ▹ Keyboard ▹ Keyboard Shortcuts ▹ Services ▹ New Terminal at Folder: On
    Right-click or control-click a folder in the Finder and select that item from the contextual menu.

  • How can I start a new paragraph within the same table cell?

    In Numbers, when adding text within a table frame, how can I start a new line within the same frame (rather than advancing to the next cell)?  I'd like to enter a mini-list of several items of various lengths of data.

    While Wayne's answer solves your problem, another possibility is to uncheck the box at the bottom of the Table inspector for "Return key moves to next cell." If that is unchecked, the return key types a paragraph return within the cell (the same as Option Return with the box checked).
    With that box unchecked, Shift Return types a soft return (new line without a paragraph break).

  • How can I start a second window of a second profile through the command line?

    I have two profiles set up, 'default' and 'second'. If both are already running how can I start a second window of profile 'second'?
    firefox -p 'second' : opens a new window of the default and,
    firefox -p 'second' -no-remote : tells me that firefox is already running.

    I don't think that this is possible.<br />
    You need to open this second instance (Firefox profile folder) with the -no-remote command line switch and that makes it impossible to open external links via the command line or via a double-click.<br />
    You can only open a link in such an instance by dragging the link on the tab bar of that Firefox window.

  • How can i start oracle databases? i am using Oracle 8.1.6 for linux.

    when i run dbstart,it gives me following message:
    Database "ora4cweb" warm started.
    but when i use sqlplus,it says:
    ORA-01034: ORACLE not available
    i made a mistake ,i shutdown my linux before i shutdown oracle databases,how can i start oracle databases now?thanks in advance.

    try it without the scripts...
    login to linux as oracle
    start server manager
    svrmgrl
    connect internal
    startup
    select sysdate from dual;if that works
    exitcheck listener
    lsnrctl
    statif nothing running type
    start
    exitnull

  • How can i start my iphone 5 after it went on safemode and itunes cant help me!! i was trying to update it!!

    how can i start my phone after it went on safe mode while i was updating it!! it says i need to connect with itunes but when i doo it tells me its an error !! i cant use my phone at all!!

    modular747,
    Had same problem, got answer from supprot community and it worked.
    Hold down your power bar (on top) and your Home button (on face at bottom) for about 10 - 20 sec. and your phone will be restored - nothing lost or changed.  Worked like a charm for me 20 sec ago.
    Good luck

Maybe you are looking for

  • Ipod freezes when in motion

    hi, ive been jogging with my 5th gen ipod listening to music, and after a couple of minutes of jogging it suddenly freezes. i have it on hold and its never freezed previously for any reason. if i stop or keep it still for a while, it automatically st

  • Multiple Page Contents Page Fields In Custom Page Layout SP2013

    I'm rather new so bare with me.  I'm trying to add multiple page content page fields with snippets to a custom page layout html file in SP2013 Designer.  Once I add the snippet and publish, I review the page and any text written in the last created p

  • Using java class from JSP page

    I have a class that connects to the database and return the result in form of array of objects, now I wrote a tester and I was able to print the result on the console but when it came to JSP how can I use this class I am a bit confused, how can I dec

  • How do I retrieve cache.mov files so I can play them on quicktime?

    Hi, I've recently been deleting files to free up harddisk space and have come upon some cache.mov files. These are videos I regret deleting and have no backups of. When I get info on them if shows the video in the preview, but if I try to open it in

  • Back camera and power buton not working

    hello dear ,               i have problem in my i phone 4,s camera and power buton . how can i replace it