What happens if 100 querys hits database at one time?

I have sever problem. I have java application and having conection pool upto 150. Let's say from the application my database get hit by 100 connection AT A TIME.
my cpu goes 99%.
Now my question is how can i get better performance out of this.
Assumtions: all queries are well written, net work is good
Expected solution: May trying increasing SGA size would increaase some performance?
I heard some thing about doing parralle queries. what 's that?
Thanks in advance.

I just ran my programme for one session and here is a trace for one session...
Sorry if i am violating this forum rule by posting a big log....
TKPROF: Release 10.2.0.1.0 - Production on Thu Dec 21 15:44:04 2006
Copyright (c) 1982, 2005, Oracle.  All rights reserved.
Trace file: j.txt
Sort options: default
count    = number of times OCI procedure was executed
cpu      = cpu time in seconds executing
elapsed  = elapsed time in seconds executing
disk     = number of physical reads of buffers from disk
query    = number of buffers gotten for consistent read
current  = number of buffers gotten in current mode (usually for update)
rows     = number of rows processed by the fetch or execute call
call fl_trans.validate_city(:1,:2,:3,:4,:5,:6)
call     count       cpu    elapsed       disk      query    current        rows
Parse       36      0.00       0.00          0          0          0           0
Execute     36      0.10       0.13          2        526          0           0
Fetch        0      0.00       0.00          0          0          0           0
total       72      0.10       0.13          2        526          0           0
Misses in library cache during parse: 1
Misses in library cache during execute: 1
Optimizer mode: ALL_ROWS
Parsing user id: 70 
Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  SQL*Net message to client                      36        0.00          0.00
  SQL*Net message from client                    36        0.00          0.04
select /*+ index(idl_sb4$ i_idl_sb41) +*/ piece#,length,piece
from
idl_sb4$ where obj#=:1 and part=:2 and version=:3 order by piece#
call     count       cpu    elapsed       disk      query    current        rows
Parse        6      0.00       0.00          0          0          0           0
Execute      6      0.00       0.00          0          0          0           0
Fetch       16      0.00       0.00          0         42          0          10
total       28      0.00       0.00          0         42          0          10
Misses in library cache during parse: 1
Misses in library cache during execute: 1
Optimizer mode: CHOOSE
Parsing user id: SYS   (recursive depth: 1)
Rows     Row Source Operation
      2  TABLE ACCESS BY INDEX ROWID IDL_SB4$ (cr=6 pr=0 pw=0 time=88 us)
      2   INDEX RANGE SCAN I_IDL_SB41 (cr=4 pr=0 pw=0 time=61 us)(object id 117)
select /*+ index(idl_ub1$ i_idl_ub11) +*/ piece#,length,piece
from
idl_ub1$ where obj#=:1 and part=:2 and version=:3 order by piece#
call     count       cpu    elapsed       disk      query    current        rows
Parse        6      0.00       0.00          0          0          0           0
Execute      6      0.00       0.00          0          0          0           0
Fetch       15      0.00       0.00          0         46          0          11
total       27      0.00       0.00          0         46          0          11
Misses in library cache during parse: 1
Misses in library cache during execute: 1
Optimizer mode: CHOOSE
Parsing user id: SYS   (recursive depth: 1)
Rows     Row Source Operation
      1  TABLE ACCESS BY INDEX ROWID IDL_UB1$ (cr=4 pr=0 pw=0 time=93 us)
      1   INDEX RANGE SCAN I_IDL_UB11 (cr=3 pr=0 pw=0 time=57 us)(object id 114)
select /*+ index(idl_char$ i_idl_char1) +*/ piece#,length,piece
from
idl_char$ where obj#=:1 and part=:2 and version=:3 order by piece#
call     count       cpu    elapsed       disk      query    current        rows
Parse        6      0.00       0.00          0          0          0           0
Execute      6      0.00       0.00          0          0          0           0
Fetch       10      0.00       0.00          0         23          0           4
total       22      0.00       0.00          0         23          0           4
Misses in library cache during parse: 1
Misses in library cache during execute: 1
Optimizer mode: CHOOSE
Parsing user id: SYS   (recursive depth: 1)
Rows     Row Source Operation
      1  TABLE ACCESS BY INDEX ROWID IDL_CHAR$ (cr=4 pr=0 pw=0 time=73 us)
      1   INDEX RANGE SCAN I_IDL_CHAR1 (cr=3 pr=0 pw=0 time=50 us)(object id 115)
select /*+ index(idl_ub2$ i_idl_ub21) +*/ piece#,length,piece
from
idl_ub2$ where obj#=:1 and part=:2 and version=:3 order by piece#
call     count       cpu    elapsed       disk      query    current        rows
Parse        6      0.00       0.00          0          0          0           0
Execute      6      0.00       0.00          0          0          0           0
Fetch       11      0.00       0.00          0         37          0           9
total       23      0.00       0.00          0         37          0           9
Misses in library cache during parse: 1     
Misses in library cache during execute: 1
Optimizer mode: CHOOSE
Parsing user id: SYS   (recursive depth: 1)
Rows     Row Source Operation
      2  TABLE ACCESS BY INDEX ROWID IDL_UB2$ (cr=5 pr=0 pw=0 time=100 us)
      2   INDEX RANGE SCAN I_IDL_UB21 (cr=3 pr=0 pw=0 time=65 us)(object id 116)
SELECT INITCAP(CITY),UPPER(STATE),ZIP
FROM
US_CITIES WHERE (CITY = :B2 AND STATE = :B1 )
call     count       cpu    elapsed       disk      query    current        rows
Parse        0      0.00       0.00          0          0          0           0
Execute     72      0.01       0.00          0          0          0           0
Fetch       72      0.00       0.02          2        144          0           0
total      144      0.01       0.03          2        144          0           0
Misses in library cache during parse: 0     
Misses in library cache during execute: 1
Optimizer mode: ALL_ROWS
Parsing user id: 70     (recursive depth: 1)
Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  db file sequential read                         2        0.02          0.02
SELECT INITCAP(CITY_NAME),UPPER(STATE),ZIP_CODE
FROM
US_ZIP_CODES WHERE (ZIP_CODE = :B1 )
call     count       cpu    elapsed       disk      query    current        rows
Parse        0      0.00       0.00          0          0          0           0
Execute     72      0.00       0.00          0          0          0           0
Fetch      144      0.00       0.00          0        216          0          72
total      216      0.01       0.01          0        216          0          72
Misses in library cache during parse: 0
Misses in library cache during execute: 1
Optimizer mode: ALL_ROWS
Parsing user id: 70     (recursive depth: 1)
BEGIN fl_trans_test.truck_search_new  (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,
  :13,:14,:15,:16,:17) ; END;
call     count       cpu    elapsed       disk      query    current        rows
Parse       36      0.00       0.00          0          0          0           0
Execute     36      0.07       0.07          0        240          0          36
Fetch        0      0.00       0.00          0          0          0           0
total       72      0.07       0.07          0        240          0          36
Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: 70
Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  SQL*Net message to client                      36        0.00          0.00
  SQL*Net message from client                    36        0.00          0.04
SELECT LONGITUDE,LATITUDE
FROM
US_ZIP_CODES WHERE ZIP_CODE = :B1
call     count       cpu    elapsed       disk      query    current        rows
Parse        0      0.00       0.00          0          0          0           0
Execute     72      0.01       0.00          0          0          0           0
Fetch       72      0.00       0.00          0        216          0          72
total      144      0.01       0.01          0        216          0          72
Misses in library cache during parse: 0
Misses in library cache during execute: 1
Optimizer mode: ALL_ROWS   
Parsing user id: 70     (recursive depth: 1)
SELECT A.FROM_CITY ,FROM_ST, DEST_CITY, DECODE (DEST_ST, NULL, ' ', DEST_ST),
  EQUIP_TYPE, DECODE (NOTE1, NULL, ' ', NOTE1), DECODE (NOTE2, NULL, ' ',
  NOTE2), FULL_OR_PARTIAL, DECODE (LD_REF_NO, NULL, ' ', LD_REF_NO), LD_COUNT,
   WEIGHT, EQUIP_LENGTH, A.COMPANY_NM, PHONE1, PHONE2, STATE, MC_NO,
  CREDITOR1, CREDITOR2, DECODE (:B11 , 'Z',
  TO_CHAR(FL_TRANS_TEST.CALC_DISTANCE_BY_LATI_LONG(FROM_ZIP_LONGITUDE,
  FROM_ZIP_LATITUDE, :B14 ,:B13 )), '--' ) AS F_DIST, DECODE
  (POSTED_BY_ZIP_OR_ST_ZONE, 'N', '--', DECODE (:B7 , 'Z', TO_CHAR
  (FL_TRANS_TEST.CALC_DISTANCE_BY_LATI_LONG(FROM_ZIP_LONGITUDE,
  FROM_ZIP_LATITUDE, :B14 ,:B13 )), '--' ) ) AS T_DIST, DECODE
  (POSTED_BY_ZIP_OR_ST_ZONE, 'N', '--',
  FL_TRANS_TEST.CALC_DISTANCE_BY_LATI_LONG(FROM_ZIP_LONGITUDE,
  FROM_ZIP_LATITUDE, DEST_ZIP_LONGITUDE,DEST_ZIP_LATITUDE) ) AS DISTANCE,
  AVAILABLE_DATE, TO_CHAR (EXEC_TIME_STAMP, 'YYYY-MM-DD HH24:MI:SS') AS
  TIME_STAMP, RATE  
FROM
FL_TK_POSTING A WHERE A.USER_NAME <> :B15 AND ( ( ( ( A.FROM_ZIP_LONGITUDE   
  BETWEEN :B14 -:B12 AND :B14 +:B12 AND A.FROM_ZIP_LATITUDE BETWEEN :B13     
  -:B12 AND :B13 +:B12 ) ) AND (:B11 = 'Z') ) OR ( UPPER(A.FROM_ST) IN (      
  SELECT UPPER(C.ZONE_STATE) FROM US_ZONES C WHERE ( ZONE_STATE IN (SUBSTR
  (:B16 , 1, 2), SUBSTR (:B16 , 3, 2), SUBSTR (:B16 , 5, 2), SUBSTR (:B16 , 7,
   2), SUBSTR (:B16 , 9, 2), SUBSTR (:B16 , 11, 2), SUBSTR (:B16 , 13, 2) )
  OR ZONE IN (SUBSTR (:B16 , 1, 2), SUBSTR (:B16 , 3, 2), SUBSTR (:B16 , 5, 2)
  , SUBSTR (:B16 , 7, 2), SUBSTR (:B16 , 9, 2), SUBSTR (:B16 , 11, 2), SUBSTR
  (:B16 , 13, 2) ) ) ) AND (:B11 = 'N') ) ) AND ( ( A.DEST_ZIP_LONGITUDE
  BETWEEN :B10 -:B8 AND :B10 +:B8 AND A.DEST_ZIP_LATITUDE BETWEEN :B9 -:B8
  AND :B9 +:B8 AND (:B7 = 'Z')) OR (( :B6 IN ( SELECT D.ZONE_STATE FROM
  US_ZONES D WHERE ( D.ZONE_STATE IN (LOWER (A.DEST_ST), TK_POST_ST1, 
  TK_POST_ST2, TK_POST_ST3, TK_POST_ST4, TK_POST_ST5, TK_POST_ST6,
  TK_POST_ST7, TK_POST_ST8 ) OR ZONE IN (TK_POST_A0, TK_POST_A1, TK_POST_A2,
  TK_POST_A3, TK_POST_A4, TK_POST_A5, TK_POST_A6, TK_POST_A7, TK_POST_A8 ) ))
  ) AND (POSTED_BY_ZIP_OR_ST_ZONE = 'N')) OR ( 1 >= ( SELECT MIN(ROWNUM) FROM
  US_ZONES C , US_ZONES D WHERE ( C.ZONE_STATE IN (SUBSTR (:B17 , 1, 2),
  SUBSTR (:B17 , 3, 2), SUBSTR (:B17 , 5, 2), SUBSTR (:B17 , 7, 2), SUBSTR
  (:B17 , 9, 2), SUBSTR (:B17 , 11, 2), SUBSTR (:B17 , 13, 2) ) OR C.ZONE IN
  (SUBSTR (:B17 , 1, 2), SUBSTR (:B17 , 3, 2), SUBSTR (:B17 , 5, 2), SUBSTR
  (:B17 , 7, 2), SUBSTR (:B17 , 9, 2), SUBSTR (:B17 , 11, 2), SUBSTR (:B17 ,
  13, 2) ) ) AND ( D.ZONE_STATE IN (LOWER (A.DEST_ST), TK_POST_ST1,
  TK_POST_ST2, TK_POST_ST3, TK_POST_ST4, TK_POST_ST5, TK_POST_ST6,
  TK_POST_ST7, TK_POST_ST8 ) OR D.ZONE IN (TK_POST_A0, TK_POST_A1, TK_POST_A2,
   TK_POST_A3, TK_POST_A4, TK_POST_A5, TK_POST_A6, TK_POST_A7, TK_POST_A8 ) )
  AND C.ZONE_STATE = D.ZONE_STATE ) ) ) AND (DECODE (:B5 , 'A',
  FULL_OR_PARTIAL) IN ('F', 'P') OR FULL_OR_PARTIAL = :B5 ) AND ( DECODE
  (LTRIM (RTRIM (:B4 )), 'Auto Carrier', EQUIP_TYPE_INDEX) IN (0) OR DECODE
  (LTRIM (RTRIM (:B4 )), 'B - Train', EQUIP_TYPE_INDEX) IN (1) OR DECODE
  (LTRIM (RTRIM (:B4 )), 'Container', EQUIP_TYPE_INDEX) IN (2) OR DECODE
  (LTRIM (RTRIM (:B4 )), 'Double Drop', EQUIP_TYPE_INDEX) IN (3) OR DECODE
  (LTRIM (RTRIM (:B4 )), 'Dump Truck', EQUIP_TYPE_INDEX) IN (4) OR DECODE
  (LTRIM (RTRIM (:B4 )), 'Flatbed Hazmat', EQUIP_TYPE_INDEX) IN (7) OR DECODE
  (LTRIM (RTRIM (:B4 )), 'Reefer Hazmat', EQUIP_TYPE_INDEX) IN (9) OR DECODE
  (LTRIM (RTRIM (:B4 )), 'Step Deck', EQUIP_TYPE_INDEX) IN (10, 5, 6) OR
  DECODE (LTRIM (RTRIM (:B4 )), 'Tanker', EQUIP_TYPE_INDEX) IN (11) OR DECODE
  (LTRIM (RTRIM (:B4 )), 'Van Hazmat', EQUIP_TYPE_INDEX) IN (14) OR DECODE
  (LTRIM (RTRIM (:B4 )), 'Power Only', EQUIP_TYPE_INDEX) = 17 OR DECODE
  (LTRIM (RTRIM (:B4 )), 'Van', EQUIP_TYPE_INDEX) IN (12, 13, 15, 14) OR
  DECODE (LTRIM (RTRIM (:B4 )), 'Van Air-Ride', EQUIP_TYPE_INDEX) IN (12, 13,
  15, 14) OR DECODE (LTRIM (RTRIM (:B4 )), 'Vented Van', EQUIP_TYPE_INDEX) IN
  (16, 8, 15) OR DECODE (LTRIM (RTRIM (:B4 )), 'Reefer', EQUIP_TYPE_INDEX) IN
  (15, 8, 9) OR DECODE (LTRIM (RTRIM (:B4 )), 'Van Or Reefer',
  EQUIP_TYPE_INDEX) IN (12, 16, 8, 15, 14, 9) OR DECODE (LTRIM (RTRIM (:B4 )),
   'Flatbed', EQUIP_TYPE_INDEX) IN (5, 6, 10, 7) OR DECODE (LTRIM (RTRIM (:B4
  )), 'Flatbed Air-Ride', EQUIP_TYPE_INDEX) IN (5, 6, 7) OR DECODE (LTRIM
  (RTRIM (:B4 )), 'Other (see Notes)', EQUIP_TYPE_INDEX ) = 18 ) AND
  EQUIP_LENGTH <= :B3 AND WEIGHT <= :B2 AND ROWNUM < 201 AND
  A.USR_POSTING_POS > -2 AND EXEC_TIME_STAMP >= SYSDATE - ((.041667)*:B1 )
call     count       cpu    elapsed       disk      query    current        rows
Parse       36      0.00       0.00          0          0          0           0
Execute     36      0.03       0.03          0          0          0           0
Fetch       36      0.49       0.48          0       3469          0          72
total      108      0.53       0.52          0       3469          0          72
Misses in library cache during parse: 1
Misses in library cache during execute: 1
Optimizer mode: ALL_ROWS
Parsing user id: 70
Rows     Row Source Operation
      2  COUNT STOPKEY (cr=97 pr=0 pw=0 time=8440 us)
      2   FILTER  (cr=97 pr=0 pw=0 time=8424 us)
   1014    TABLE ACCESS BY INDEX ROWID FL_TK_POSTING (cr=50 pr=0 pw=0 time=15320 us)
   1296     INDEX RANGE SCAN IX_TK_POST_EXEC_TIME_STAMP (cr=5 pr=0 pw=0 time=3962 us)(object id 81233)
      0    INDEX FULL SCAN PK_US_ZONES (cr=0 pr=0 pw=0 time=0 us)(object id 81106)
      1    INDEX RANGE SCAN PK_US_ZONES (cr=16 pr=0 pw=0 time=411 us)(object id 81106)
     15    SORT AGGREGATE (cr=31 pr=0 pw=0 time=2277 us)
      0     COUNT  (cr=31 pr=0 pw=0 time=2042 us)
      0      NESTED LOOPS  (cr=31 pr=0 pw=0 time=1872 us)
     30       INDEX FULL SCAN PK_US_ZONES (cr=15 pr=0 pw=0 time=679 us)(object id 81106)
      0       INDEX RANGE SCAN PK_US_ZONES (cr=16 pr=0 pw=0 time=661 us)(object id 81106)
Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  SQL*Net message to client                      36        0.00          0.00
  SQL*Net message from client                    35        4.86        170.13
OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
call     count       cpu    elapsed       disk      query    current        rows
Parse      108      0.01       0.01          0          0          0           0
Execute    108      0.21       0.23          2        766          0          36
Fetch       36      0.49       0.48          0       3469          0          72
total      252      0.72       0.74          2       4235          0         108
Misses in library cache during parse: 2
Misses in library cache during execute: 2
Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  SQL*Net message to client                      72        0.00          0.00 
  SQL*Net message from client                   107        4.86        170.22 
OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS 
call     count       cpu    elapsed       disk      query    current        rows
Parse       24      0.01       0.01          0          0          0           0
Execute    240      0.05       0.03          0          0          0           0
Fetch      340      0.01       0.03          2        724          0         178
total      604      0.07       0.08          2        724          0         178
Misses in library cache during parse: 4
Misses in library cache during execute: 7
Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  db file sequential read                         2        0.02          0.02
  SQL*Net message to client                      36        0.00          0.00
  114  user  SQL statements in session.
   24  internal SQL statements in session.
  138  SQL statements in session.
Trace file: j.txt
Trace file compatibility: 10.01.00
Sort options: default
       1  session in tracefile.
     114  user  SQL statements in trace file.
      24  internal SQL statements in trace file.
     138  SQL statements in trace file.
      10  unique SQL statements in trace file.
    2164  lines in trace file.
     170  elapsed seconds in trace file.

Similar Messages

  • What happened to the security login section for one password which allows me to have passwords stored???

    what happened to the security login section for one password which allows me to have passwords stored???

    * Tools > Options > Security: Passwords: "Remember passwords for sites"
    Make sure that you haven't saved Uppercase and Lowercase versions of that name and password.
    Remove saved Password(s):
    * [[Remembering passwords]]
    * [[Protecting stored passwords using a master password]]

  • How to make more than one person can access the database at one time

    how to make  more than one person can access the database at one time 

    Please post further f'up's in the Access forum.
    In short: for different reasons it is best practice that each user gets its own local copy of the database. This means that you need to split it into a front-end which only consists of the forms, queries, reports etc. Everything which doesn't need to be
    shared. And a back-end, which only stores the data.
    Take also a look at Allen Browne's article:
    Split your Access database into data and application.
    When you've splitted your database, you may often consider to use SQL Server as back-end. Here you may read Armen Stein's
    The Best of Both Worlds: Access-SQL Server Optimization.

  • What happens if we assign multiple roles to one user

    Hi Experts,
    what is the outcome of the scenerio where multiple roles are assigned to one user in MDM
    example : role A has execute command for field X and another role B has read only command for the same field X, what happens if both the roles are assignes to user John?
    Thanks in advance
    Sharma.

    hello Abhishake,
    Thanks for the reply,
    so does that mean the user will have the execute role even though the second role was read only?
    Thanks,
    sharma

  • What is the best way of creating a one-time backup using DPM 2012R2?

    Hello,
    Due to some severe tape issues, we have lost a lot of our long-term storage data.
    I schedule a recovery point on our servers every Friday, once a week.  We retain this data for the 64 weeks (the maximum amount of versions DPM allows.)
    Management needs me to put one recovery point from each month to tape (preferably from the beginning of each month.)
    From the DPM console, I have been manually searching each server and running a recovery job from each "short term" recovery point we still have in the system.   I am recovering this data to a large disk array that I'm using as a staging
    area.  My intention is to take this data and put it onto tape using DPM and leave it there forever (20 years.)
    Since the space on the array is limited, I can only recover a few months at a time before having to delete the recoevered data to make way for the next group.
    The way DPM works it seems you must have a protection group for every backup job you run;  so if I have to repeat this process 8 times, I'll end up with 8 different protection groups all assigned to the host running the staging array.  NOTE: 
    the host running the staging array will be wiped in the near future.
    What would be the best method to carry this task out ?
    This forum post is similar, but doesn't address all these additional groups created:
    https://social.technet.microsoft.com/Forums/en-US/f379740c-4507-4a82-b275-c95e3e968b57/dpm-2012-r2-perform-one-time-backup?forum=dataprotectionmanager
    Any assistance would be welcome!
    Matthew J. Fazio

    Hi,
    What you can do is protect the staging server by using a single share - lets call it STAGING for simplicity.
    Perform your first set a restores and restore to the staging share, you can create meaningful subdirectories one for each data source you are restoring.  
    Now protect the STAGING share using DPM - protect using long term to tape only, Frequency yearly, and set retention policy for 20 years. 
    Perform an ad-hoc backup (right-click the data source and create recovery point to tape)
    When that completes, delete the sub-directories under the staging share and then repeat the process of restoring more data then backing up the same share.  When you are all done, you can remove the protection group, but maintain the tape backups
    so they will be available for restores. 
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • TS1424 What happens by mistake a hit the wrong track to buy?

    Was wondering.. What to do if by mistake I hit the wrong track and buy it but dont want to keep it?

    Delete it.
    There are no refunds.

  • I can no longer download and save files. They are now saved with a ".part" suffix that I can not use or open. What happened, I used to do this all the time?

    Downloads seem to be happening normally at first but the file shows up with a file extension of ".part" that I can not use or open. If I refresh the folder where it was downloaded to, it disappears as though it wasn't there at all.
    I used to do this and it just yesterday started to give me problems. It doesn't seem to matter what file type I do this with as PDF, MP3 and EXE files have all shown this problem.
    Please help!

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.<br />
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See also "Disable virus scanning in Firefox preferences - Windows"
    * http://kb.mozillazine.org/Unable_to_save_or_download_files

  • Database Adapter Polling 100 large size messages at one time.

    We have a BPEL process which polls a header & detail table on a Oracle DB.
    Typically we are having a scenario that we have around 1000 detail line items for each header.In the night when we start the process we have around 100 such headers each having 1000 detail lines.
    We have configured the adapter in following way.Hence according to us having MaxRaiseSize="1" will create individual instace for each row that adapter fetches.is that correct?
    We do get one instace per header in console.
    Currently when we run the interface with 3 headers + each having 3000 details BPEL works fine.
    But when i increase the load to have 50 headers + each having 3000 details , i dont see messages coming to BPEL console & also BPEL goes down & comes up on its own.
    While i was monitoring it i saw that invoke_message table in dehydration store was fetching the records from messages from DB & gradually creating rows in the table & after like 30 mins it stopped we were getting internal server error on BPEL console and then it comes up on its own after some time & again rows are added in the invoke_message.
    Althoug out of 100 instances that i think i should get, i see just 2 created in spam of almost 2 hrs.
    My question is how can make this processing faster ? can configure something in DB adapter liek increase numberofthreads or something wich willmake the processing faster?
    Any idea how BPEL works in this scenario?
    Appreciate if someone can help me in this regard.
    Thanks
    **&lt;binding name="DBRMSTransferPoll_binding" type="tns:DBRMSTransferPoll_ptt"&gt;*
    *&lt;pc:inbound_binding/&gt;*
    *&lt;operation name="receive"&gt;*
    *&lt;jca:operation*
    ActivationSpec="oracle.tip.adapter.db.DBActivationSpec"
    DescriptorName="DBRMSTransferPoll.XxlcbTsfHdrV"
    QueryName="DBRMSTransferPoll"
    PollingStrategyName="SequencingPollingStrategy"
    SequencingFieldName="LAST_UPDATE_DATETIME"
    SequencingFieldType="java.sql.Timestamp"
    SequencingTableNameFieldValue="TSF_HDR_V"
    SequencingTableName="SEQUENCING_HELPER"
    SequencingTableNameFieldName="TABLE_NAME"
    SequencingTableValueFieldName="LAST_READ_DATE"
    MaxRaiseSize="1"
    MaxTransactionSize="unlimited"
    PollingInterval="5400"
    NumberOfThreads="1"
    DelayCommit="false"
    PollForChildUpdates="true"
    ReturnSingleResultSet="false"
    MappingsMetaDataURL="DBRMSTransferPoll_toplink_mappings.xml" /&gt;
    *&lt;input/&gt;*
    *&lt;/operation&gt;*
    *&lt;/binding&gt;**

    The issue you are facing is memory. SOA Suite is not really designed to handle large payloads because of this issue.
    What I would do in the first instance is shorten the frequency so you are only selecting a small number of rows at a time. This may not have an impact because the data maybe produced via a batch program so you will always get these large volumes.
    What you could do is just select the header still using the MaxRaiseSize="1" so you get just one instance per header but then you select the lines via a db adapter in the BPEL process.
    The other option is to have some other mechanism that invokes the process with the full payload, e.g. setup a DB schedule that runs PL/SQL selects the data and places it on a AQ.
    cheers
    James

  • I use Microsoft as my browser & it has suddenly stopped p;ermitting Firefox from lopening. What happens is a get a window which says time has elapsed do you wan

    I use microsoft & suddenly it will not permit Firefox to load. I get a window which says TIME OUT do you want to try again, & this keeps repeating. I have downloaded your new firfox & this has not changed the situation. What can I do?
    [email protected]

    A possible cause is security software (firewall,anti-virus) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *http://kb.mozillazine.org/Browser_will_not_start_up
    *http://kb.mozillazine.org/Error_loading_websites

  • Two iTunes Library - hmm what happen? should i merge them into one?

    i remmeber when i bought new additional hard drive to to my intel macpro . i changed  itunes folder to there.. becase my main HD( HD1) memory is almost full..
    i remember  i reloacted my itunes folder there.. all music ,data,purchased item and art work etc..
    and not sure since when i see who  itumes folder  with different music content..  HD3 has itunes folder i re created and now i see my home folder (original HD ) has itunes fomder again (under Home/User/Music ..)  why?  it's happen after i downloaded new itunes? new latest itunes ? computer automativcally create new itunes folder to under music folder?
    someone one please help me?
    i'm very simple person i dont want these mutiple folders in my computer.. i still want entire  itunes folder to my new hard drive (HD3) because my HD 1 is almost full...
    thanks for reading and i hope you could help me...

    You can make iTunes point to the external media folder.
    Go to iTunes > Preferences > Advanced tab, change the iTunes Media folder location.
    Keep iTunes Media folder organized CHECKED
    Copy files to iTunes Media folder when adding to library CHECKED
    http://support.apple.com/kb/HT1449

  • What happens to Manual Tablespace Hot Backup operation,if...?

    What happens to Tablespace Hot backup operation , if one tablespace in the database is not backedup ? .
    Suppose if my database has 15 tablespaces, I have started tablespace hotbackup by using "Alter Tablespace <tblsname> Begin Backup" command & backing up one by one tablespace.
    If I don't backup one tablespace in the database, what happens to hot backup operation? Will it complete successfully or fails ?.
    Edited by: 874458 on Nov 7, 2011 8:41 PM

    I think you meant tablespace hot backup which was being used in earlier releases ?
    ALTER TABLESPACE <tablespace> BEGIN BACKUP;
    Copy/BAckup Datafiles using OS copy command
    ALTER TABLESPACE <tablespace> END BACKUP;
    In this case, nothing special happens if you have not backed up a tablespace.
    Only problem is, if you want to restore and recover the database from the backup, that tablespace, which is skipped/not backed up, cannot be restored.
    Just wait for other experts here to comment and give you more precise answers...

  • Time Machine backup created on Mac with a large hard disk. What happens when restore to MacBook Air with small SSD drive?

    What if a Time Machine backup was created on a Mac with a large hard disk, e.g. 500GB iMac - and I buy a new MacBook Air with a small SSD hard disk e.g 128GB. What happens when I need to use the larger Time Machine file to set up the new MacBook Air? What happens to all those files that can't fit on the smaller SSD drive?

    It is not the HD size, but rather the size of the data it contains. If you right-click your 500GB drive and select "Get Info" you can see how much is actually being used.
    Naturally if you are using more space than the new drive has, then you have to make some choices about what you want to keep and what you want to keep archived.
    I don't know what options are available but you may simply have to do a manual restore of files you want, in groups.

  • Develop presets: after preset "updated" what happens to all existing references?

    Testing the develop preset "Update with current settings" I've noticed that the existing images referencing the updated preset do not change. If you click the associated history steps before/after then the image updates.
    Is this "correct" or is this a bug? If it is correct, what is the point of "Update with current settings"?
    Related question: what happens to images referencing a preset that one deletes in the preset pane?

    When a preset is created, it stores the current level of the chosen parameters at the time of creation; in the example below, the preset which will be named CurrentPreset1 will store the current levels applied to the selected photo at the time the preset was created, and in this case will only store values corresponding to Color, Lens Corrections, and Process version.
    To update the values recorded in a preset, the various levels must be changed on the currently selected photo and then the "Update with current settings" must be selected on the preset to update. The "Update with current settings" therefore updates the preset itself with new values corresponding to the values set in the current photo and has nothing to do with how it was applied to photos in the past. A preset is not related in any way to photos on which it is applied; a preset simply applies the set values recorded in the preset on the selected photo as if these same values would be manually entered for the selected photo.

  • What Happened (beeping and ? mark)

    Upon start up from sleep, my G4 began to give a beeping sound as though it were a truck backing up. Then the screen when to only a question mark folder and sound stopped. Repeated attempts to start to no avail. Used Panther start up disk holding down 'c'. Would not recognize internal hard drive. Finally used same disk holding down Apple control. Recognized hard drive. Did a change startup disk to hard drive and restarted. Everything OK — back from the dead. What happened? Is my G4 now on borrowed time?

    Sounds like the hard drive may be iffy. The question mark on the folder means it can't find the hard drive to boot from.
    Have you brought up Disk Utility to see what it says for the SMART status? If it's anything but 'verified' the hard drive is on it's way out. Have you run the Apple hardware test or either of the 2 TechTool tests? Older Apple hardware test images can be downloaded from http://www.info.apple.com/support/aht.html . Otherwised, insert the first OS X disk, reboot holding the option key down, choose Apple hardware test, click the arrow to the right, and choose the extended test when prompted. What's it tell you?
    Needless to say, if you don't have a recent backup, do it now.

  • What happens when you AirDrop from Mac to iPhone and click Cancel?

    I have a Late 2013 27" iMac running OS X Yosemite 10.10 and an iPhone 6 Plus running iOS 8.0.2.
    I can take a PDF on my iMac, drag it to my iPhone in the AirDrop section of Finder, and it transfer to my iPhone just fine.  Once it's finished transferring, a popup shows on my iPhone asking me what app I want to open the PDF in, which is great.  At the bottom of that popup is a "Cancel" option.  My question is, what happens when you tap "Cancel" instead of one of the apps?  Is the file still somewhere on the iPhone?  Or does it get deleted?

    Connecting to a new computer or iTunes will always erase the device first. Back up manually before by right clicking on the iPod in the device list and choosing "backup". A manual backup does not include the sync process. You can use this backup to restore from after your iPod got wiped during the first sync.
    Transfer your purchases the same way and make sure to have at least one contact and event listed on your Mac, to be able to merge data.
    See also iTunes: About iOS backups to get more info about the content of a backup, and How to back up your data and set up as a new device , if you want to know more about saving info from the iPod before setting it up in iTunes.

Maybe you are looking for

  • D-link 604 DMZ, etc.

    I was finally able to connect to a PC AIM user by by-passing my router completely. They did have to initiate the a/v chat, though. I had tried all of the settings for the router, including the DMZ but always got the "failed to respond" message. My qu

  • What is the icon difference in MAX

    Hi all, I have one question regarding for PXI 5600. On the below image, you can see there is 2 different icon between PXI5600 in 2 different chassis . I wander why is like  this and how to make the icon same as icon as chassis 1?

  • Adobe Flash Player 9: Installation Problem

    I am using MAC OS X 10.3.9. I just downloaded Adobe Flash Player 9. Instead of step 4 onwards as in the Installation Instructions, i get two files: -flash player.plugin -flashplayer.xpt How do i proceed with the installation? Thanks Herman

  • Just Black movies in iDVD playback

    Hello. I bought myself a Casio Exilim S770 and Import the mpeg4 avi files to idvd. But there I just see some black movies but can hear the original sound. In QT the playback runs normal. Also in VLC. Another strange thing is, that if i copy some of t

  • Oracle tuning: How to find percentage rows being accessed from a table

    Oracle recommends that full table scan on a large table is good if the number of rows being accessed is more than 20%. My question is how to I find out how many rows of the table is being accessed if I have a complex SQL which involves 10 other table