Lot of enqueue_locks

DB-11.1.0.7
OS- RHEL 5.4
How to get rid of such large enqueue_locks ?
SELECT *  FROM v$sysstat WHERE class=4;
SELECT chr(bitand(p1,-16777216)/16777215)||chr(bitand(p1, 16711680)/65535) "Lock",
to_char( bitand(p1, 65535) )    "Mode"
FROM v$session_wait
WHERE event = 'enqueue';
STATISTIC# NAME                           CLASS      VALUE    STAT_ID
        27 enqueue timeouts                   4     825598 2425496215
        28 enqueue waits                      4    1430814 2307006529
        29 enqueue deadlocks                  4          0  472183780
        30 enqueue requests                   4  217866983 2440542518
        31 enqueue conversions                4   56459244   57745673
        32 enqueue releases                   4  217028625 2553146675
6 rows selected.
select * from v$enqueue_stat where cum_wait_time>0
order by cum_wait_time desc;
   INST_ID EQ TOTAL_REQ# TOTAL_WAIT#  SUCC_REQ# FAILED_REQ# CUM_WAIT_TIME
         1 CF    5667288       41379    5655029       12252      11953280
         1 TM   11263749          57   10986876      276839      10057870
         1 TX   30026842       92249   30027442          79       1392060
         1 PS  101041109     1229093  100537143      495123       1018750
         1 KO     140319       14888     140319           0        939470
         1 ST       2216          43       2216           0        520480
         1 HW    1292297       28164    1290811        1486        320530
         1 SQ      58810        1236      58810           0        234370
         1 TC       8440        1528       8440           0        234060
         1 FB    4353897       11118    4353898           0        127860
         1 RO      60453        5914      60453           0         99650
         1 CI     254390          38     254390           0         53420
         1 JD    1213641           6    1213641           0         52840
         1 BF      87739        3524      60598       27140         31180
         1 RF   32872044        1212   32872044           0         11430
         1 PR     139956         208     139956           0          9800
         1 US      29876          74      29875           0          6690
         1 JS   17529859          76   17529859           0          1840
         1 WF      33387           4      32993         394          1140
         1 PV      13121           3      13121           0            80
         1 TH     162560           1     162559           1            30Hidden parameter '_enqueue_locks' is set to 10466
Can i ask for giving direction to fine tune this enqueue issue ?

OraDBA02 wrote:
Load Profile
     Per Second     Per Transaction     Per Exec     Per Call
Redo size:     10,301,526.5     7,315,836.4           
Logical reads:     161,642.8     114,793.9           
Block changes:     32,621.4     23,166.7           
Physical reads:     95,054.7     67,505.0           
Physical writes:     4,437.8     3,151.6           
User calls:     30.6     21.8           
Executes:     12,801.8     9,091.4           
Top 5 Timed Foreground Events
Event     Waits     Time(s)     Avg wait (ms)     % DB time     Wait Class
db file sequential read     1,096,941     9,564     9     34.20     User I/O
direct path read     652,742     8,386     13     29.99     User I/O
DB CPU           5,711           20.42     
direct path read temp     223,382     433     2     1.55     User I/O
log file switch completion     2,209     275     125     0.98     Configuration
That's a fairly dramatic change from the last output - a huge volume of direct path reads - 652,742 reads could mean as much as 652GB - which is reflected in the 95,000 blocks per second. Your hardware can deliver a lot of reads when it tries ... but your job is to find out why. It's possible that 11.1 has simply changed some execution paths on you - or it might have decided to do some serial direct read table scans.
You said increasing logfile size to 2 GB. That would be a drastic increase ! May i ask you how did u derive that 2 GB ? Log switches are pretty high for about 2 hrs only when LOAD is executed, After that its pretty stable. We have FSFO configuration on my physical standby as well. Would there be any effect on by log-shipping activities on standby having 2 GB log file size ?
Your redo rate suggested you were switching every 15 seconds. Log file switches lead to large numbers of CF enqueue requests; I just suggested a size that would lead to switches every 4 minutes. I don't know all the subtle details of fast start failover - the log files and standby log files have to be matched, of course; but I don't think the absolute size of the log files is a consideration since you'll be pumping the redo to the remote site in real time, not at a log file switch. How frequently do the log files switch when you are not loading ? If you increase the log file size you can always set the archive_lag_target parameter to that many seconds.
All 'db file sequential reads' are on PK (all Index Unique Scans on Local PK) as all merges are based on my pk. Presumably the merges update the tables, and so there are random accesses to tables and to other indexes, though.
High #of executions are also due to concurrent merges and could of merges (small volume) are having Nested-loop in PK.Are you using the merge command with a high volume on each call, or have you done something like creating a loop that does a uses the merge with one row of data at a time, or does "merge" mean something other than the merge command ? The merge command exists as an efficient mechanism for merging a large volume of data into a VERY large volume of data with a single SQL operation.
I have 16 cores and 64 GB RAM.
May i ask you how Oracle derives '_enqueue_locks' parameter value ? I have transactions=150,sessions=500,processes=450 and dml_locks=60. Can you advice me whether i should increase this hidden parameter or what ? If yes, would there by any sub sequences ?
I don't know how enqueuelocks is derived. It used to be something like: 10 * sessions + 2 * processes + db_files + a couple of other things
Why do you have transactions set lower than processes, and how come your dml_locks parameter is so low. Transactions defaults to something like sessions + 10%, and dml_locks defaults to something like 5 * processes -- those are both ballpark figures, I can't remember exactly what the rules are.
I showed you in a previous post how to check if anything needed changing. Query v$resource_limit and check the max_allocation with the limit. It's not often that anyone uses anything like the limit set for enqueue_locks, but possibly you mess
Your comment on commit rate is also interesting (user commits/sec is just 1.41) . Yes, our merges are row-by-row processing and i am sure job is putting COMMIT once entire merge is executed. Is that an optimal load design ?I think this answer the question further up the page - is your "merge" a real merge command or a "update, if no rows updated then insert pl/sql".
Since 'log file sync' is not a problematic area, i think LGWR is neither starving for CPU nor for Memory. I am sure my IO is also good.I wasn't worried about your commit rate - I was curious that you did a small number of commits with a very large number of executions. There are no indications in stats you've shown me to suggest that the log writer has, or is, a problem. However you are doing too much I/O and need to reduce it if you want to make your processes go faster.
Regards
Jonathan Lewis

Similar Messages

  • Anyone know how to remove Overdrive books from my iphone that have been transferred from my computer? They do not show up on itunes. I see a lot of answers to this question but they all are based on being able to see the books in iTunes.

    How do I remove Overdrive books from the library that were downloaded onto my computer then transferred to my iphone? The problem is that they do not show up in iTunes.
    I see this question asked a lot when I google, but they always give answers that assumes you can find the books in iTunes either under the books tab, or the audio books tab or in the music. They do not show up anywhere for me. They do not remove from the app like the ones I downloaded directly onto my iphone.the related archived article does not answer it either.  I even asked a guy working at an apple store and he could not help either.   Anybody...?
    Thanks!

    there is an app called daisydisk on mac app store which will help you see exactly where the memory is focused and consumed try using that app and see which folders are using more memory

  • Internet Problem - One site will load, another won't. Then mintues later, the site that previously would load won't and the one that wouldn't will. I'm also pulling up a lot of pages in all text. Pics won't load or only one will load and the rest won't...

    Several weeks ago, I began to have some very strange internet connection issues. All the lights on my modem stay on and my computer shows full wi-fi signal, but I suddenly I won't be able to load any pages. Other times, I'll be able to load pages from one site, but not another. It's not the same sites all the time though.... sometimes I'll be able to load pages from one site and not another, and then 5 minutes later it'll switch and I'll be able to load pages from the site I previously couldn't and I won't be able to load pages from the site I previously could. A lot of pages are coming up just text with no pics... and then 5 mintues later that site will load normally and another site will come up just text. It does the same thing whether I'm connecting wirelessly or via an ethernet cable. It also doesn't matter which browser I use (I've tried Safari, Chrome, and Firefox). Although, once in a while when using chrome, I get a DNS error page instead of the usual 'cannot find server'. I contacted my service provider and I'm not losing speed or dropping packets. According to them, the problem I'm having is very strange since diagnostic tests show no problems at all. Perhaps someone has run into this before and has a suggestion?

    Then if you have tried all the browsers try connecting the system to yoour router with an Ethernet cable and turn WiFi off. If you have the same problem then it more then likely after your computer, Router or modem or connection from your ISP.
    If you get good browsing with the Ethernet cable then it is either the WiFi card in your Mac or the WiFi system in your router.

  • Follow-up action : please help - Inspection Lot related

    Hi,
    I am having the following trouble:
    Through MB02, a printout is generated to the local printer (LOCL).
    However, through QA11, when we save, we have a custom follow-up action attached that pops-up a
    dialog screen.
    The follow up action is triggered when a usage decision is changed for the inspection lot.
    The follow-up action (configured in IMG) calls a Function Module and a screen, which in turn populates
    a value into a custom DB table (based on the buttons, on the screen, sending either to LOCL or to a
    zebra printer).
    Now, what has to happen is that after inserting the value into a custom table, it should also open a sapscript and output.
    The Sapscript and print program are there, with the print program being created 3-4 years ago by someone
    else. However, even though we have code in the print program to update nast, in turn creating a message
    for output (1st the custom DB table is checked to see if the values match, MATNRCHARG), It does not update
    NAST. When we go through MB02, it does, but this should happen automatically after selecting one of the radio
    buttons on the original pop-up & selecting print.
    Please help. I don't know what to do and can't enable a debugger from the pop-up and if going though QA11,
    I can't get it to stop inside the print program (only inside the custom FM).
    Cheers,
    John

    hi
    kindly check whether this FM will work for you QFOA_OBJECT_STATUS_SET
    regards
    thyagarajan

  • Does any one know , how to delete the others in itunes. it takes lot of space

    does any one know , how to delete the others in itunes. it takes lot of space, i wanna delete that... Actually what it contains

    Those are the data of the installed apps. Don't listen if someone says that it's an iOS, because it is not. On your iPhone, go to general > usage. It will show you all the programs installed on your iPhone. If you click any of them you will see how much of "others" it has (documents and data)
    There's no way to delete it if you want to still have those apps. You can reinstal those which has the most "others" but after some time of usage, it will raise again.

  • My 2 children share an itunes account.  now that they are older and receive lots of itunes gift cards, it's very difficult for them to each redeem cards fairly! how do i set up separate accts

    can anyone tell me how to go about setting up a separate account for one child without messing up the original account?  or can anyone give suggestions about redeeming gift cards so each child does not have to keep track of the others purchases.  its' causing a lot of stress around here and potential inequity.  my daughter wants her own acct.  i assume i would set that up under a separate email and will she lose everything?

    You will indeed need another email address, but you just then set up the account as you did your current one. You can use your daughter's gift card to set up the account. I'd suggest you give each child his/her own user account in Windows, if you haven't already. That will give them each their own iTunes library and keep each child's purchases completely separate.
    As to the existing content, once you've set up the user account for your daughter, just copy the content you want your daughter to have from your current iTunes library to a shared location (either on the computer or on removable storage such as a USB flash drive or an external hard drive), log into your daughter's user account, launch iTunes, and drag the content into the iTunes window. Then just authorize that copy of iTunes to that iTunes Store account (Store menu -> Authorize) and she'll be able to continue to play and sync that content. Log her into her own iTunes Store account for future purchases.
    Regards.

  • TS1368 I want to delete a lot of things childrens stories, albums which are not used which that are on my ipad. However when I go through Itunes it wont show me most of the stuff in my library. it takes ages to delete one at a time.

    I want to delete a lot of things childrens stories, albums which are not used which that are on my ipad. However when I go through Itunes it wont show me most of the stuff in my library. it takes ages to delete one at a time.
    Can you help please?

    Thanks King_Penguin for taking time to read and reply. 
    I just purchased this movie on Thursday, May 15, so just a few days ago.  I have never had any trouble whatsoever since I have been in Vietnam.  I have downloaded several movies and even music and they have all synced to my respected Apple products except for this purchase. 
    Sorry, I don't quite understand what you mean by studios and different versions.  Could you please explain? 
    I checked my purchased list in my purchase history under my account and there are no hidden items. 

  • I need to delete a lot of duplicates on iPhoto. I just bought my MacBook Pro and was so excited I downloaded my external hard drive without thinking through the process. I now realize I had my photos doubled up. So I actually have the same library twice.

    Hello All!
    I am so excited about my new computer and I didn't know that my external hard drive had so many pictures duplicated on it. So I downloaded the entire hard drive. I thought iPhoto was going to be my answer, and now after reading a lot of discussions, it seems I have royally screwed up.  Please help me fix this problem. I am a computer novice. An even more Mac novice. I need very simple directions.  I would just start over with iPhoto, but I downloaded my digital camera with brand new photos on iPhoto and also downloaded my digital camera software on my new MacBookPro.  I am afraid if I "start over" with iPhoto I will lose my digital camera pictures. I bought the Mac to finally get my pictures straight, and look at the mess I have made.  I had AVG PC cleanup and used that program last night to delete duplicates from my PC. I also used it to delete duplicates from my external hard drive. I omega. I know, I know, too late huh? But I am teachable. And I now have my external hard drive fixed. But now, my question to the community is how to fix my new Mac, and my iPhoto. 
    Thanks,

    SweetThunder73 wrote:
    When you say to remove the photos out of the iPhoto folder, then import the clean single copies, I am understanding that the "original" file that the decloner was run against is now the "clean" single copies?
    Ok, you've got iPhoto Library that you have imported everything into, you can't delete the iPhoto Library and start over because you have only one copy of some pictures in there, combined with a lot of duplicates.
    You want all the duplicates out, but it will take you ages to do it by hand.
    What you do is.
    1: Right click on the iPhoto Library and "Show Package Contents"
    2: You will see a folder called Originals, these are all your original photo's, copy this folder to a external drive someplace, it's your backup.
    3: Select the Originals folder again and from the Finder Menu > File > Duplicate.
    4: Now you will have a OriginalsCopy folder, move that OriginalsCopy folder onto the desktop area out of the iPhoto Library folder. Close the iPhoto Library folder/window.
    5: Download the Decloner software and install it, use it to find all the "real" duplicates, via it's content on the OriginalsCopy folder.
    6: From the Finder menu > New Folder, now send the duplicate files to that folder, so all that is left in the OriginalsCopy folder is 1 copy of your pictures, minus all the duplicates which are now in New Folder.
    7: Open iPhoto and remove all your pictures in there. The iPhoto Library will update to become empty.
    8: Now import the pictures from the OriginalsCopy folder, these will now have only one copy of each picture.
    9: Open your New Folder, from the Edit menu > Select All and
    10 From the Finder > File Menu > Open With > Preview.
    Now you have one copy in your iPhoto Library and the duplicates in a New Folder opened with Preview which you can compare to make sure.
    Make as many backups of your pictures as you think you need during this prcess, but eventually you only want 1 picture of all you have in the iPhoto Library.
    Some pictures may be the same thing but a little smaller etc., these obviously are not duplicates, and you can weed those out by hand in iPhoto.
    Good Luck.

  • I just updated itunes and a LOT of my movies and music disappeared. These are movies and music I owned already and did not purchase from iTunes. How do I find them or do I need to add them all again? Also what happened to the sidebar?

    I just updated my iTunes software and have a lot of problems...
    1. The sidebar option is gone. I LIKED the sidebar and it was easier for me to navigate that way.
    2. Also no lists? I hate the icon way to view it. It makes my eyes go wonky and I have a harder time actually looking for what I want.
    3. A LOT of my music and movies have disappeared. These are music and movies I owned that I did NOT purchase from iTunes so I can not re-download them.
    How do I find the missing files? Do I have to readd them into iTunes? Is there a way I am not seeing to put thew sidebar back or make the files be viewed in list form? Can I undo this update to put it back the way it was. I hate this update...

    See my answere to your post in the Mt. Lion forum.

  • Creation of inspection lot 04 depending on production version

    Hi Experts,
    could you tell me if it is possible to create a Good Receipt inspection (lot origin 04) depending on the production version used ?
    My material has 2 production versions:
    0001 - production with process order
    0002 - production with repetitve manufacturing
    When I do a GR on process order, I do not want to create an inspection lot 04.
    When I do a GR on product cost collector, I want to create an inspection lot 04.
    As I have entered inspection types in material master data, I do not know how to do the distinction ?
    Thanks in advance for your help
    Best regards
    Amaury

    Hi
    Check user exit
    QBCK0003 |Extended QM check for goods receipt
    Regards
    Sujit

  • I am running out of memory on my hard drive and need to delete files. How can I see all the files/applications on my hard drive so I can see what is taking up a lot of room?

    I am running out of memory on my hard drive and need to delete files. How can I see all the files/applications on my hard drive so I can see what is taking up a lot of room?
    Thanks!
    David

    Either of these should help.
    http://grandperspectiv.sourceforge.net/
    http://www.whatsizemac.com/
    Or search 'disk size' in the App Store.
    Be carefull with what you delete & have a backup BEFORE you start, you may also want to reboot to try to free any memory that may have been written to disk.

  • I have been having a lot of trouble with the latest itunes update and my ipod classic 80Gb i.e. being unable to sync songs, but now i have no files at all on my ipod, it is completely blank when i view it from my computer. I need help, please, anybody.

    As it says above, i have been having a lot f trouble with my ipod classic and the latest itunes update, i was unable to sync songs or anything to it and have tried every conceivable 'fix' i could find. i have run an itunes diagnostic and the results are posted below. a major problem is that when i try and view my ipod through my computer it displays nothing at all on the ipod, no files or anything, this may be the problem but i have no idea how it has happened or how i could resolve it.
    This ipod holds huge sentimental value and i am loathe to buy a new one! If anybody can help it is greatly appreciated, than kyou in advanced.
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    ASUSTeK Computer Inc. K50IJ
    iTunes 11.1.5.5
    QuickTime not available
    FairPlay 2.5.16
    Apple Application Support 3.0.1
    iPod Updater Library 11.1f5
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 7.1.1.3
    Apple Mobile Device Driver 1.64.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0038B8600B98D1E0
    Current user is not an administrator.
    The current local date and time is 2014-03-21 16:52:39.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: 2fd81a1f13cf3ff25a8b4f0e8e725116
    **** Device Connectivity Tests ****
    iPodService 11.1.5.5 (x64) is currently running.
    iTunesHelper 11.1.5.5 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) ICH9 Family USB Universal Host Controller - 2934.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2935.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2936.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2937.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2938.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2939.  Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A.  Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293C.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • One of my partition is not mounted. I can't mount it, can't repair it. I have a lot of data in this partition. I can't erase it, how can I do now? pls help me.

    one of my partition is not mounted. I can't mount it, can't repair it. I have a lot of data in this partition, I can't erase it. Please help me.

    No way around this. Your phone has to be restored using a computer running iTunes. Make an appointment at an Apple Store to have your device examined by a technician. Or contact Apple Support.

  • Descrição dos Erros de Lote.

    Boa tarde a todos.
    Gostaria de sugestões e opiniões.
    Atualmente esta cadastrado no domínio /XNFE/ERROR_STATUS as seguintes descrições para os erros:
    36 - Lote: erro de sistema PI
    37 - Lote: erro de aplicativo PI
    40 - Consulta de status de lote: erro de sistema PI
    41 - Consulta de status de lote: erro de aplicativo PI
    etc...
    Problema é que, para usuarios inexperientes (muito comum), tudo é problema de PI - o que gera inumeras reclamações/duvidas/chamados.....quando o problema é, em 99,9% das vezes, na SEFAZ.
    É desaconselhado alterar estas descrições? Por exemplo: para erro 40 colocar: Consulta de status de lote: erro na SEFAZ
    At.,
    Bernardo Tavares Braga

    Bom dia Bernardo,
    Sim, é desaconselhável modificar estas descrições. A cada suporte package você teria que analisar as mudanças feitas no standard (podem existir) e refazê-las em seu sistema (inclusive as traduções).
    Sobre o erro a mensagem está correta ao informar que o erro "está" no PI não que seja do PI. O que acontece é que o GRC (aplicativo) não tem como saber o que aconteceu de errado dentro do PI.
    Solução: Treinamento e paciência. Faça um guia (pps ou pdf ou intranet) ilustrando o que fazer para os principais problemas explicando possíveis causas.
    Espero ter ajudado.
    Atenciosamente, Fernando Da Ró

  • SAP NFe GRC XML 3.10 - Erro no envio do lote - Status 2

    Pessoal, bom dia!
    Configuramos os cenários para a versão do xml 3.10 da NFe porem ao criarmos a NFe (saída) o lote foi gerado porem ficou parado no status 2 (Enviado ao PI)  com o erro 38 (Web Service não acessivel) ao clicarmos na descrição do erro é exibida a seguinte mensagem:
    "Service Status not identified: Job /XNFE/NFE_CHECK_SRV_STATUS is not running or customizing is mi"
    O job /XNFE/NFE_CHECK_SRV_STATUS está agendado a cada 2 minutos para teste com o estado 29 (BA) e foi configurado na SPRO NF-e: definir consulta para status de serviço das autoridades (SEFAZ) conforme abaixo:
    Foram agendados os seguintes jobs para a versão 3.10
    /XNFE/EVENT_BATCH_SEND
    /XNFE/GET_ACKNOWLEDGMENT
    /XNFE/NFE_B2B_SEND
    /XNFE/NFE_BATCH_CREATE
    /XNFE/NFE_BATCH_REQUEST
    /XNFE/NFE_CHECK_SRV_STATUS
    /XNFE/NFE_CONTINUE_PROCESS
    /XNFE/NFE_SKIP_SEND
    /XNFE/PROCESS_REPORTS
    /XNFE/UPDATE_ERP_STATUS
    Alguem já passou por este problema no lote? Alguma dica para soluciona-lo?
    Abraços,
    Halsen Nagasawa

    Alan,
    Realmente o erro era na SEFAZ BA, o XML de envio e retorno do serviço NfeStatusServico difere das outras SEFAZ.
    Para solucionar criei um ZSLL-NFE e inclui um javamapping no request e outro no response do operation mapping SRVSC_nfeStatusServicoNF2_TO_nfeStatusServicoNF2SoapIn para modificar as tags conforme o modelo de XML informado pelo pessoal de desenvolvimento da SEFAZ BA.
    Abaixo o modelo informado pela SEFAZ BA.
    O XML do cabeçalho para utilização dos WebServices da SEFAZ-BA na versão 3.00/3.10 é o seguinte:
    <?xml version="1.0" encoding="UTF-8"?>
    <nfeCabecMsg xmlns="http://www.portalfiscal.inf.br/nfe" versao="3.10">
      <versaoDados>3.10</versaoDados>
      <cUF>29</cUF>
    </nfeCabecMsg>
    E o XML da solicitação ao WebService de StatusServico na versão 3.00/3.10 é o seguinte:
    <?xml version="1.0" encoding="UTF-8"?>
    <consStatServ xmlns="http://www.portalfiscal.inf.br/nfe" versao="3.10">
      <tpAmb>2</tpAmb>
      <cUF>29</cUF>
      <xServ>STATUS</xServ>
    </consStatServ>
    Att.
    Halsen Nagasawa

Maybe you are looking for

  • Edit Live Page View in New Tab Grayed Out

    I've been looking forward to use using Dreamweaver CS5 to edit dynamic sites. One of the things I thought would really save time was being able to navigate to a dynamic page in live view and then edit it, instead of using File/Open, but when I browse

  • How to set a Swing component as Modal window on a SWT Component.?

    How to set a Swing component as Modal on a SWT Component.I mean, I have a window (SWT Container) with some menu items. When I click on one menu item then i will get one new Swing Window. When creating the new frame I had passed Modal value as TRUE in

  • What happened to my battery life?

      I installed Lion this morning (>8hrs ago) and the battery life is now terrible.  I am not using any new apps or anything differently than I did yesterday.  Any tips?

  • [SOLVED] Gnome Epiphany 3.14 via eduroam, cannot load secure webpages

    Hi My problem is the following: everytime I try to load a secure webpage (https) in epiphany 3.14 the browser responds with "Oops! Unable to display this website." and "Peer failed to perform TLS handshake". Unsecure pages load normally. This problem

  • ERROR - JRCAgent1 received a request that cannot be handled by the JRC

    <p>Dear all, </p><p>trying to use JRC to export to pdf from a resultset, it ran but return with this error.</p><p>ERROR - JRCAgent1 received a request that cannot be handled by the JRC<br />ERROR - JRCAgent1 detected an exception: Currently not imple