Strange condition on 4948 nexus

I had a strange condition today. Had a snmp discovery running ( from a ca product called spectrum) it does extensive mapping both layer2 and layer 3 ....however we had a 4948 crash in our data centre possibly as a result thereof...no real evidence but snmp load was huge .
Anyone seen anything like this before ?
Thanks
Sent from Cisco Technical Support iPad App

   I have seen snmp bury switches cpu before so it's certainly possible.  I would check your tool and see if there is some way to rate limit the snmp polling or you may have try and figure out if there is a way using control plane policeing .  Also check for bugs for
your version of code .

Similar Messages

  • Strange Condition Oracle Merge

    I have an Oracle Merge statement. The condition I am facing is that the statement is updating the table as well as inserting the record that its updated. I have duplicates in the table for this reason. Can someone please advice why this condition occurs? the primary key constraint of the table is disabled.

    The Merge statement is attached below. I am selecting my query from a view thats based on a table. My aim is to generate a summary at a level higher than that of the table. date_key here refers to the weekend date. ITs used instead of a week id.
    My problem is that the table has duplicate records after the merge. when i run the select part of this merge, it doesnt get me any duplicates.
    MERGE INTO WEEKLY_PGROUP_SUMMARY w
    USING (
    SELECT date_key, ccid, year_id, period_id, week_id, company, country,
    location, brand, mainbrand, pgroup,
    sales_qty, sales_cost, sales_value,
    fp_sales_qty, fp_sales_cost, fp_sales_value,
    md_sales_qty, md_sales_cost, md_sales_value,
    sreturns_qty, sreturns_cost, sreturns_value,
    grn_qty, grn_cost, grn_value,
    tfrin_qty, tfrin_cost, tfrin_value,
    tfrout_qty, tfrout_cost, tfrout_value,
    intake_qty, intake_cost, intake_value,
    preturns_qty, preturns_cost, preturns_value,
    adjm_qty, adjm_cost, adjm_value,
    adjw_qty, adjw_cost, adjw_value,
    adjc_qty, adjc_cost, adjc_value,
    adjt_qty, adjt_cost, adjt_value,
    adjv_qty, adjv_cost, adjv_value,
    stockob_qty, stockob_cost, stockob_value,
    fp_stockob_qty, fp_stockob_cost, fp_stockob_value,
    md_stockob_qty, md_stockob_cost, md_stockob_value,
    tm_stockob_qty, tm_stockob_cost, tm_stockob_value,
    stockcl_qty, stockcl_cost, stockcl_value,
    fp_stockcl_qty, fp_stockcl_cost, fp_stockcl_value,
    md_stockcl_qty, md_stockcl_cost, md_stockcl_value,
    se_stockcl_qty, tm_stockcl_cost, tm_stockcl_value,
    tm_stockcl_qty, se_stockcl_cost, se_stockcl_value,
    co_stockcl_qty, co_stockcl_cost, co_stockcl_value,
    currency, exrate1, exrate2, exrate3, exrate4, exrate5
    FROM generate_pgroup_summary_v ) v
    -- On condition includes all fields that are indexed
    ON (v.date_key = w.date_key AND v.ccid = w.ccid AND v.brand = w.brand
    AND v.pgroup = w.pgroup)
    WHEN MATCHED THEN
    UPDATE
    SET w.currency = v.currency,
    w.exrate1 = v.exrate1,
    w.exrate2 = v.exrate2,
    w.exrate3 = v.exrate3,
    w.exrate4 = v.exrate4,
    w.exrate5 = v.exrate5,
    w.sales_qty = v.sales_qty,
    w.sales_cost = v.sales_cost,
    w.sales_value = v.sales_value,
    w.fp_sales_qty = v.fp_sales_qty,
    w.fp_sales_cost = v.fp_sales_cost,
    w.fp_sales_value = v.fp_sales_value,
    w.md_sales_qty = v.md_sales_qty,
    w.md_sales_cost = v.md_sales_cost,
    w.md_sales_value = v.md_sales_value,
    w.sreturns_qty = v.sreturns_qty,
    w.sreturns_cost = v.sreturns_cost,
    w.sreturns_value = v.sreturns_value,
    w.grn_qty = v.grn_qty,
    w.grn_cost = v.grn_cost,
    w.grn_value = v.grn_value,
    w.tfrin_qty = v.tfrin_qty,
    w.tfrin_cost = v.tfrin_cost,
    w.tfrin_value = v.tfrin_value,
    w.tfrout_qty = v.tfrout_qty,
    w.tfrout_cost = v.tfrout_cost,
    w.tfrout_value = v.tfrout_value,
    w.intake_qty = v.intake_qty,
    w.intake_cost = v.intake_cost,
    w.intake_value = v.intake_value,
    w.preturns_qty = v.preturns_qty,
    w.preturns_cost = v.preturns_cost,
    w.preturns_value = v.preturns_value,
    w.adjm_qty = v.adjm_qty,
    w.adjm_cost = v.adjm_cost,
    w.adjm_value = v.adjm_value,
    w.adjw_qty = v.adjw_qty,
    w.adjw_cost = v.adjw_cost,
    w.adjw_value = v.adjw_value,
    w.adjc_qty = v.adjc_qty,
    w.adjc_cost = v.adjc_cost,
    w.adjc_value = v.adjc_value,
    w.adjt_qty = v.adjt_qty,
    w.adjt_cost = v.adjt_cost,
    w.adjt_value = v.adjt_value,
    w.adjv_qty = v.adjv_qty,
    w.adjv_cost = v.adjv_cost,
    w.adjv_value = v.adjv_value,
    w.stockob_qty = v.stockob_qty,
    w.stockob_cost = v.stockob_cost,
    w.stockob_value = v.stockob_value,
    w.fp_stockob_qty = v.fp_stockob_qty,
    w.fp_stockob_cost = v.fp_stockob_cost,
    w.fp_stockob_value = v.fp_stockob_value,
    w.md_stockob_qty = v.md_stockob_qty,
    w.md_stockob_cost = v.md_stockob_cost,
    w.md_stockob_value = v.md_stockob_value,
    w.tm_stockob_qty = v.tm_stockob_qty,
    w.tm_stockob_cost = v.tm_stockob_cost,
    w.tm_stockob_value = v.tm_stockob_value,
    w.stockcl_qty = v.stockcl_qty,
    w.stockcl_cost = v.stockcl_cost,
    w.stockcl_value = v.stockcl_value,
    w.fp_stockcl_qty = v.fp_stockcl_qty,
    w.fp_stockcl_cost = v.fp_stockcl_cost,
    w.fp_stockcl_value = v.fp_stockcl_value,
    w.md_stockcl_qty = v.md_stockcl_qty,
    w.md_stockcl_cost = v.md_stockcl_cost,
    w.md_stockcl_value = v.md_stockcl_value,
    w.se_stockcl_qty = v.se_stockcl_qty,
    w.se_stockcl_cost = v.se_stockcl_cost,
    w.se_stockcl_value = v.se_stockcl_value,
    w.tm_stockcl_qty = v.tm_stockcl_qty,
    w.tm_stockcl_cost = v.tm_stockcl_cost,
    w.tm_stockcl_value = v.tm_stockcl_value,
    w.co_stockcl_qty = v.co_stockcl_qty,
    w.co_stockcl_cost = v.co_stockcl_cost,
    w.co_stockcl_value = v.co_stockcl_value,
    w.modifiedon=stime
    WHEN NOT MATCHED THEN
    INSERT (date_key, ccid, year_id, period_id, week_id,
    company, country,location, brand, mainbrand,
    pgroup,
    sales_qty, sales_cost, sales_value,
    fp_sales_qty, fp_sales_cost, fp_sales_value,
    md_sales_qty, md_sales_cost, md_sales_value,
    sreturns_qty, sreturns_cost, sreturns_value,
    grn_qty, grn_cost, grn_value,
    tfrin_qty, tfrin_cost, tfrin_value,
    tfrout_qty, tfrout_cost, tfrout_value,
    intake_qty, intake_cost, intake_value,
    preturns_qty, preturns_cost, preturns_value,
    adjm_qty, adjm_cost, adjm_value,
    adjw_qty, adjw_cost, adjw_value,
    adjc_qty, adjc_cost, adjc_value,
    adjt_qty, adjt_cost, adjt_value,
    adjv_qty, adjv_cost, adjv_value,
    stockob_qty, stockob_cost, stockob_value,
    fp_stockob_qty, fp_stockob_cost, fp_stockob_value,
    md_stockob_qty, md_stockob_cost, md_stockob_value,
    tm_stockob_qty, tm_stockob_cost, tm_stockob_value,
    stockcl_qty, stockcl_cost, stockcl_value,
    fp_stockcl_qty, fp_stockcl_cost, fp_stockcl_value,
    md_stockcl_qty, md_stockcl_cost, md_stockcl_value,
    se_stockcl_qty, tm_stockcl_cost, tm_stockcl_value,
    tm_stockcl_qty, se_stockcl_cost, se_stockcl_value,
    co_stockcl_qty, co_stockcl_cost, co_stockcl_value,
    currency, exrate1, exrate2, exrate3, exrate4, exrate5,
    modifiedon)
    values
    (v.date_key, v.ccid, v.year_id, v.period_id, v.week_id, v.company, v.country,
    v.location, v.brand, v.mainbrand, v.pgroup,
    v.sales_qty, v.sales_cost, v.sales_value,
    v.fp_sales_qty, v.fp_sales_cost, v.fp_sales_value,
    v.md_sales_qty, v.md_sales_cost, v.md_sales_value,
    v.sreturns_qty, v.sreturns_cost, v.sreturns_value,
    v.grn_qty, v.grn_cost, v.grn_value,
    v.tfrin_qty, v.tfrin_cost, v.tfrin_value,
    v.tfrout_qty, v.tfrout_cost, v.tfrout_value,
    v.intake_qty, v.intake_cost, v.intake_value,
    v.preturns_qty, v.preturns_cost, v.preturns_value,
    v.adjm_qty, v.adjm_cost, v.adjm_value,
    v.adjw_qty, v.adjw_cost, v.adjw_value,
    v.adjc_qty, v.adjc_cost, v.adjc_value,
    v.adjt_qty, v.adjt_cost, v.adjt_value,
    v.adjv_qty, v.adjv_cost, v.adjv_value,
    v.stockob_qty, v.stockob_cost, v.stockob_value,
    v.fp_stockob_qty, v.fp_stockob_cost, v.fp_stockob_value,
    v.md_stockob_qty, v.md_stockob_cost, v.md_stockob_value,
    v.tm_stockob_qty, v.tm_stockob_cost, v.tm_stockob_value,
    v.stockcl_qty, v.stockcl_cost, v.stockcl_value,
    v.fp_stockcl_qty, v.fp_stockcl_cost, v.fp_stockcl_value,
    v.md_stockcl_qty, v.md_stockcl_cost, v.md_stockcl_value,
    v.se_stockcl_qty, v.tm_stockcl_cost, v.tm_stockcl_value,
    v.tm_stockcl_qty, v.se_stockcl_cost, v.se_stockcl_value,
    v.co_stockcl_qty, v.co_stockcl_cost, v.co_stockcl_value,
    v.currency, v.exrate1, v.exrate2, v.exrate3, v.exrate4, v.exrate5,
    stime);

  • Strange: Conditional Error in Intermedia Text Index Creation

    Hi All,
    I am facing a strange error while creating the Intermedia Text index on 8.1.6 release for NT 4.0.
    I have one database instance installed on the server. When i connect to Oracle through SQL plus as: connect username/password;
    The index creation works fine!
    But, if i connect using: username/password@servicename;
    The index creation does not work!
    The following error occurs.
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000:intermedia Text error:
    ORA-50704:Net8 listener is not running or cannot start external procedures
    ORA-28575:unable to open RPC connection to external procedure agent
    ORA-12154:TNS:could not resolve service name
    ORA-06512:at "CTXSYS.DRUE", line 126
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 54
    ORA-06512:at line 1
    Could anyone please help as to why it works without when connected without the service name but not otherwise?
    Thanking you in advance!
    Thanks and Regards
    Anurag Agarwal

    Hi All,
    I am facing a strange error while creating the Intermedia Text index on 8.1.6 release for NT 4.0.
    I have one database instance installed on the server. When i connect to Oracle through SQL plus as: connect username/password;
    The index creation works fine!
    But, if i connect using: username/password@servicename;
    The index creation does not work!
    The following error occurs.
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000:intermedia Text error:
    ORA-50704:Net8 listener is not running or cannot start external procedures
    ORA-28575:unable to open RPC connection to external procedure agent
    ORA-12154:TNS:could not resolve service name
    ORA-06512:at "CTXSYS.DRUE", line 126
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 54
    ORA-06512:at line 1
    Could anyone please help as to why it works without when connected without the service name but not otherwise?
    Thanking you in advance!
    Thanks and Regards
    Anurag Agarwal

  • SCSM 2012: Strange Queue SLA Bug

    We're in the process of scoping down our User Roles and I'm coming across a strange condition which I think might be a bug.
    We have multiple teams within our organisation, each team has their own Support Group and SLA. We have created separate Queues and SLA's for each team.
    For example:
    Support Group = "Tier 1"
    Queue (Tier 1) = All Incidents where Support Group equals "Tier 1"
    SLO (Tier 1) = Is targeted at "Queue (Tier 1)"
    This is what I've found, if I create a new User Role based on "Incident Resolver" and grant that Role access to to everything, that is tick the "All XYZ can be accessed" in each section of the wizard, the user can see the 'SLO Description',
    'Target End Date' and 'Time before SLO Breached' in the incident form.
    However, if I then limit this user role to 'Queue (Tier 1)' only, keeping everything else the same this information disappears from the view.
    After some more investigation I found, if you select 'All work items can be accessed' under Queues this information shows, however if you tick a couple of individual queues manually or tick all of the queues manually you get this bug. It only works
    when selecting 'All work items can be accessed'.
    We might have to raise a case, quite difficult to explain on the forum. But wanted to post it in case others have come across this issue.

    For the benefit of others I thought I'd update this post.
    The solution to this problem can be found
    here and
    here.
    Regards

  • Newly bought Nexus 1010: missing Quadport GE NIC Card.

    Hello,
    Thanks in advance for anyone who can help to clarify the situtation my customer has for Nexus 1010.
    One of our customer bought a pair of Nexus 1010 physical appliance. One thing strange is that both Nexus 1010 do not come with 1 x Quadport GE NIC Card.
    All Cisco Nexus 1010 doc says the Nexus 1010 has 2 Ethernet port (port 1 and port 2) built on mother board, and a Quadport GE NIC Card installed (port 3-6). Cisco dynamic configuration tool for Nexus 1010 does not have the option of choosing this Quadport GE NIC Card.
    I am wondering why the Nexus 1010 did not have the extra card installed.
    Thanks for your assistance!
    Fuming

    Hello Fuming,
    This appears to be a mistake during the manufacturing process.  Please open a TAC case and we will process an RMA.
    Thank you,
    Matthew

  • Nexus 1K VEM module shutdown (with DELL BLADE server)

    Hello, This is Vince.
    I am doing  one of PoC with important customer.
    Can anyone help me to explain what the problem is?
    I have been found couples of strange situation in a Nexus 1000V with DELL BLADE server)
    Actually, Network diagram is like below.
    I installed each two Vsphere Esxi on the Dell Blade server.
    As Diagram shows each server is connected to Cisco N5K via M8024 Dell Blade Switch.
    - two N1KV VM are installed on the Esxi. (of course as Primary and Secondary)
    - N5K is connected to M8024 in vPC.
    - VSM and VEM are checking each other via Layer3 control interface.
    - the way of uplink's port-profile port channel LB is mac pinning.
    interface control0
      ip address 10.10.100.10/24
    svs-domain
      domain id 1
      control vlan 1
      packet vlan 1
      svs mode L3 interface control0
    port-profile type ethernet Up-Link
      vmware port-group
      switchport mode trunk
      switchport trunk allowed vlan 1-2,10,16,30,77-78,88,100,110,120-121,130
      switchport trunk allowed vlan add 140-141,150,160-161,166,266,366
      service-policy type queuing output N1KV_SVC_Uplink
      channel-group auto mode on mac-pinning
      no shutdown
      system vlan 1,10,30,100
      state enabled
    n1000v# show module
    Mod  Ports  Module-Type                       Model               Status
    1    0      Virtual Supervisor Module         Nexus1000V          ha-standby
    2    0      Virtual Supervisor Module         Nexus1000V          active *
    3    332    Virtual Ethernet Module           NA                  ok
    4    332    Virtual Ethernet Module           NA                  ok
    Mod  Sw                  Hw     
    1    4.2(1)SV2(2.1a)     0.0                                             
    2    4.2(1)SV2(2.1a)     0.0                                             
    3    4.2(1)SV2(2.1a)     VMware ESXi 5.5.0 Releasebuild-1331820 (3.2)    
    4    4.2(1)SV2(2.1a)     VMware ESXi 5.5.0 Releasebuild-1331820 (3.2)    
    Mod  Server-IP        Server-UUID                           Server-Name
    1    10.10.10.10      NA                                    NA
    2    10.10.10.10      NA                                    NA
    3    10.10.10.101     4c4c4544-0038-4210-8053-b5c04f485931  10.10.10.101
    4    10.10.10.102     4c4c4544-0043-5710-8053-b4c04f335731  10.10.10.102
    Let me explain what the strange things happened from now on.
    If I move the Primary N1KV on the module 3 to the another Esxi of the module 4, VEM will be shutdown suddenly.
    Here is sys logs.
    2013 Dec 20 15:45:22 n1000v %VEM_MGR-2-VEM_MGR_REMOVE_NO_HB: Removing VEM 4 (heartbeats lost)
    2013 Dec 20 15:45:22 n1000v %VIM-5-IF_DETACHED_MODULE_REMOVED: Interface Ethernet4/7 is detached (module removed)
    2013 Dec 20 15:45:22 n1000v %VIM-5-IF_DETACHED_MODULE_REMOVED: Interface Ethernet4/8 is detached (module removed)
    2013 Dec 20 15:45:22 n1000v %VIM-5-IF_DETACHED_MODULE_REMOVED: Interface Vethernet1 is detached (module removed)
    2013 Dec 20 15:45:22 n1000v %VIM-5-IF_DETACHED_MODULE_REMOVED: Interface Vethernet17 is detached (module removed)
    2013 Dec 20 15:45:22 n1000v %VIM-5-IF_DETACHED_MODULE_REMOVED: Interface Vethernet9 is detached (module removed)
    2013 Dec 20 15:45:22 n1000v %VIM-5-IF_DETACHED_MODULE_REMOVED: Interface Vethernet37 is detached (module removed)
    2013 Dec 20 15:46:53 n1000v %VEM_MGR-2-MOD_OFFLINE: Module 4 is offline
    If I wanna make it works again then I have to do two things.
    First of all, It should be selected on the Source MAC Check the way of vSwitch's Load balance.
    (Port ID check is the default)
    Second of all, the the order of Switch's fail over is very important.
    If I change this order then VEM will be off in very soon.
    Here you go, the screen capture file of These option. (you may not understand these Korean letters.)
    In my opinion, the main problem is the link part between Esxi and M8024.
    As you saw, Each Esxi is connected to two M8024 Dell Blade switches separately.
    I saw the manual for the way N1K's uplink Load balance.
    Even though there are 16 different port-channel LB way,
    but It should be used only the way of src-mac  If there is no supporting port-channel option in the upstreaming switches.
    But I don't know exactly why this situation happened.
    Can anyone help me how I make it works better.
    Thanks in advance.
    Best Regards,
    Vince

    There's not enough information to determine the reason by those two outputs alone.  All those commands tell us is the VSM is removing/attaching the VEM.
    The normal cause for the VEM to flap is a problem with the Control VLAN communication.  The loss of 6 consecutive heart beats will cause the VEM to detach from the VSM.  We need to isolate the reason why.
    -Which version of 1000v & ESX?
    -Are multiple VEMs affected or just one?
    -Are the VSM's interfaces hosted on the DVS or vSwitch?
    -What is the network topology between the VEM and VSM (primarily the control VLAN)
    -Do you have the Cisco SR # I can take a look into it.  TAC is your best course of action for an issue like this.  There will likely need to be live troubleshooting into your network environment to determine the cause.
    Regards,
    Robert

  • I can't download any app into my iPAD, but I have no problem downloading app into my iPhone. Using same Apple ID for both my iPAD and iPhone.

    HELP!
    I couldn't download any app into my iPAD. Puzzled by this strange condition, I tried downloading the same chosen app into my iPhone. It worked!
    I use the same Apple ID for both my iPAD and iPhone. So why is it not working for my iPad? Previously, both devices were working fine!
    I hope that somebody can help me solve this problem.

    Do the apps show as installed on the Purchased tab in the App Store app ? If they show as installed, then have you got any restrictions set on Settings > General > Restrictions (e.g. Allowed Content > Apps) that might be hiding them ?
    You could try closing the App Store app completely and then seeing if it downloads after you re-open it : from the home screen (i.e.not with the App Store app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the App Store app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    You could also try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.
    And try logging out, and then back in, with your iTunes account : Settings > Store

  • History of foreign currency valuation F.05

    Hi experts
    We are using 4.7.
    Someone run f.05 with strange conditions then make documents.
    So I would like to know report when he run it,
    And we reversed his documnets with FB08 but when we clear A/P, A/P, SAP makes Foreign suppliers reevaluation account (B/S). We just want to have foreign exchange losses/profit accounts.
    Can you help me?

    Hi,
    First define the Currency rates under the head of general settings - currency - enter exchange rates (ob08).
    Create Foriegn Exch loss or gain GL a/c under current liability, with open item management.
    And in OBA1  for Sundry Debtors you assign the Foriegn Exch loss or gain a/c under both tab (realised loss and gain, and even in valuation loss and gain).  You do same for Sundry creditos also..
    Regards,
    Shiva

  • Kodo JDO 2.3.0 beta 5

    All,
    We have just released a new beta release of Kodo JDO 2.3.0. This beta
    includes functional managed transaction integration, WebSphere support, many
    bug fixes, documentation improvements, and more.
    We are planning on releasing Kodo JDO 2.3.0 RC1 on Monday. Barring any bugs
    that you guys turn up in the next couple days, it will be the same core code
    base as beta 5 plus a revival of our JBuilder integration and even more
    documentation improvements.
    If you see any bugs in beta 5, please let us know as soon as possible. At
    this point, we are quite confident in the performance and correctness of
    Kodo JDO 2.3.0, but, of course, the earlier we find bugs, the better.
    Also, if you've made a bug report recently and you don't see the fix in beta
    5, please let us know.
    See http://www.solarmetric.com/Software/beta/2.3.0 for more info and to
    download the release.
    -Patrick
    Patrick Linskey [email protected]
    SolarMetric Inc. http://www.solarmetric.com

    To confuse it even more I only observe this behaviour when I enchance all
    persistent classes at once.
    If I enchance all classes and then recompile and reenchance just OrgUnit
    (the rest are skipped by Kodo) it works as it suppose to
    I can reproduce this behaviour any time it is consistent
    "Alex Roytman" <[email protected]> wrote in message
    news:[email protected]...
    Abe, Patrick,
    I found something which looks like a serious enhancement bug. I cantfigure
    out what is going on but the symptoms are:
    getter of a PC reference will return null if reference has not beenresolved
    yet under some strange conditions:
    t.jdo.beginTransaction();
    try {
    //call t.jdo.getOrgUnit(2).getOrgUnitType() //*0* if I uncoment
    it subsequent code works
    OrgUnit leg = OrgUnit.newInstance(); //*1*
    leg.setOrgUnitType(t.jdo.getOrgUnitType(20));
    leg.setParent(t.jdo.getOrgUnit(2)); // note it is the sameorgUnit
    as in *0*
    if (leg.getParent().getOrgUnitType() == null) {   //*3*
    System.out.println("leg.getParent().getOrgUnitType() == null");
    // returns null here but it should not !!!!!
    leg.setName("Leg");
    t.jdo.commitTransaction();
    } catch (Exception e) {
    e.printStackTrace();
    t.jdo.rollbackTransaction();
    but call to t.jdo.getOrgUnit(2).getOrgUnitType() returns appropriate value
    just fine - not null
    note t.jdo.getOrgUnit(2) is nothing but a wraper for PM.getInstanceById()
    if I call t.jdo.getOrgUnit(2).getOrgUnitType() *0* before *1* it worksand
    *3* returns non null
    "Patrick Linskey" <[email protected]> wrote in message
    news:B95D3083.3A84%[email protected]...
    All,
    We have just released a new beta release of Kodo JDO 2.3.0. This beta
    includes functional managed transaction integration, WebSphere support,many
    bug fixes, documentation improvements, and more.
    We are planning on releasing Kodo JDO 2.3.0 RC1 on Monday. Barring anybugs
    that you guys turn up in the next couple days, it will be the same corecode
    base as beta 5 plus a revival of our JBuilder integration and even more
    documentation improvements.
    If you see any bugs in beta 5, please let us know as soon as possible.
    At
    this point, we are quite confident in the performance and correctness of
    Kodo JDO 2.3.0, but, of course, the earlier we find bugs, the better.
    Also, if you've made a bug report recently and you don't see the fix inbeta
    5, please let us know.
    See http://www.solarmetric.com/Software/beta/2.3.0 for more info and to
    download the release.
    -Patrick
    Patrick Linskey [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • HotSpot Virtual Machine Error, Internal Error ; ID : 4A4156410E43505001E7

    Hi,
    We're running under Windows 2003 Server.
    Application Server :
    Weblogic Server 7 SP4.
    Used JVM is :
    Java VM: Java HotSpot(TM) Server VM (1.4.2_07-b05 mixed mode)
    Options givent to the JVM :
    -server -ms128m -mx128m -Dos.name=\"windows 2000\"
    We're constantly getting this VM internal error at Weblogic shutdown :
    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Server VM (1.4.2_07-b05 mixed mode)
    # Error ID: 4A4156410E43505001E7
    # Problematic Thread: prio=5 tid=0x008729c0 nid=0x9f0 runnable
    If what is written here (http://forum.java.sun.com/thread.jspa?threadID=607814&start=0&tstart=135) is true, the error code can be translated to :
    4A4156410E43505001E7 --> JAVA_CPP line 147
    so the error seems to be caused by java_cpp, line 147.
    Here is the heap at VM Abort:
    def new generation total 235968K, used 59398K [0x10010000,0x20010000, 0x20010000)
    eden space 209792K, 26% used [0x10010000, 0x13585a18, 0x1ccf0000)
    from space 26176K, 17% used [0x1ccf0000, 0x1d17c030, 0x1e680000)
    to space 26176K, 0% used
    Wed Feb 01 09:20:37 2006
    ServiceStart done waiting for multiple events. Wait=0 [0x1e680000, 0x1e680000, 0x20010000)
    Wed Feb 01 09:20:37 2006 ServiceStart Informing SCM about SERVICE_STOP
    I didn't find any relevant information either on google.com or sun.com.
    Any idea ?

    The JNI_CreateJavaVM(..) interface allows an exit_hook function to
    be specified. The jvm expected that this function call system exit and
    not return. If it did, then the error you saw would occur. The bugfix
    added a call to system exit if the exit_hook happens to return. If this
    is your problem, finding the exit_hook function and ensuring that it
    always call system exit should fix the problem.
    The following doc explains the invocation API:
    http://java.sun.com/j2se/1.5.0/docs/guide/jni/spec/invocation.html
    There was one other issue that this bugfix addressed. To shutdown
    the jvm, a shutdown request is sent to the vm thread which is not
    supposed to return. Perhaps under some very strange conditions
    it might, so another call so system exit was added if the vm shutdown
    request returned.

  • WiSM can't function normally after upgrading from vesion 6.0.182 to 7.0.220.

    I have a WiSM installed in WS-6504E, vesion 6.0.182. It can't function normally after upgrading to version7.0.220.
    When it was unstable, I found three strange condition
    1. A lot of log looks like this
    *osapiReaper: Mar 10 14:53:39.282: %OSAPI-3-FILE_OPEN_FAILED: osapi_file.c:370 Failed to open the file : /proc/1059/stat.(erno 24)
    *osapiReaper: Mar 10 14:53:39.282: %OSAPI-3-TASK_GETTIME_FAILED: osapi_task.c:3431 Failed to retrieve statistics (/proc/<pid>/stats) for task 'fmcHsTask'
    2. Internal Temperature was showed "sensor failed"
    3. CPU User load is Zero
    Anybody can tell me what wrong with the wireless controller ?

    Could be a hardware failure.

  • NoClassDefFoundError after System.exit() is called.

    I have found a strange condition with JDK 1.4.2_05 and could not find a bug which relates to it.
    I have multiple threads running, when I shutdown, I call all the threads to shutdown and finally in main I call System.exit(0).
    The strange thing is that one shutdown I get a NoClassDefFoundError for a class which will load fine if loaded before shutting down.
    This occurs as the class in question is only needed to perform a shutdown, and in fact the attempt to load it comes after the main thread has finished.
    The workaround has been to create an instance of the class when the application is started rather than during shutdown.
    Does anyone seen this behaviour?

    java.lang.NoClassDefFoundError: com/cantor/framework/run/impl/ShutdownRMB
         at com.can.framework.run.RunnerManagerBean.shutdown(RunnerManagerBean.java:147)
         at com.can.framework.layer.VanillaBean.shutdown(VanillaBean.java:278)
         at com.can.main.Main.main(Main.java:135)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.intellij.rt.execution.application.AppMain.main(AppMain.java:78)

  • Apps won't launch after sleep

    I've begun to notice a strange condition after my MacBook Pro 15" wakes from sleep. It comes back normally but I cannot launch any app that is not a Universal Binary. I get one bounce and then nothing. If I try to launch a UB app like Safari or any of the other apps they'll open and work normally. If I try to launch anything like any of the Adobe CS apps or any part of MS Office they all bounce once and that's it.
    If I reboot when this happens, everything is fine. It's getting kind of annoying.

    What have you tried to fix this? The things most people try first include:
    Use Disk Utility to repair permissions.
    Reset the PMU by removing the power and the battery and holding down the power button for awhile.
    Sign on as a different user. If the problem is with your settings, then this might fix it by giving you a fresh start.
    Start up in safe mode (hold down shift key when booting.)
    You may want to boot from the install disk (1) by inserting the disk and holding down the "C" key. You can go to the menu to repair the hard drive.
    If you've already tried them all, then there are some other things....

  • Nokia 6500 Slide dead after update

    So, I updated to the latest firmware. Everything was fine until the phone restarted. Nokia Software update showed me that update last's for 15 minutes.. I waited. 15, 30.. And so, finally I gave up. 
    It updated too long, and I decided to try if my phone starts, because it had to restart, but it did not. Phone just shut down, and nothing else. Before attempting the update, I was sure that battery was almost full. So there were no battery alerts in this update.- I've tried to take battery out and keep it like this for 5 minutes. It helped, phone buttons lights and screen started to work, but after 5 seconds it shuts down automatically. So I tried to do this more and more, but it did not help at all. 
    After trying this battery out method for multiple times, phone went to very strange condition. I took the battery out, but screen and buttons were on. Like what the heck was that? Phone worked without battery on? 
    Before this awful update fail, my nokia was in perfect condition. No marks of damage or anything else, it was a well cared phone, so I personally think that the problem was not caused by hardware.
    What should I do next? I really need my nokia right now.
    Phone is Nokia 6500s-1    _____Type: RM-240

    You need to send it to your local Nokia Care Point. There is nothing else you can try yourself.

  • Webstart cache bug? ClassnotfoundExeption BUT IS IS THERE!

    Hi,
    we have a swing application that is launched via webstart.
    This worked fine over years with all versions of java 1.4 up to 1.5, but with 1.6 from time to time we are facing a strange problem:
    -From time to time, rarely, the application cannot be launched via webstart, it returns with a class-not-found-exception. Neither the jnlp., nor the jars or anything else has changed!!!
    -I know, the Expiry attributes in the HTTP header have to be set correctly, and i verified also that the http communication is correct(by monitoring the network).
    -This happens only if the application is in the Java webstart cache. If the problem occurs and i clean the cache, the problem is solved.
    -However, if the problem occurs, the files are inside the javaws cache and the class that is not being found by Webstart is definetly there!!!
    -You can easily tell if JavaWS attempts to download a resource or not, but in the error case it looks like it accesses ONLY the cache , but it fails to read from it.
    -We think that, from time to time, Java WS fails reading the jar out of the cache, since in 75% of all error cases its the Main-Class that is not being found (but it is there in the cache). The fact that the remaining 25% other classes are not found show that the problems does not come from my main class.
    -This happens for a lot of users (as i said rarely, but it happens). Its not ideal to tell a end-user to flush the webstart-cache, so has anybody experienced similar problems or knows whats going wrong here?
    many thanks...

    I analyzed the cache of webstart and i found out the following:
    Unlike as in 1.5, in the new 1.6 Version Webstart places jar files under a cryptic name in the cache. When viewing the cache by the java control panel, you'll see your jar-file with a size in KB, lets say 4500. When looking in the cache, the 4500 are divided into the jar-file (the actually 4000KB on the server) and and .idx-file (the remaining 500KB).
    1.) Today, i launched the ws application for the first time after a long period on the testing pc. This caused WS to create a new subfolder under its own caching-folder, where it has stored a .idx-file and a .lap file and a file with no file-extension.
    content of .idx: the URL of the jnlp that i loaded (nothing else)
    content of .lap: the date+time from last access today, the number of launches of the application for today, the entry "forcedUpdateCheck=true", and the parameter "lastAccessed" with the date+time for today as value.
    content of file with no file-extension: the jnlp file itself
    ->the jar file is missing. As far as i understand, this is no error, it can be in any subfolder in the caching-directory.
    2.)I found the according .jar-file in the cache in another subfolder. By analyzing the content of this folder, you can tell that this is the folder created at the last time i launched the WS application some days ago (it contains .idx etc with date information) .
    The jar file is correct and by renaming it to .zip you can easily see that the missing class IS DEFINETELY THERE!!!
    3.)in the old cache-subfolder from the last launch some days ago, the .idx-file shows some HTTP-information, also the header: it gives an "expiry" for the http-call for the jnlp file for today, at the first time i accessed the jnlp (the very first launch today).
    Conclusion:
    Under strange conditions and if the resource expires, it is possible that JavaWs is not able to update the cache. This results in the fact that classes cannot be found because the jar-file cannot be read, due to:
    a)missing mapping of new entry to old value in another folder
    b)concurrent modification
    Possible reasons:
    -concurrent modification of the folders is causing trouble to the cache management logic, results in loosing the abillity to map the cache entry to the according value in another subfolder in the cache. I think the naming of files in the cache has been changed from 1.5 to 1.6, so perhaps there is a still a bug. If the cache is cleared by the java control panel, the problem is gone.
    Last but not least:
    Some of my collegues had the idea that the problem is also related to mutlipe launches of Webstart or any Java-Application, wich might cause problems in terms of concurrencies of java processes. The interesting thing is, that the moment i launched the same application under my ide (eclipse) as an application via giving the main-method as startpoint (means non-Webstart-mode), and during the launch i started the same application as a webstart-application from a browser, the problem occured. Not to say that launching applications from my ide has something to do with webstart (god,hopefully not), but it is strange that exactly at this moment the problem occured....but: also end-users with no ide's that launch over webstart see the problem. btw: the launch of webstart failed, but the concurrent launch via eclipse was successful.

Maybe you are looking for