Regarding parallel SIP sessions

Is there a way we can find how many parallel SIP sessions can be made? I am trying to understand how to calculate the SIP trunk utilization. 
Is there any command or SNMP MIN to find that out? It has been specified in CUBE FAQ that there is no way we can get the license information of CUBE in command line. My understanding is, CUBE license and the bandwidth only decides the amount of calls we can make in parallel. Please through some light

hi sailaja ,
I understood ur answer and i found it correct . Could u tell me , why it picks up the first record only again and again . what cud be the purpose behind this .
bye
regards
varma

Similar Messages

  • Issue regarding Parallel dynamic block

    Dear All,
    I need some help regarding Parallel dynamic process issue.
    My Process structure as follows.
    Process
    ->Sequential Block
    --->Action1
    --->Parallel Dynamic Block
    >Sequential Sub Block
    >Action2
    I am able to trigger the tasks to multiple users.
    Action2 has to  perform by multiple users.
    Action2 contains Webdynpro Callable Object.
    Webdynpro CO view contains two buttons namely "Approve" and "Send Back".
    My requirement is
    1)If All users selects approve then Action2 has to complete and control moves to Action1
    2)If anyone selects Send Back then Action2 will be completed and control moves to Action1.This process will be continues still all the users Approve.
    I am struggling for this requirement so please  help me.

    Hi Rajesh,
    Question 1:
    I am trying to call the Action1 in the Sequential Sub Block from Action 2.At that time i am gettin the following error.
    Transition between blocks cannot be defined because there is a parallel block in the path.
    @nswer 1:
    Please include "Action2 " and "Action1(On Send Back from Action2)" in the subblock.
    If both the actions are in the same sequential block (sub-block) then you can set result state.
    Question 2:
    Please suggest me what to set result state of Action2 when it is completed and how to call Action3.
    Tell me Action3 comes under Sequential Block?
    @nswer 1:
    Action2 must have two result state
    1. Completed -- Assign it "Terminal"
    2. Send Back -- Assign it "Action1(On Send Back from Action2)"
    Action3 is outside Parallel Dynamic Block. The structure of your sequential block will look like this
    Process
    ->Sequential Block
    --->Action1
    --->Parallel Dynamic Block
    --->Action3
    Regards,
    Pratik

  • Killing Parallel Query Session

    Hi,
    I am running Oracle 11.2.0.1.0 on Solaris 5.10.
    Couple of hours ago, I ran a job through DBMS_JOB (Yes, I need to use dbms_schedular), and in the job I used parallel query. Now I want to remove the job. Also I want to clean up the sessions. I can remove the job by doing DBMS_JOB.remove(job id). Is there a way that I kill one parallel query coordinator session, and it would automatically kill all the slave sessions?
    Thanks and regards
    Edited by: Fahd Mirza on Apr 22, 2010 11:57 AM

    Thanks for the answer.
    I have run the following query with output:
    SQL> select ps.sid,s.username,ps.qcsid
    from v$session s, v$px_session ps
    where s.sid=ps.sid
    and s.username='BIADM';  2    3    4
           SID USERNAME                            QCSID
            91 BIADM                                 147
           267 BIADM                                 147
           290 BIADM                                 147
           332 BIADM                                 147
           345 BIADM                                 147
            69 BIADM                                 147
            92 BIADM                                 147
           102 BIADM                                 147
           222 BIADM                                 147
           112 BIADM                                 147
            73 BIADM                                 147
           126 BIADM                                 147
           136 BIADM                                 147
           145 BIADM                                 147
           170 BIADM                                 147
           180 BIADM                                 147
           276 BIADM                                 147
           190 BIADM                                 147
           221 BIADM                                 147
           234 BIADM                                 147
           214 BIADM                                 147
           246 BIADM                                 147
           270 BIADM                                 147
           256 BIADM                                 147
           278 BIADM                                 147
           291 BIADM                                 147
           309 BIADM                                 147
           298 BIADM                                 147
           323 BIADM                                 147
           344 BIADM                                 147
             2 BIADM                                 147
           331 BIADM                                 147
           134 BIADM                                  94
           125 BIADM                                  94
           156 BIADM                                  94
           168 BIADM                                  94
           181 BIADM                                  94
           205 BIADM                                  94
           191 BIADM                                  94
           215 BIADM                                  94
           232 BIADM                                  94
           245 BIADM                                  94
           255 BIADM                                  94
           269 BIADM                                  94
           292 BIADM                                  94
           302 BIADM                                  94
           280 BIADM                                  94
           311 BIADM                                  94
           147 BIADM                                 147
            94 BIADM                                  94
    50 rows selected.If I kill sessions with sid 147 and 94, shouldn'it it be killing all the sessions of BIADM?
    REGARDS

  • Regarding parallel queries in ABAP same as in oracle 10g

    Hi,
       Is there any way we can write parallel queries in ABAP, in the same way we do in oracle 10g.Kindly see below;
    alter table emp parallel (degree 4);
    select degree from user_tables where table_name = 'EMP';
    select count(*) from emp;
    alter table emp noparallel;
    SELECT /*+ PARALLEL(emp,4) / COUNT()
    FROM emp;
    The idea here is to distribute the load of select query in multiple CPUs for load balancing & performance improvement.
    Kindly advise.
    Thanks:
    Gaurav

    Hi,
    >    Is there any way we can write parallel queries in ABAP, in the same way we do in oracle 10g.
    sure. Since it is just a hint...
    SELECT *
      FROM t100 INTO TABLE it100
      %_HINTS ORACLE 'PARALLEL(T100,4)'.
    will give you such an execution plan for example:
    SELECT STATEMENT ( Estimated Costs = 651 , Estimated #Rows = 924.308 )
           4 PX COORDINATOR
               3 PX SEND QC (RANDOM) :TQ10000
                 ( Estim. Costs = 651 , Estim. #Rows = 924.308 )
                 Estim. CPU-Costs = 33.377.789 Estim. IO-Costs = 646
                   2 PX BLOCK ITERATOR
                     ( Estim. Costs = 651 , Estim. #Rows = 924.308 )
                     Estim. CPU-Costs = 33.377.789 Estim. IO-Costs = 646
                       1 TABLE ACCESS FULL T100
                         ( Estim. Costs = 651 , Estim. #Rows = 924.308 )
                         Estim. CPU-Costs = 33.377.789 Estim. IO-Costs = 646
    PX = Parallel eXecution...
    But be sure that you know what you do with the parallel execution option... it is not scalable.... .
    Kind regards,
    Hermann

  • Query regarding parallel

    Hi,
    let's assume 8 CPU machine is there and oracle 10.2.0.4.
    query No. 1-then how many parallel_max_servers we can define at oracle level.
    query No. 2: i defined parallel_max_servers=8 , now if i give in query parallel=10 so how oracle will work?
    thanks in advance.

    To take a stab at ansering your questions:
    1 - Based on the information given there is no way to accurately answer this question because you need to consider more than just the number of cpu are available on the server to determine how many PQO servers you want. Such as how many disks is the database spread across, how is the PQO option going to be invoked: Oracle managed, via SQL hints, defined at the table level, and how many concurrent sessions are going to be on the system. How many of thses sessions will run parallel.?
    Remember that the PQO is a brute force tuning method intended by Oracle to be used in Warehouse environments. A query that runs PQO gets more resouces than a non-PQO run and if you flood your system with PQO queries you can bring it to a halt. You can use it in an OLTP to good effect if you are careful and do not overuse the feature. In a warehouse you would expect the total number of concurrent sessions to be low relative to an OLTP environment but many environments are mixed as to contents and usage so you have to be careful.
    2 - Obviously Oracle cannot assign more resources than it has to the query task. In fact if another session is already using the PQO resources Oracle will run the query normally without PQO.
    HTH -- Mark D Powell --

  • Regarding 'Expert Empowerment Sessions for Partners'

    Thread is virtually unreadable. Can you please repost as html with working links?

    Dear Cindy,
    Thank you for pointing this out.
    The thread is repaired.
    Please check again on Expert Empowerment Sessions for Partners
    Thank you and best regards,
    Susanne

  • Regarding KILLING the session

    Hi..
    How to kill the session from the SQL * Plus ...please tell me anyone
    regards
    Yashavanth

    ALTER SYSTEM command. Refer to the [url http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_2013.htm#i2053602]Oracle® Database SQL Reference guide.
    However...
    1. This needs a SYSDBA priv. End-user and application schemas must NEVER be able to use the ALTER SYSTEM command directly. That will be a very serious and utterly silly security risk. (the type that can get you fired in the corporate world)
    2. Killing sessions is an exception. This should not be the run-of-the-mill thing. Why do you need to kill sessions from SQL*Plus? Are you sure that this is the best response to the problem you have? What is that problem? maybe we can offer better alternatives.

  • Regarding parallel job

    Hi ABAP Experts,
    Anybody can give a pointer on......
    "Program should create parallel job for X number of invoices at a time"

    Hi,
    The  logic  behind this is some thg like this,
    1 - Read the file from Application Layer or from local PC into an internal table.
    2 - Read 1000 records of the internal into another internal table
    3 - Schedule the Job using the JOB_OPEN  for the first 1000rs,,
    4 - Once the job is created then read next set of 1000records to create one more job..
    This will create the jobs in parallel from ur prgrm.
    please close the thread, if solved
    Regards,
    Aditya
    Edited by: aditya on Mar 3, 2010 5:30 PM

  • Regarding bdc using sessions

    can anyone tell me what all fields to be set to what while using the function modules
    1) bdc_open_group
    2)bdc_insert
    3)bdc_close_group
    thank u

    HI,
    check the Include program "<b>BDCRECX1</b>" in SE38.
    If contains calling of all the function you have listed.
    for Example
    <b>CALL FUNCTION 'BDC_OPEN_GROUP'
             EXPORTING  CLIENT   = SY-MANDT  "client
                        GROUP    = GROUP     "session name
                        USER     = USER      
                        KEEP     = KEEP      "keep session
                        HOLDDATE = HOLDDATE. "date
    CALL FUNCTION 'BDC_INSERT'
             EXPORTING TCODE     = TCODE  "transaction for bdc
             TABLES    DYNPROTAB = BDCDATA. "data
    CALL FUNCTION 'BDC_CLOSE_GROUP'.</b>
    Regards,
    Message was edited by: HRA

  • Regarding parallel therads for a program.

    I have a program which runs at the end of a request set. while running there is this insert statement which should have 8 parallel threads since parallel hint is used. but while running it shows single thread and it takes 3 to 4 hrs to complete. if I run this program separately then I get 8 parallel threads and the program complete in 25 mins. there are no other programs running in parallel in the request set.

    Hi user12019543
    can you check degree in your tables belongs your load
    select degree,instances from dba_tables where table_name='TABLE_NAME';
    OR
    select degree,instances from USER_tables where table_name='TABLE_NAME';
    Regards,
    Jey
    Edited by: Jey A on Mar 19, 2013 6:43 AM

  • "match protocol sip" has no any match with Polycom HDX SIP Session

    I am working on QoS for Polycom HDX video device。
    Found some strange with command "match protocol sip"
    Config is following:
    class-map match-any cm-prec-3-in
    match access-group name acl-prec-3
    match protocol sip   !--->try to catch the sip traffic
    match protocol rtcp
    match  dscp cs3
    Router#sh policy-map interface vlan 300  input class cm-prec-3-in
    Vlan300
       Service-policy input: pm-classify-in
         Class-map: cm-prec-3-in (match-any)
          789 packets, 294892 bytes
          5 minute offered rate 0 bps, drop rate 0 bps
          Match: access-group name acl-prec-3
            753 packets, 290572 bytes
            5 minute rate 0 bps
         Match: protocol sip  !---> no any sip traffic is matched
            0 packets, 0 bytes
            5 minute rate 0 bps
         Match: protocol rtcp !---> RTCP catched
            36 packets, 4320 bytes
            5 minute rate 0 bps
          Match:  dscp cs3 (24)
            0 packets, 0 bytes
            5 minute rate 0 bps
          QoS Set
            precedence 3
              Packets marked 789
    try to show the nbar version:
    sh ip nbar version:                                      
    27  sip                  Mv: 2
          Iv:                cisco-phone - 1
          Iv:                telepresence-control - 1
    42  cisco-phone          Mv: 1
          Iv:                  sip - 2
    Dose that mean this command "match protocol sip" is only supported for Cisco device?
    Try to use ACL to match udp port 5060 for the QoS, and it is working.
    Try to use comster "ip nbar custom" to re-write the nbar and it is doesn't accept.
    Please help to clarify how to use this command.

    Hi Patrick
    I am working on this one as well. I have a UC560 with SIP Trunk provider Les.NET.
    It was working fine until a few weeks ago when something changed on the provider end and broke it. My hunch it is something to do with the SIP REFER.
    http://www.cisco.com/c/en/us/support/docs/voice-unified-communications/unified-communications-manager-express/91535-cme-sip-trunking-config.html
    Here is an excerpt from the above page:
    Call Transfer
    When a call comes in on an SIP trunk to an SCCP Phone or CUE AutoAttendant (AA) and is transferred, the CME by default will send a SIP REFER message to the SP proxy. Most SP Proxy Servers do not support the REFER method. This needs to be configured in order to force the CME to hairpin the call:
    Router(config)#voice service voip
    Router(conf-voi-serv)#no supplementary-service sip refer
    Figure 3 shows the behavior of the CME system with the REFER method disabled.

  • Regarding CT and Session Method in BDC ?

    Hi,
    If there are 50 records and 25th row data is having error.
    What will happen when we run it in Call Transaction and Session Method in both Foreground and Background methods ? Can anybody explain me in details ?

    Session method : the posting for the specific record will end in error, all other records will be processed.
    In foreground mode: you can correct the error manually.
    Once a session is processed, you can restart it in foreground to process the error ones...
    Call transaction:
    it depends on your program logic.
    Normally, your program will continue with the next record, unless you insert an error message in your program.
    e.g. call transaction....
    if sy-subrc ne 0.
    message e...
    endif.

  • Small Concept Buildup in regard to different Sessions of sqlplus..

    Hi,
    I am using Oracle 10g over RHEL4..
    I have opened two sessions of sqlplus through different Terminal windows.. Now the issue that I am facing is listed below..
    I made one sql file which contains some select query under one Terminal prompt.. Now i tried executing the same file from Other terminal prompt in sqlplus hr/hr,, it doesn't reflects the data instead when i did sqlplus hr/hr again(after exiting, then logging),, then it retrieved the actual data that i saved in the sql file under first Terminal prompt..
    This happens everytime, i.e. every time I made some changes in the file under first Terminal prompt, and tried executing the one in other Terminal Prompt, then it reflects the previous data onlyy.. After i exit the session, and logged in again as hr/hr, then it reflects the actual data..
    Please share the logic behind this..
    Thanks in advance..
    Rahul

    The logic is one of the most basic of concepts in the Oracle database and one you must learn before you can have any hope of being successful. Oracle does not allow dirty reads.
    Go to the docs at http://tahiti.oracle.com and read the Concept docs paying special attention to the following keywords:
    SCN (system change number)
    COMMIT
    ROLLBACK
    TRANSACTION
    Multiversion Read Consistency
    From the standpoint of the database in any other than the current session: Nothing is changed until you commit the transaction.

  • Need some information regarding parallel release creation for VSA

    Hi ,
    Currently we are using the sequential release creation of vendor schedule agreement for both DELJIT/DELFOR (ME84)  and output message creation is" Only message for document"(ME9E) in backguond.
    But the nackground job takes longtime.
    so we are planning to do parallel release creation which reduce the time configuring parallel server.
    My question is that: if we go for parallel release creation in (ME84) do we need to go for output message (ME(E)as itemwise in each VSA" only message for SA release"

    Hi ,
    Currently we are using the sequential release creation of vendor schedule agreement for both DELJIT/DELFOR (ME84)  and output message creation is" Only message for document"(ME9E) in backguond.
    But the nackground job takes longtime.
    so we are planning to do parallel release creation which reduce the time configuring parallel server.
    My question is that: if we go for parallel release creation in (ME84) do we need to go for output message (ME(E)as itemwise in each VSA" only message for SA release"

  • Regarding rman user session

    hi all,
    i need to create a trigger for tracing a particular user session or rman session so that only one trace file is used throughout, regardless of there number of logins or logoff
    thanks

    Create a logon trigger, that checks for a certain login-name
    We do the same for checking applications that log on.
    Remember that if you're calling a procedure from the logon trigger, you have to disable the trigger every time you work/develop on the procedure.
    Otherwise the trigger gets Invalid and all logons are denied
    I can't show you the code we use now, because our storage-network has failed
    Edit: Back online
    The code
    CREATE OR REPLACE TRIGGER check_logon_logging
      after logon on database
    begin
      illegal_appl_prc;
    end;

Maybe you are looking for

  • How to install Windows 7 on Late 2013 Macbook Pro?

    I purchased a brand new Macbook Pro last week, retina display and all. I've enjoyed it thus far, yet for whatever reason, I can't seem to install windows on a partition in BootCamp like I used to be able to. I'm on Mavericks of course, 10.9.3. I trie

  • Oracle DataSource configuration on  JBoss3.x

    Hello, Can any1 plz help me in configuring Oracle 9i DataSource with JBoss 3.x?? I know JBoss 3.x comes with Hypersonic DB as a default DataBase. I downloaded ejb examples from http://www.titan-books.com. This site contain examples from O'Reilly's En

  • Load URL on load

    Evening developers. I'm shiny new to Cocoa programming, and I've started up a little project that includes the Web View-object from the Webkit SDK. My question is: can someone help me making a function that does this: When my application opens/loads,

  • I can't remove full tilt poker from my mac. Can you help?

    I installed Full Tilt Poker on my mac. I don't really like it and want to delete the program. When I drag it to the trash, it pops out. Any suggestions?

  • Custom Score Function

    Experts, I want to perform a search on approx 200k records, all of 255 characters or less. For example, a user might enter "red hERring" and I'd like returned "Red herring", 100 for the term and score if an exact match is found. If a slight discrepan