WSDL PATH TO RUN JOB

Hi, i want to run a job from a web service, i added the batch job in the webservices section in the data services management console, and the job appear in the web service list,
But now i dont know what i have to do to get the WSDL path, to run the job from a web page.
Can anyone explain me? Thanks
Edited by: Consultor Pricewaterhouse Consultor on Jun 28, 2011 7:34 PM

The WSDL is exposed in the mangement console.
Open the managment console - > Select Administrator -> Web Services -> View WSDL.
If you right click on the page and select properties, it will show the path to the WSDL, such as:
http://localhost:8080/DataServices/servlet/webservices?ver=2.0&wsdlxml

Similar Messages

  • Run jobs in CRON in redhat linux

    I am a Novice DBA and have followed Google pages to run jobs in CRON in redhat linux  But in vain, I could Not jobs in cron.  Can any one provide me step by step config to run jobs in cron

    Good documentation how to automate tasks using cron is indeed a bit difficult to find and much information I've seen out there on the web is incomplete. And unfortunately, it is difficult for a newbie or student to determine.
    In addition to the information already provided by the previous resopnes, the product documentation is usually a good start. For example: https://linux.oracle.com/documentation/
    The information about cron is in the Deployment guide, for instance chapter 20 of
    https://linux.oracle.com/documentation/OL6/Red_Hat_Enterprise_Linux-6-Deployment_Guide-en-US.pdf
    To my experience, many questions or problems releated to cron can be avoided if the user keeps the following in mind:
    Cron does not perform a user login and only knows a minimum OS or user environment. For instance, it only knows about /usr/bin:/sbin:/bin PATH environment. If you wish to schedule a cron job using a shell command script that does anything Oracle database related, you will have to set the appropriate environment variables. Simply put the following header into your script:
    ORACLE_SID=your_oracle_SID
    ORAENV_ASK=NO
    . oraenv -s
    Also keep in mind that many programs produce output to stdout. Cron, by default, mails such output to the user account running the cron task.

  • Can not see running jobs from, package

    I have a problem with processing parallely runing jobs:
    I am creating another immediately runned jobs in a main job. Those two parallel jobs (2 loads from different databases) have to be finished before I run next operation (working out loaded data). Problem is that, after starting those 2 parallel jobs, I can not see them by select from ALL_SCHEDULER_RUNNING_JOBS that is executed immediately after I create those jobs in a package. If I take a look into ALL_SCHEDULER_RUNNING_JOBS from anonymous statement I can see all my running jobs. Let's sum it up:
    1/ Start of main job
    2/ Running 2 immediately created jobs (load data)
    3/ Checking in loop if jobs created in step 2 are still running
    3.1/ Jobs are running (ALL_SCHEDULER_RUNNING_JOBS check) - sleep for a
    while - It never happens - can't see any running jobs from select executed in
    package but can see them in
    anonymous statement
    3.2/ Jobs finished - start processing loaded data
    Can somebody help me with this task?
    Thanks alot!
    Jakub

    Hi,
    There is no reason a job should be visible from an anonymous block but not from inside a job. There are two things that may be happening here.
    - jobs scheduled to run immediately my not start running as soon as they are created/enabled, you may need to wait a bit before they start running (they will appear in all_scheduler_jobs immediately but maybe not all_scheduler_running_jobs immediately)
    - you may be running into privilege issues. Is the user that executes the anonymous block the same as the user that the job is running as (the job's schema) ? If not maybe the job user does not have privileges to see the job (you can grant alter on the job to the user to ensure this).
    Can you see the jobs in the all_scheduler_jobs view from within the job with status RUNNING ? If you can see jobs in all_scheduler_jobs as RUNNING but not in all_scheduler_running_jobs then this is a bug of some sort.
    Thanks,
    Ravi.

  • How to stop a running job in 10g Scheduler?

    The following is a duplicate post. I posted the following to the general database forum before seeing that otn has a new scheduler forum:
    I am not able to find in the Admin Guide a method to stop a currently running instance of a job in the 10g scheduler.
    In 9i, I run the following script calling DBMS_JOB.broken and DBMS_JOB.remove to shut down currently running jobs:
    DECLARE
    jobid NUMBER;
    CURSOR c1
    IS
    SELECT job
    FROM dba_jobs
    WHERE priv_user = 'ME';
    BEGIN
    OPEN c1;
    LOOP
    FETCH c1
    INTO jobid;
    EXIT WHEN c1%NOTFOUND;
    DBMS_JOB.broken (jobid, TRUE);
    COMMIT;
    DBMS_JOB.remove (jobid);
    COMMIT;
    END LOOP;
    CLOSE c1;
    END;
    How may I create similar code to shut down currently running jobs using DBMS_SCHEDULER in 10g? According to the Admin Guide, disabling jobs with the force option will still allow the job to finish.
    How can I terminate a running job in 10g?

    You can stop a currently running job using the STOP_JOB api.
    STOP_JOB Procedure
    This procedure stops currently running jobs or all jobs in a job class. Any instance of the job will be stopped. After stopping the job, the state of a one-time job will be set to SUCCEEDED whereas the state of a repeating job will be set to SCHEDULED or COMPLETED depending on whether the next run of the job is scheduled.
    Syntax
    DBMS_SCHEDULER.STOP_JOB (
    job_name IN VARCHAR2
    force IN BOOLEAN DEFAULT FALSE);
    Parameters
    Table 83-44 STOP_JOB Procedure Parameters
    Parameter Description
    job_name
    The name of the job or job class. Can be a comma-delimited list. For a job class, the SYS schema should be specified.
    If the name of a job class is specified, the jobs that belong to that job class are stopped. The job class is not affected by this call.
    force
    If force is set to FALSE, the Scheduler tries to gracefully stop the job using an interrupt mechanism. This method gives control back to the slave process, which can update the status of the job in the job queue to stopped. If this fails, an error is returned.
    If force is set to TRUE, the Scheduler will immediately terminate the job slave. Oracle recommends that STOP_JOB with force set to TRUE be used only after a STOP_JOB with force set to FALSE has failed.
    Use of the force option requires the MANAGE SCHEDULER system privilege.
    Setting force to TRUE is not supported for jobs of type executable.
    Usage Notes
    STOP_JOB without the force option requires that you be the owner of the job or have ALTER privileges on that job. You can also stop a job if you have the CREATE ANY JOB or MANAGE SCHEDULER privilege.
    STOP_JOB with the force option requires that have the MANAGE SCHEDULER privilege.

  • A problem about the "Max running jobs". Thanks a million!

    Hello everyone,
    The "Max running jobs" was set to 15.
    (1). When I dragged two assets into FCSvr at a time, in the "Search all jobs" window, I saw the first one being uploaded then transcoded, and later the second one being uploaded then transcoded.
    (2). When I dragged them into FCSvr one by one, I saw them being uploaded, then the first one being transcoded, and the second one later.
    Thus with (2), there is no need to wait or queue between the uploading of the second one and the transcoding of the first one.
    However, I intend to drag the assets at the same time, besides, I wanna attain the aim in (2) that no queue to wait. Could someone tell me how to do it?
    With best regards,
    Steven Lee
    PINZ Media

    If I understand, you used for upload menu "Upload file..."
    For uploading and conversation in same time many files you can setup production action (response) for some folder on your device (XSAN, RAID, HDD)
    This action can create production for folder, and create assets for media in folder. The add action "SCAN" in response submenu. For transcoding many assets in same time check radio button "Background Analyze" in response "SCAN".
    You can read more about that in manual.

  • Re:How to determine the long running jobs in a patch

    Hi ,
    How to determine the long running jobs in a patch .
    Regards

    Hi,
    Check the below MY ORACLE SUPPORT note:
    Note.252422.1 .... Check Completed Long Running Jobs In Oracle Apps.
    Best regards,
    Rafi

  • Problems running jobs in db 10gR2 from owb 10.1.0.4

    Hi all,
    we have a little problem, we can not run jobs through the deployment manager. The deployment is ok but instead of something running we get to see nothing at all. I already noticed some minor problems that could be solved by granting a few privileges and I am afraid there are a few more missing.
    The installation was a fresh 10.2.0.2 database in which a new runtime repository and schema was created. In the location we specified 10.2 as target database release.
    Is any tip available about where to check ?
    What log/trace could be usefull ?
    Who is running this combination for production ?
    thanks.
    Ronald.

    Thanks for the pointer, it did not help ...
    We opened a TAR and we were suggested changing to owf 2.6.3 instead of 2.6.4. This looks a bit weird to me since as fas as I remember 2.6.4 ( from the 10gR2 companion cd) was installed ... This seems to be working ok now.
    Ronald
    http://ronr.nl/unix-dba

  • Error detected while attempting to run job

    Hi everyone,
    One of my users tried to run a rule in Hyperion Planning 11.1.1.3 and an error occurred:   Error detected while attempting to run job
    When I went to Essbase, I found that when I launched the rule an error appeared:
    ERROR - 1006059 - Invalid block header: Illegal block type -- Please use the IBH Locate/Fix utilities to find/fix the IBH problem.
    I read that it could be an issue related to corrupted blocks. I'm not familiar with MXL and I read that there are commands that I could run. Someody could provide me help?
    Regards,

    I have XCP files:
    ----- Exception Error Log Begin -----
    Current Date & Time:   Thu Nov 07 13:31:38 2013
    Process Type:          Application
    Application Name:      HYPCOLAN
    Database Name:         COSTS
    Exception Log File:    c:\Hyperion\logs\essbase\app\HYPCOLAN\COSTS\log00001.xcp
    Current Thread Id:     5940
    Exception Code:        0xC0000005=Access Violation
    Exception Flags:       0x00000000=Continuable
    Exception Address:     0x603B569F
    Exception Parameters:  2
    Exception Parameter 0: 0x00000001=Write Violation
    Exception Parameter 1: 0x57970000 (Virtual Address)
    ----- Machine Registers -----
    General Registers:
       EAX=0x795D0E18  EBX=0x5796FFF8  ECX=0x57970038
       EDX=0x0DC0F6CC  ESI=0x00000048  EDI=0xFD320000
    Control Registers:
       CS =0x0000001B  EIP=0x603B569F  Flg=0x00010283
       SS =0x00000023  ESP=0x024ACBB0  EBP=0x024ACBCC
    Segment Registers:
       DS =0x00000023  ES =0x00000023  FS =0x0000003B
       GS =0x00000000
    Floating Point Registers:
       CWD=0xFFFF027F  SWD=0xFFFF3920  TWD=0xFFFF3FFF
       EOF=0x603B5699  ESL=0x0505001B  DOF=0x603E9B50
       DSL=0xFFFF0023  CRS=0x00000000
    Register Area (Hex):
       00 B0 B0 3A F7 7C 1D 90 CE BF
       00 00 00 00 00 00 00 00 00 00
       00 00 00 00 00 00 00 00 00 00
       00 00 00 00 00 00 00 00 00 00
       00 00 00 00 00 00 00 00 00 00
       00 00 00 00 00 00 00 00 00 00
       00 00 00 00 FC 09 A0 95 26 40
       00 00 C0 C6 B2 2C 7B 91 28 40
    Debug Registers:
       DR0=0x00000000  DR1=0x00000000  DR2=0x00000000
       DR3=0x00000000  DR6=0x00000000  DR7=0x00000000
    ----- Stack -----
    Stack Trace:
        0: 0x603b569f ESSSVRD@adReqCurrencyTransBegin + 0x9c22f 0x00000000010cf0a4 0x000000000dc0f6cc 0x000000000dc0f378 0x000000004a25db00
        1: 0x603b6ba8 ESSSVRD@adReqCurrencyTransBegin + 0x9d738 0x00000000010cf0a4 0x000000000032af01 0x0000000000000004 0x000000000000198a
        2: 0x603bb76b ESSSVRD@adReqCurrencyTransBegin + 0xa22fb 0x00000000010cf0a4 0x000000004a25db00 0x000000000dc0f330 0x000000000da45d00
        3: 0x603bc2d1 ESSSVRD@adReqCurrencyTransBegin + 0xa2e61 0x00000000000003a8 0x00000000010cf0a4 0x000000004a25db00 0x00000000214e006c
        4: 0x603bc441 ESSSVRD@adReqCurrencyTransBegin + 0xa2fd1 0x000000004a25db00 0x00000000024ad2a8 0x00000000010cf0a4 0x0000000000000000
        5: 0x603bf614 ESSSVRD@adReqCurrencyTransBegin + 0xa61a4 0x00000000010cf0a4 0x000000000025db00 0x0000000000000000 0x00000000010cf0a4
        6: 0x6037dc5f ESSSVRD@adReqCurrencyTransBegin + 0x647ef 0x0000000000000002 0x0000000000000000 0x00000000010cf0a4 0x00000000024ad2a8
        7: 0x6037e28d ESSSVRD@adReqCurrencyTransBegin + 0x64e1d 0x00000000010cf0a4 0x00000000024ad2a8 0x0000000000000002 0x0000000000000000
        8: 0x60376993 ESSSVRD@adReqCurrencyTransBegin + 0x5d523 0x000000000013003a 0x0000000000000000 0x00000000010cf0a4 0x00000000004ad200
        9: 0x601c902e ESSSVRD@adCSCRConvFixMbrFromBitMap + 0x1115e 0x000000000000012c 0x00000000596ea148 0x0000000000000000 0x00000000024ad40c
       10: 0x601af5d2 ESSSVRD@adOdomInc + 0x3172 0x00000000010cf0a4 0x00000000010cc462 0x000000000dc99940 0x000000000dc48fd8
       11: 0x601af718 ESSSVRD@adOdomInc + 0x32b8 0x00000000010cf0a4 0x00000000010cc462 0x00000000588edfd8 0x0000000000000000
       12: 0x601b02c5 ESSSVRD@adOdomInc + 0x3e65 0x00000000010cf0a4 0x000000000dc2d540 0x00000000010cf0a4 0x00000000604d283d
       13: 0x6032eb72 ESSSVRD@adReqCurrencyTransBegin + 0x15702 0x00000000010cf0a4 0x000000000dc6a0a4 0x000000000dc6a008 0x00000000024af660
       14: 0x6032db25 ESSSVRD@adReqCurrencyTransBegin + 0x146b5 0x000000000dc6a0a4 0x000000000dc6a008 0x00000000024af660 0x00000000604cfbba
       15: 0x603320d8 ESSSVRD@adReqCurrencyTransBegin + 0x18c68 0x00000000010cf0a4 0x000000000000000d 0x00000000024af660 0x0000000000004650
       16: 0x602ed5ac ESSSVRD@adThreadRegister + 0x467c 0x00000000010cf0a4 0x0000000000004650 0x0000000000000000 0x0000000000000000
       17: 0x602eec17 ESSSVRD@adThreadRegister + 0x5ce7 0x00000000000cf0a4 0x0000000000000000 0x0000000000000000 0x00000000010cf0a4
       18: 0x77e6481f kernel32@GetModuleHandleA + 0xdf 0x0000000000000000 0x0000000000000000 0x0000000000000000 0x0000000000000000
    ----- Application-Wide Configuration -----
    Server Name:          
    Application Name:      HYPCOLAN
    Elapsed App Time:      00:21:23:39
    Module Count:          16
    Module  0:             0x00401000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSSVR.EXE
    Module  1:             0x60001000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSSVRD.DLL
    Module  2:             0x60B31000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSASOSM.DLL
    Module  3:             0x60CA1000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSRPM.DLL
    Module  4:             0x60DC1000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSAPINU.DLL
    Module  5:             0x60E91000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSOTLSU.DLL
    Module  6:             0x60F41000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSOTLNU.DLL
    Module  7:             0x60F81000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSMTDNU.DLL
    Module  8:             0x61031000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSOPGN.DLL
    Module  9:             0x61061000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSSHRU.DLL
    Module 10:             0x61135430 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSUTLU.DLL
    Module 11:             0x61151000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSSDU.DLL
    Module 12:             0x61171000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSGLOBU.DLL
    Module 13:             0x61181000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSSECU.DLL
    Module 14:             0x61191000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSOBJIO.DLL
    Module 15:             0x611A1000 = C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSDVRQ.DLL
    ----- Operating System Resources -----
    System Date & Time:    Thu Nov 07 13:31:39 2013
    Elapsed OS Time:       13:21:34:36
    OS Name & Version:     Windows NT 5.02
    CPU Count:             16
    CPU Type:              Pentium
    Correct System Memory information currently not available
    Swap Flags:
       Enabled:            Y
       Disabled:           N
       File Found:         Y
       Denied:             N
    Swap file(s):          c:\pagefile.sys
    Correct Swap Space information currently not available
    Total Drives:          6
    Current Drive:         3
    Drive  3:
       Drive Name:         C
       Volume Label:       Local Disk
       Drive Type:         Fixed
       File System:        NTFS
       Total Drive Space:  142689329 KB
       Free Drive Space:   71187620 KB
       Used Drive Space:   71501709 KB
    Drive  4:
       Drive Name:         D
       Volume Label:       Drive_D
       Drive Type:         Fixed
       File System:        NTFS
       Total Drive Space:  292415096 KB
       Free Drive Space:   18586252 KB
       Used Drive Space:   273828844 KB
    Drive  5:
       Drive Name:         E
       Volume Label:      
       Drive Type:         Unknown
       File System:        Unknown
       Total Drive Space:  0 KB
       Free Drive Space:   0 KB
       Used Drive Space:   0 KB
    Drive  6:
       Drive Name:         F
       Volume Label:      
       Drive Type:         Unknown
       File System:        Unknown
       Total Drive Space:  0 KB
       Free Drive Space:   0 KB
       Used Drive Space:   0 KB
    Drive  7:
       Drive Name:         G
       Volume Label:      
       Drive Type:         Unknown
       File System:        Unknown
       Total Drive Space:  0 KB
       Free Drive Space:   0 KB
       Used Drive Space:   0 KB
    Drive 21:
       Drive Name:         U
       Volume Label:      
       Drive Type:         Unknown
       File System:        Unknown
       Total Drive Space:  0 KB
       Free Drive Space:   0 KB
       Used Drive Space:   0 KB
    ----- System-Wide Configuration -----
    Elapsed Essbase Time:  00:21:23:39
    Essbase Version:       11.1.1
    Essbase Description:   ESB11.1.1.3.0B126
    Network Type:          Windows Sockets
    Environment Variable:  ARBORPATH                 = c:\Hyperion\products\Essbase\EssbaseServer
    Environment Variable:  ARBORMSGPATH              = c:\Hyperion\products\Essbase\EssbaseServer\bin
    Module Count:          16
    Module  0:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSSDU.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module  1:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSGLOBU.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module  2:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSUTLU.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module  3:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSSECU.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module  4:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSOBJIO.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module  5:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSOPGN.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module  6:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSOTLSU.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module  7:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSSHRU.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module  8:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSAPINU.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module  9:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSOTLNU.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module 10:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSRPM.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module 11:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSMTDNU.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module 12:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSASOSM.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module 13:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSDVRQ.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module 14:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSSVRD.DLL
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    Module 15:
       Module Name:        C:\HYPERION\PRODUCTS\ESSBASE\ESSBASESERVER\BIN\ESSSVR.EXE
       Module Version:     11.1.1.1
       Module Description: ESB11.1.1.3.0B126.1
       Module Use Count:   2
    ----- ESSBASE.CFG Configuration Values -----
    Configuration Value:   JvmModuleLocation         = c:\Hyperion\common\JRE\Sun\1.5.0\bin\client\jvm.dll
    Configuration Value:   AuthenticationModule      = CSS
    Configuration Value:   PORTINC                   = 3
    Configuration Value:   DataErrorLimit            = 65000
    Configuration Value:   CalcCacheHigh             = 1100000000
    Configuration Value:   CalcCacheDefault          = 500000000
    Configuration Value:   CalcCacheLow              = 30000000
    Configuration Value:   CalcLockBlockHigh         = 4000000
    Configuration Value:   CalcLockBlockDefault      = 900000
    Configuration Value:   CalcLockBlockLow          = 400000
    Configuration Value:   UpdateCalc                = False
    Configuration Value:   NetDelay                  = 3000
    Configuration Value:   NetRetryCount             = 1000
    Configuration Value:   MultipleBitmapMemCheck    = True
    Configuration Value:   ParCalcMultipleBitmapMemOpt = True
    Configuration Value:   DYNCALCCACHEWAITFORBLK    = TRUE
    Configuration Value:   DYNCALCCACHEBLKRELEASE    = TRUE
    Configuration Value:   DYNCALCCACHEMAXSIZE       = 600M
    Configuration Value:   DYNCALCCACHECOMPRBLKBUFSIZE = 400M
    Configuration Value:   CalcLimitFormulaRecursion = TRUE;
    Configuration Value:   AGENTPORT                 = 1423
    Configuration Value:   SERVERPORTBEGIN           = 32768
    Configuration Value:   SERVERPORTEND             = 33768
    Configuration Value:   AGENTDESC                 = hypservice_1
    ----- Client Request Activity -----
    Server Name:          
    Application Name:      HYPCOLAN
    Total Request Threads: 20
    Avail Request Threads: 19
    Total Requests:        220
    Average Requests:      111.000000
    Weighted Average:      0.007431
    Statistics Per Minute:
       Current Requests:   0
       Minimum Requests:   0.000000
       Maximum Requests:   111.000000
    Thread Count:          20
    Thread Id 3324:
       Request Name:        GetAttributeNameSpecs
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 4060:
       Request Name:        GetMbrInfo
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 1692:
       Request Name:        OtlQueryAttrib
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 736:
       Request Name:        OtlQueryAttrib
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 5288:
       Request Name:        OtlQueryAttrib
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 784:
       Request Name:        OtlQueryMbrs
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 220:
       Request Name:        GetSelectedMbrInfo
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 4356:
       Request Name:        OtlQueryAttrib
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 6100:
       Request Name:        OtlQueryAttrib
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 5944:
       Request Name:        OtlQueryAttrib
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 4880:
       Request Name:        OtlQueryAttrib
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 1128:
       Request Name:        OtlQueryMbrs
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 5728:
       Request Name:        OtlQueryAttrib
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 5960:
       Request Name:        OtlQueryAttrib
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 1208:
       Request Name:        GetOtlUMC
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 5240:
       Request Name:        OtlQueryAttrib
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 1768:
       Request Name:        OtlQueryAttrib
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 3648:
       Request Name:        OtlQueryAttrib
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 1736:
       Request Name:        GetOtlInfo
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:33 2013
       End Time:            Thu Nov 07 13:31:33 2013
    Thread Id 5940:
       Request Name:        MaxL: Execute
       Database Name:       COSTS
       User Name:           admin
       Start Time:          Thu Nov 07 13:31:38 2013
       End Time:            Pending
    ----- Exception Error Log End -----

  • Passing values to global variables while running job via management console

    Hi All,
    I have a requirement, where I have to use HANA view with input parameters as source. I am doing the same by placing the HANA query for view with input parameters, in SQL transform and assigning values to placeholders using global variables. This is working fine at the designer level.
    But where I am stuck is, it possible to pass values to global variables while running job in Management console or in a third party scheduler. Should I do any changes in the batch job to achieve the same ?
    Please help me with the same and also let me know whether my approach of using Global variables to assign values to input parameter of HANA view is right?
    Thanks,
    Deepa

    Select Batch > Batch Job Configuration > Add Schedule and Expand the Global Variables section in the Schedule Batch Job tab. You can then specify a value for all your global variables.
    Alternatively, work with control tables and assign values to the global variables in an initialisation script.

  • How to cancel an active/running job in BW?

    Hi All,
    I have a job running in the system for 2 hrs now. I want to cancel it, please suggest, how to do the same.
    Thanks,
    Raj

    Hi ,
    Please follow the steps as metioned below: go to T-code SM37, enter the below details
    Job name = * or BI*
    User name = *
    Job status = Active ( uncheck rest all )
    Execute ( here you will find all the active running jobs ).Click on the job--> Go to Job -->Cancel active job. It should cancel the job.
    Or you can also get the PID of the job and cancel the job by following the steps below
    Goto sm50 ---> locate the process with the PID ---> select the Process -
    > menu bar ---> cancel without core.

  • Long running job in BW

    Hello Gurus,
           which transaction code can be used to show up all long-time running jobs in bw?  how can we identify if a job is running too long?
    Many thanks,
    frank

    Hi,
    Please check the below
    SM66 - Global Work Process Overview
    SM37 - Simple Job Selection ( Only active jobs)
    SM50 - Process Overview
    Sort them by Time
    -Vikram

  • How to stop the manually running job

    Hi,
    I have to stop a job that is run by user manually. I checked on net but did not find the way to stop the existing running job.
    Please suggest.
    Thanks,
    Gulshan

    Hi;
    What kind of job this, its running manualy or from crontab?
    Let us say you are taking rman backup wiht crontab entery. So login your server than
    ps -ef|grep rman
    This will bring you OS PID than issue is
    kill -9 PID
    Regard
    Helios

  • Running jobs on Always On setup

    Hello there.
    I am trying to figure out how to run jobs in a SQL Server Always On setup.
    Basically, I need to add a piece of logic in my jobs that will test if the database (or replica) is the primary. If so, the job will continue, otherwise will silently stop.
    Does anybody have a ready to go query that does it?
    Thank you!

    You are not the first one needing this. ;-) I have published a check-function on my blog:
    http://sqlblog.dangerous.it/2012/10/is-that-db-online.html
    Based on that function we are using a stored procedure that throws an error when the DB is not online. We add a first step that calls this sproc and on error just Ends the Job with success state.
    CREATE
    PROCEDURE
    [dbo].[usp_CheckDBAndBailout]
    @dbname
    sysname
    AS
    BEGIN
    if
    (SELECT
    Admin.dbo.ufn_IsDatabaseOnline(@dbname))=1
    begin
    print
    'fine'
    end
    else
    begin
    RAISERROR
    ('DB
    not Online',
    -- Message text.
    16
    -- Severity.
    1
    -- State.
    end
    END

  • Suspending  and resuming a running job in oracle

    Hi All,
    We can suspend the running job in oracle I believe so using DBMS_SCHEDULER.Can you please let me share your experience on this
    SQL> select owner,job_name,state from dba_scheduler_jobs;
    OWNER JOB_NAME STATE
    SYS TEST_STATS RUNNING
    SYS TEST_FULL_JOB_DEFINITION SCHEDULED
    SYS XMLDB_NFS_CLEANUP_JOB DISABLED
    I want to suspend the above job which is running and later want to resume.
    Best regards,
    Rafi

    dbms_scheduler is a documented package. As stated in the Forums Etiquette post, kindly consult the documentation first. Only when the documentation is unclear, ask for clarification.
    Sybrand Bakker
    Senior Oracle DBA

  • Prgess indicator on long running jobs

    I have an FX application that is directly linked to my database. The program allows all DML operations as well as user defined actions (action commands and various other methods). I have the same application running in Swing, SWT, Canoo ULC and al works just fine. In each of the other front end types, the application automatically displays a busy indicator when a long running job is executed. Now I need this in FX.
    My application is basically a Rich Client framework which allows the same business logic and forms to have different front ends depending on customer requirements. The application is built by customers in a 4GL style development tool. The application is actually built at run time and the data is provided by the user through various services. Because I am building an FX program for a framework, I don't know when the user may execute a long running job when, for example, a button is pressed. I have full control over the retrieval and modification of data but not user interaction. I am therefore looking for a busy indicator that comes automatically when the main thread is waiting.
    Any help would be great!

    Hi guys and thanks for your answers
    I may have stretched the mark with "long running jobs" by these I mean a database query, a price calculation, order process etc. These are standard jobs that are issued on a Rich Client application. Basically I have a screen which will execute a query, and I want to give the user feedback when the query is executing so that he doesn't think that the application has hung. In Swing I have done this by creating my own event queue with a delay timer:
    public class WaitCursorEventQueue extends EventQueue implements DelayTimerCallback
        private final CursorManager cursorManager;
        private final DelayTimer    waitTimer;
        public WaitCursorEventQueue(int delay)
            this.waitTimer = new DelayTimer(this, delay);
            this.cursorManager = new CursorManager(waitTimer);
        public void close()
            waitTimer.quit();
            pop();
        protected void dispatchEvent(AWTEvent event)
            cursorManager.push(event.getSource());
            waitTimer.startTimer();
            try
                super.dispatchEvent(event);
            finally
                waitTimer.stopTimer();
                cursorManager.pop();
        public AWTEvent getNextEvent() throws InterruptedException
            waitTimer.stopTimer(); // started by pop(), this catches modal dialogs
            // closing that do work afterwards
            return super.getNextEvent();
        public void trigger()
            cursorManager.setCursor();
    }I then implemented this into my application like this:
    _eventQueue = new WaitCursorEventQueue(TIMEOUT);
    Toolkit.getDefaultToolkit().getSystemEventQueue().push(_eventQueue);Now each time the application waits for a specific time, the cursor will become a wait timer. This give s the user a visual feedback so that he knows that the application is working and not just hung. By doing this, I do not need to wrap each user callout in a timer. Much easier like this!
    I would like to implement the same in FX.
    Edited by: EntireJ on Dec 15, 2011 12:34 AM

Maybe you are looking for

  • Saving homemade apple loops - can you choose a default folder

    hello everyone, I have moved the original apple loops to a seperate hard drive from my system drive dragged them into the loop broswer and selected the current location option, but if I create my own apple loops they are placed in the original locati

  • Filling out PDF forms in Landscape Mode

    I have used Preview to fill out PDF forms in Portrait mode and it's very nice because I can save the modified file and email it to others, or just keep it for reference. Anyway, I downloaded a PDF form and tried to fill out the text. It highlights th

  • SSD for Probook 4540s

    do probook 4540s with windows 7 ultimate 64-bit support SSD storage, and if it support, will it replace my HDD or my optical drive ?

  • Weblogic API for modifying users/roles

    I need to write an application which will enable adding users to weblogic domain and configuring roles. Does Weblogic provide such API? If so, what are the relevant packages? P.S. I wasn't sure which exact newsgroup my question belongs to. If anyone

  • Oracle Drive

    I'm using oracle drive to put content to our portal. I had a demonstration of oracle drive from oracle personel, and he showed me that you can select to show a link to the content, or chose to display the content directly on the page. However now I c