CE 7.2 utilization problems

Hi,
I'm trying to use CE 7.2 in a BPM sample.
I create the project fine, but when I try to add a process I gettting the message:
"No Preloaded Data. Refresh de development configuration: In the context menu of the Process development component choose 'Modeling Infrastucture' then Refresh Development Configuration".
Well, I do the intructions but the error persists and If I try to build the project with nothing I get build error:
"Error: Build stopped due to an error: Class for build-step creator not found: com.sap.tc.moin.bi.moinext.steps.MoinForcedShutdownBuildCreator"
Any information is welcome.
Regards,
Luiz

Hey Guys,
Was anyone able to solve this issue?
I am having similar problem with Trial version of CE IDE 7.2 (i got it from SDN).
I have tried to install the trial version on 3 laptops but all of them seem to have the same problem (No Preloaded Data. Refresh the development configuration):
1. Windows 7-64 bit (running in XP compatible mode)
2. Windows XP-32 bit-Home edition.
3. Windows XP-32 bit-Professional.
I have only installed the IDE piece of CE 7.2 (haven't installed the server yet).
Is there anything else i need to do to be able to design my first BPM.
Please advise.
Thanks
Saif

Similar Messages

  • Log file utilization problem

    I've encountered a problem with log file utilization during a somwhat long transaction during which some data is inserted in a StoredMap.
    I've set the minUtilization property to 75%. During insertion, things seem to go smoothly, but at one point log files are created WAY more rapidly than what the amount of data would call for. The test involves inserting 750K entries for a total of 9Mb, the total size of log files is 359 Mb. Using DbSpace shows that the first few log files use approx 65% of their total space, but most only use 2%.
    I understand that during a transaction, the Cleaner may not clean the log files involved. What I don't understand is why are most of the log files only using 2%:
    File Size (KB) % Used
    00000000 9763 56
    00000001 9764 68
    00000002 9765 68
    00000003 9765 69
    00000004 9765 69
    00000005 9765 69
    00000006 9765 68
    00000007 9765 70
    00000008 9764 68
    00000009 9765 61
    0000000a 9763 61
    0000000b 9764 25
    0000000c 9763 2
    0000000d 9763 1
    0000000e 9763 2
    0000000f 9763 1
    00000010 9764 2
    00000011 9764 1
    00000012 9764 2
    00000013 9764 1
    00000014 9764 2
    00000015 9763 1
    00000016 9763 2
    00000017 9763 1
    00000018 9763 2
    00000019 9763 1
    0000001a 9765 2
    0000001b 9765 1
    0000001c 9765 2
    0000001d 9763 1
    0000001e 9765 2
    0000001f 9765 1
    00000020 9764 2
    00000021 9765 1
    00000022 9765 2
    00000023 9765 1
    00000024 9763 2
    00000025 7028 2
    TOTALS 368319 21
    I've created a test class that reproduces the problem. It might be possible to make it even more simple, but I haven't had time to work on it to much.
    Executing this test with 500K values does not reproduce the problem. Can someone please help me shed some light on this issue?
    I'm using 3.2.13 and the following properties file:
    je.env.isTransactional=true
    je.env.isLocking=true
    je.env.isReadOnly=false
    je.env.recovery=true
    je.log.fileMax=10000000
    je.cleaner.minUtilization=75
    je.cleaner.lookAheadCacheSize=262144
    je.cleaner.readSize=1048576
    je.maxMemory=104857600
    Test Class
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.util.Properties;
    import com.sleepycat.bind.EntityBinding;
    import com.sleepycat.bind.EntryBinding;
    import com.sleepycat.bind.tuple.StringBinding;
    import com.sleepycat.bind.tuple.TupleBinding;
    import com.sleepycat.collections.CurrentTransaction;
    import com.sleepycat.collections.StoredMap;
    import com.sleepycat.je.Database;
    import com.sleepycat.je.DatabaseConfig;
    import com.sleepycat.je.DatabaseEntry;
    import com.sleepycat.je.DatabaseException;
    import com.sleepycat.je.Environment;
    import com.sleepycat.je.EnvironmentConfig;
    public class LogFileTest3 {
    private long totalSize = 0;
    private Environment env;
    private Database myDb;
    private StoredMap storedMap_ = null;
    public LogFileTest3() throws DatabaseException, FileNotFoundException, IOException {
    Properties props = new Properties();
    props.load(new FileInputStream("test3.properties"));
    EnvironmentConfig envConfig = new EnvironmentConfig(props);
    envConfig.setAllowCreate(true);
    File envDir = new File("test3");
    if(envDir.exists()==false) {
    envDir.mkdir();
    env = new Environment(envDir, envConfig);
    DatabaseConfig dbConfig = new DatabaseConfig();
    dbConfig.setAllowCreate(true);
    dbConfig.setTransactional(true);
    dbConfig.setSortedDuplicates(false);
    myDb = env.openDatabase(null, "testing", dbConfig);
    EntryBinding keyBinding = TupleBinding.getPrimitiveBinding(String.class);
    EntityBinding valueBinding = new TestValueBinding();
    storedMap_ = new StoredMap(myDb, keyBinding, valueBinding, true);
    public void cleanup() throws Exception {
    myDb.close();
    env.close();
    private void insertValues(int count) throws DatabaseException {
    CurrentTransaction ct = CurrentTransaction.getInstance(this.env);
    try {
    ct.beginTransaction(null);
    int i = 0;
    while(i < count) {
    TestValue tv = createTestValue(i++);
    storedMap_.put(tv.key, tv);
    System.out.println("Written "+i+" values for a total of " totalSize" bytes");
    ct.commitTransaction();
    } catch(Throwable t) {
    System.out.println("Exception " + t);
    t.printStackTrace();
    ct.abortTransaction();
    private TestValue createTestValue(int i) {
    TestValue t = new TestValue();
    t.key = "key_"+i;
    t.value = "value_"+i;
    return t;
    public static void main(String[] args) throws Exception {
    LogFileTest3 test = new LogFileTest3();
    if(args[0].equalsIgnoreCase("clean")) {
    while(test.env.cleanLog() != 0);
    } else {
    test.insertValues(Integer.parseInt(args[0]));
    test.cleanup();
    static private class TestValue {
    String key = null;
    String value = null;
    private class TestValueBinding implements EntityBinding {
    public Object entryToObject(DatabaseEntry key, DatabaseEntry entry) {
    TestValue t = new TestValue();
    t.key = StringBinding.entryToString(key);
    t.value = StringBinding.entryToString(key);
    return t;
    public void objectToData(Object o, DatabaseEntry entry) {
    TestValue t = (TestValue)o;
    StringBinding.stringToEntry(t.value, entry);
    totalSize += entry.getSize();
    public void objectToKey(Object o, DatabaseEntry entry) {
    TestValue t = (TestValue)o;
    StringBinding.stringToEntry(t.key, entry);
    }

    Yup, that solves the issue. By doubling the
    je.maxMemory property, I've made the problem
    disapear.Good!
    How large is the lock on 64 bit architecture?Here's the complete picture for read and write locks. Read locks are taken on get() calls without LockMode.RMW, and write locks are taken on get() calls with RMW and all put() and delete() calls.
    Arch  Read Lock  Write Lock
    32b    96B       128B
    64b   176B       216B
    I'm setting the je.maxMemory property becauce I'm
    dealing with many small JE environments in a single
    VM. I don't want each opened environment to use 90%
    of the JVM RAM...OK, I understand.
    I've noticed that the je.maxMemory property is
    mutable at runtime. Would setting a large value
    before long transactions (and resetting it after) be
    a feasable solution to my problem? Do you see any
    potential issue by doing this?We made the cache size mutable for just this sort of use case. So this is probably worth trying. Of course, to avoid OutOfMemoryError you'll have to reduce the cache size of other environments if you don't have enough unused space in the heap.
    Is there a way for me to have JE lock multiple
    records at the same time? I mean have it create a
    lock for a insert batch instead of every item in the
    batch...Not currently. But speaking of possible future changes there are two things that may be of interest to you:
    1) For large transaction support we have discussed the idea of providing a new API that locks an entire Database. While a Database is locked by a single transaction, no individual record locks would be needed. However, all other transactions would be blocked from using the Database. More specifically, a Database read lock would block other transactions from writing and a Database write lock would block all access by other transactions. This is the equivalent of "table locking" in relational DBs. This is not currently high on our priority list, but we are gathering input on this issue. We are interested in whether or not a whole Database lock would work for you -- would it?
    2) We see more and more users like yourself that open multiple environments in a single JVM. Although the cache size is mutable, this puts the burden of efficient memory management onto the application. To solve this problem, we intend to add the option of a shared JE cache for all environments in a JVM process. The entire cache would be managed by an LRU algorithm, so if one environment needs more memory than another, the cache dynamically adjusts. This is high on our priority list, although per Oracle policy I can't say anything about when it will be available.
    Besides increasing the je.maxMemory, do you see any
    other solution to my problem?Use smaller transactions. ;-) Seriously, if you have not already ruled this out, you may want to consider whether you really need an atomic transaction. We also support non-transactional access and even a non-locking mode for off-line bulk loads.
    Thanks a bunch for your help!You're welcome!
    Mark

  • CPU utilization problem with JSF

    Hi,
    I am using MyFaces 1.1.4 and tomahawk 1.1.3.
    I am using EJB 2.0 and weblogic server 9.2
    I have a problem with the performance of my application. The response time for 500 concurrent users is arnd 10sec. However, the CPU utilization normally hits *95-97%.*
    I have disabled all the logging to reduce the file IO. Also, all the code has been optimised. Still the problem exists. Now, I cannot think of any way to overcome this. My project is getting delayed because of this.
    Request you all to pls help.
    Regards,
    Milan.

    What type of server or servers are you using. I am assuming which I hate to do is that your EJB's are for CRUD and you a connection pool. Have tried to optimize the DB connection pool's ?.

  • Very urgent-Monthly utilization problem

    Hi All
    I m having problem when i am trying to do monthly utilization
    When i am executing T-Code J2IUN ,I have selected the plant and excise gruop
    After that it is displaying
    RG23ABED
    RG23CBED
    RG23ASED
    RG23CSED
    Correctly that is it is showing all positive amount
    But PLABED it is showing Negative amount
    We have checked with the abaper ,he told us that it is taking current fiscal year amount and previous yr i.e 2007-2008 it is not taking
    What can be the possible solution
    Awaiting for quick response
    Point will be duly awarded for the answers
    regds
    sahilesh

    Dear Shailesh,
    The Balance which is shown in J2IUN transaction is for all the business areas for a particular companycode. When you are doing a utilization for a particular excise group & for a particular period (say Today) then system will show the PLA balance for all the business area in J2IUN for the fiscal year 2008 if your fiscal year variant is fro April-March.  So check the G/L balances of the duties which are shown correctly as well as the PLA G/L balance & also check your PLA G/L account assignment in
    SPRO/Logistics general/Tax on goods movements/Account determination
    Thanks & Regards,
    SAP FC

  • Cenvat utilization problem

    hi
    in utilization J2IU,I entered required data and excuted
    now iam getting RUNTIME ERROR and debruged the system showing following point error
    ent_tot-bed = rg23a-bed + rg23c-bed + st_pla-bed.
    help
    guna

    Dear Dhananjay,
    In j2iun tcode Fortnightly pymt posting date in this filed enter 31.03.09  and do the transaction it will allow you to post on that date.
    Regards
    abhi

  • High CPU utilization problem,pls help!!

    hi,all
       i got some problems,I found the "dhcpd receive" process consume too much CPU, how can i fix it? 
       attached file is "show process cpu" command output. (running on WS-4507R with cat4500-entservicesk9-mz.150-2.SG1.bin)
    #sh platform cpu packet statistics all
    Packets Dropped In Hardware By CPU Subport (txQueueNotAvail)
    CPU Subport  TxQueue 0       TxQueue 1       TxQueue 2       TxQueue 3
               0               0            7398               0       922470635
               1               0               0               0               0
               2               0            1748               0               0
               3               0               0               0               0
               4               0               0               0               0
               5               0               0               0               0
               6               0               0               0               0
               7               0               0               0               0
    RkiosSysPacketMan:
    Packet allocation failures: 0
    Packet Buffer(Software Common) allocation failures: 0
    Packet Buffer(Software ESMP) allocation failures: 0
    Packet Buffer(Software EOBC) allocation failures: 0
    Packet Buffer(Software SupToSup) allocation failures: 0
    IOS Packet Buffer Wrapper allocation failures: 0
    Packets Enqueued Overall
    Total                5 sec avg 1 min avg 5 min avg 1 hour avg
                       0         0         0         0          0
    Packets Not Enqueued Overall
    Total                5 sec avg 1 min avg 5 min avg 1 hour avg
                       0         0         0         0          0
    Packets Dropped In Processing Overall
    Total                5 sec avg 1 min avg 5 min avg 1 hour avg
                 7938572         0         0         0          0
    Packets Not Enqueued by CPU event
    Event             Total                5 sec avg 1 min avg 5 min avg 1 hour avg
    Control Packet                       0         0         0         0          0
    Input Acl                            0         0         0         0          0
    RPF Fail                             0         0         0         0          0
    Adjacency Same If                    0         0         0         0          0
    L3 Forward                           0         0         0         0          0
    NFL Copy To CPU                      0         0         0         0          0
    Output Acl                           0         0         0         0          0
    MTU Check Fail                       0         0         0         0          0
    SA Miss                              0         0         0         0          0
    L2 Forward                           0         0         0         0          0
    SPAN                                 0         0         0         0          0
    CPU Generated                        0         0         0         0          0
    Unknown                              0         0         0         0          0
    Packets Dropped In Processing by CPU event
    Event             Total                5 sec avg 1 min avg 5 min avg 1 hour avg
    Control Packet                       0         0         0         0          0
    Input Acl                      7932929         0         0         0          0
    RPF Fail                             0         0         0         0          0
    Adjacency Same If                    0         0         0         0          0
    L3 Forward                           0         0         0         0          0
    NFL Copy To CPU                      0         0         0         0          0
    Output Acl                          90         0         0         0          0
    MTU Check Fail                       0         0         0         0          0
    SA Miss                           5538         0         0         0          0
    L2 Forward                           0         0         0         0          0
    SPAN                                 0         0         0         0          0
    CPU Generated                        0         0         0         0          0
    Unknown                              0         0         0         0          0
    Packets Dropped In Processing by CPU event
    Event             Total                5 sec avg 1 min avg 5 min avg 1 hour avg
    Control Packet                       0         0         0         0          0
    Input Acl                      7932929         0         0         0          0
    RPF Fail                             0         0         0         0          0
    Adjacency Same If                    0         0         0         0          0
    L3 Forward                           0         0         0         0          0
    NFL Copy To CPU                      0         0         0         0          0
    Output Acl                          90         0         0         0          0
    MTU Check Fail                       0         0         0         0          0
    SA Miss                           5538         0         0         0          0
    L2 Forward                           0         0         0         0          0
    SPAN                                 0         0         0         0          0
    CPU Generated                        0         0         0         0          0
    Unknown                              0         0         0         0          0
    Packets Not Enqueued by Priority
    Priority          Total                5 sec avg 1 min avg 5 min avg 1 hour avg
    Unknown                              0         0         0         0          0
    Normal                               0         0         0         0          0
    Medium                               0         0         0         0          0
    High                                 0         0         0         0          0
    Crucial                              0         0         0         0          0
    Super Crucial                        0         0         0         0          0
    Packets Dropped In Processing by Priority
    Priority          Total                5 sec avg 1 min avg 5 min avg 1 hour avg
    Unknown                              0         0         0         0          0
    Normal                             415         0         0         0          0
    Medium                            5553         0         0         0          0
    High                           7932619         0         0         0          0
    Crucial                              0         0         0         0          0
    Super Crucial                        0         0         0         0          0
    Packets Not Enqueued by Reason
    Reason            Total                5 sec avg 1 min avg 5 min avg 1 hour avg
    RxQueueNotAvail                      0         0         0         0          0
    RxNoBuffersAvail                     0         0         0         0          0
    RxBadCpuEvent                        0         0         0         0          0
    Testing                              0         0         0         0          0
    Packets Dropped In Processing by Reason
    Reason             Total                5 sec avg 1 min avg 5 min avg 1 hour avg
    BadPddType                            0         0         0         0          0
    VlanZeroBadCrc                        0         0         0         0          0
    VlanZeroGoodCrc                       0         0         0         0          0
    ReplVlan0GoodCrc                      0         0         0         0          0
    NoPimPhyportMap                       0         0         0         0          0
    NoPimPhyport                          0         0         0         0          0
    UnimplementedEvt                      0         0         0         0          0
    SrcAddrTableFilt                   1557         0         0         0          0
    NoL2Vlan                              0         0         0         0          0
    STPDrop                            3981         0         0         0          0
    UnknownLyr-Bridge                     0         0         0         0          0
    UnknownLyr-OutAcl                    90         0         0         0          0
    L2DstDrop                            12         0         0         0          0
    L2DstDropInAcl                        0         0         0         0          0
    L2DstDropOutAcl                       0         0         0         0          0
    AclNoVlan                             0         0         0         0          0
    AclActionDrop                         0         0         0         0          0
    AclActionRedirect                     0         0         0         0          0
    AclActionUnsupptd                     0         0         0         0          0
    UnknownBridgeAct                      0         0         0         0          0
    NoTxInfo                              0         0         0         0          0
    NoDstPorts                      7932932         0         0         0          0
    NoFloodPorts                          0         0         0         0          0
    ControlNoL2DstEnt                     0         0         0         0          0
    InvalidAclAction                      0         0         0         0          0
    AclInputErr                           0         0         0         0          0
    OutAclEvntOnInAcl                     0         0         0         0          0
    AclOutputErr                          0         0         0         0          0
    ReservedPort                          0         0         0         0          0
    EsmpNoTxInfo                          0         0         0         0          0
    UnknownSource                         0         0         0         0          0
    NoDriverTxPackets                     0         0         0         0          0
    NoPimPort                             0         0         0         0          0
    RouteLookupFailed                     0         0         0         0          0
    FragPktAllocFailed                    0         0         0         0          0
    IpHdrException                        0         0         0         0          0
    SpanEvent                             0         0         0         0          0
    Dot1xUnauthCtrlPkt                    0         0         0         0          0
    No Sw port for ARP                    0         0         0         0          0
    No Sw port for ESMP                    0         0         0         0          0
    CtrlPktInBadEtherType                    0         0         0         0          0
    PortMacOperationallyDown                    0         0         0         0          0
    Total packet queues 16
    Packets Received by Packet Queue
    Queue                  Total           5 sec avg 1 min avg 5 min avg 1 hour avg
    Esmp                        2830872005       125       110        79         71
    L2/L3Control                 752444885        31        22        20         20
    Host Learning                 94862324         3         0         1          1
    L3 Fwd High                        439         0         0         0          0
    L3 Fwd Medium                    68226         0         0         0          0
    L3 Fwd Low                   105911724         5         0         1          1
    L2 Fwd High                          0         0         0         0          0
    L2 Fwd Medium                     9144         0         0         0          0
    L2 Fwd Low                  1033665357       253       232       165         76
    L3 Rx High                     1163622         0         0         0          0
    L3 Rx Low                   2379160134       243       263       194         99
    RPF Failure                          0         0         0         0          0
    ACL fwd(snooping)                    0         0         0         0          0
    ACL log, unreach                 33482         0         0         0          0
    ACL sw processing            108494909         9         4         5          4
    MTU Fail/Invalid                     0         0         0         0          0
    Packets Dropped by Packet Queue
    Queue                  Total           5 sec avg 1 min avg 5 min avg 1 hour avg
    Esmp                                 0         0         0         0          0
    L2/L3Control                         0         0         0         0          0
    Host Learning                       79         0         0         0          0
    L3 Fwd High                          0         0         0         0          0
    L3 Fwd Medium                        0         0         0         0          0
    L3 Fwd Low                           0         0         0         0          0
    L2 Fwd High                          0         0         0         0          0
    L2 Fwd Medium                        0         0         0         0          0
    L2 Fwd Low                           0         0         0         0          0
    L3 Rx High                           0         0         0         0          0
    L3 Rx Low                            2         0         0         0          0
    RPF Failure                          0         0         0         0          0
    ACL fwd(snooping)                    0         0         0         0          0
    ACL log, unreach                     0         0         0         0          0
    ACL sw processing                    0         0         0         0          0
    MTU Fail/Invalid                     0         0         0         0          0
    Packets Transmitted from CPU per Output Interface
    Interface              Total           5 sec avg 1 min avg 5 min avg 1 hour avg
    Fa3/1                                0         0         0         0          0
    Fa3/2                                0         0         0         0          0
    Fa3/3                                0         0         0         0          0
    Fa3/4                                0         0         0         0          0
    Fa3/5                                0         0         0         0          0
    Fa3/6                                0         0         0         0          0
    Fa3/7                                0         0         0         0          0
    Fa3/8                                0         0         0         0          0
    Fa3/9                                0         0         0         0          0
    Fa3/10                               0         0         0         0          0
    Fa3/11                               0         0         0         0          0
    Fa3/12                               0         0         0         0          0
    Fa3/13                               0         0         0         0          0
    Fa3/14                               0         0         0         0          0
    Fa3/15                               0         0         0         0          0
    Fa3/16                               0         0         0         0          0
    Fa3/17                               0         0         0         0          0
    Fa3/18                               0         0         0         0          0
    Fa3/19                               0         0         0         0          0
    Fa3/20                               0         0         0         0          0
    Fa3/21                               0         0         0         0          0
    Fa3/22                               0         0         0         0          0
    Fa3/23                               0         0         0         0          0
    Fa3/24                               0         0         0         0          0
    Fa3/25                               0         0         0         0          0
    Fa3/26                               0         0         0         0          0
    Fa3/27                               0         0         0         0          0
    Fa3/28                               0         0         0         0          0
    Fa3/29                               0         0         0         0          0
    Fa3/30                               0         0         0         0          0
    Fa3/31                               0         0         0         0          0
    Fa3/32                               0         0         0         0          0
    Fa3/33                               0         0         0         0          0
    Fa3/34                               0         0         0         0          0
    Fa3/35                               0         0         0         0          0
    Fa3/36                               0         0         0         0          0
    Fa3/37                               0         0         0         0          0
    Fa3/38                               0         0         0         0          0
    Fa3/39                               0         0         0         0          0
    Fa3/40                               0         0         0         0          0
    Fa3/41                               0         0         0         0          0
    Fa3/42                               0         0         0         0          0
    Fa3/43                               0         0         0         0          0
    Fa3/44                               0         0         0         0          0
    Fa3/45                               0         0         0         0          0
    Fa3/46                               0         0         0         0          0
    Fa3/47                               0         0         0         0          0
    Fa3/48                               0         0         0         0          0
    Fa4/1                                0         0         0         0          0
    Fa4/2                                0         0         0         0          0
    Fa4/3                                0         0         0         0          0
    Fa4/4                                0         0         0         0          0
    Fa4/5                                0         0         0         0          0
    Fa4/6                                0         0         0         0          0
    Fa4/7                                0         0         0         0          0
    Fa4/8                                0         0         0         0          0
    Fa4/9                                0         0         0         0          0
    Fa4/10                               0         0         0         0          0
    Fa4/11                               0         0         0         0          0
    Fa4/12                               0         0         0         0          0
    Fa4/13                               0         0         0         0          0
    Fa4/14                               0         0         0         0          0
    Fa4/15                               0         0         0         0          0
    Fa4/16                               0         0         0         0          0
    Fa4/17                               0         0         0         0          0
    Fa4/18                               0         0         0         0          0
    Fa4/19                               0         0         0         0          0
    Fa4/20                               0         0         0         0          0
    Fa4/21                               0         0         0         0          0
    Fa4/22                               0         0         0         0          0
    Fa4/23                               0         0         0         0          0
    Fa4/24                               0         0         0         0          0
    Fa4/25                               0         0         0         0          0
    Fa4/26                               0         0         0         0          0
    Fa4/27                               0         0         0         0          0
    Fa4/28                               0         0         0         0          0
    Fa4/29                               0         0         0         0          0
    Fa4/30                               0         0         0         0          0
    Fa4/31                               0         0         0         0          0
    Fa4/32                               0         0         0         0          0
    Fa4/33                               0         0         0         0          0
    Fa4/34                               0         0         0         0          0
    Fa4/35                               0         0         0         0          0
    Fa4/36                               0         0         0         0          0
    Fa4/37                               0         0         0         0          0
    Fa4/38                               0         0         0         0          0
    Fa4/39                               0         0         0         0          0
    Fa4/40                               0         0         0         0          0
    Fa4/41                               0         0         0         0          0
    Fa4/42                               0         0         0         0          0
    Fa4/43                               0         0         0         0          0
    Fa4/44                               0         0         0         0          0
    Fa4/45                               0         0         0         0          0
    Fa4/46                               0         0         0         0          0
    Fa4/47                               0         0         0         0          0
    Fa4/48                               0         0         0         0          0
    Gi5/1                                0         0         0         0          0
    Gi5/2                                0         0         0         0          0
    Gi5/3                                0         0         0         0          0
    Gi5/4                                0         0         0         0          0
    Gi5/5                                0         0         0         0          0
    Gi5/6                                0         0         0         0          0
    Gi1/1                                0         0         0         0          0
    Gi1/2                                0         0         0         0          0
    Packets Received at CPU per Input Interface
    Interface              Total           5 sec avg 1 min avg 5 min avg 1 hour avg
    Fa3/1                                0         0         0         0          0
    Fa3/2                                0         0         0         0          0
    Fa3/3                                0         0         0         0          0
    Fa3/4                                0         0         0         0          0
    Fa3/5                                0         0         0         0          0
    Fa3/6                                0         0         0         0          0
    Fa3/7                                0         0         0         0          0
    Fa3/8                                0         0         0         0          0
    Fa3/9                                0         0         0         0          0
    Fa3/10                               0         0         0         0          0
    Fa3/11                               0         0         0         0          0
    Fa3/12                               0         0         0         0          0
    Fa3/13                               0         0         0         0          0
    Fa3/14                               0         0         0         0          0
    Fa3/15                               0         0         0         0          0
    Fa3/16                               0         0         0         0          0
    Fa3/17                               0         0         0         0          0
    Fa3/18                               0         0         0         0          0
    Fa3/19                               0         0         0         0          0
    Fa3/20                               0         0         0         0          0
    Fa3/21                               0         0         0         0          0
    Fa3/22                               0         0         0         0          0
    Fa3/23                               0         0         0         0          0
    Fa3/24                               0         0         0         0          0
    Fa3/25                               0         0         0         0          0
    Fa3/26                               0         0         0         0          0
    Fa3/27                               0         0         0         0          0
    Fa3/28                               0         0         0         0          0
    Fa3/29                               0         0         0         0          0
    Fa3/30                               0         0         0         0          0
    Fa3/31                               0         0         0         0          0
    Fa3/32                               0         0         0         0          0
    Fa3/33                               0         0         0         0          0
    Fa3/34                               0         0         0         0          0
    Fa3/35                               0         0         0         0          0
    Fa3/36                               0         0         0         0          0
    Fa3/37                               0         0         0         0          0
    Fa3/38                               0         0         0         0          0
    Fa3/39                               0         0         0         0          0
    Fa3/40                               0         0         0         0          0
    Fa3/41                               0         0         0         0          0
    Fa3/42                               0         0         0         0          0
    Fa3/43                               0         0         0         0          0
    Fa3/44                               0         0         0         0          0
    Fa3/45                               0         0         0         0          0
    Fa3/46                               0         0         0         0          0
    Fa3/47                               0         0         0         0          0
    Fa3/48                               0         0         0         0          0
    Fa4/1                                0         0         0         0          0
    Fa4/2                                0         0         0         0          0
    Fa4/3                                0         0         0         0          0
    Fa4/4                                0         0         0         0          0
    Fa4/5                                0         0         0         0          0
    Fa4/6                                0         0         0         0          0
    Fa4/7                                0         0         0         0          0
    Fa4/8                                0         0         0         0          0
    Fa4/9                                0         0         0         0          0
    Fa4/10                               0         0         0         0          0
    Fa4/11                               0         0         0         0          0
    Fa4/12                               0         0         0         0          0
    Fa4/13                               0         0         0         0          0
    Fa4/14                               0         0         0         0          0
    Fa4/15                               0         0         0         0          0
    Fa4/16                               0         0         0         0          0
    Fa4/17                               0         0         0         0          0
    Fa4/18                               0         0         0         0          0
    Fa4/19                               0         0         0         0          0
    Fa4/20                               0         0         0         0          0
    Fa4/21                               0         0         0         0          0
    Fa4/22                               0         0         0         0          0
    Fa4/23                               0         0         0         0          0
    Fa4/24                               0         0         0         0          0
    Fa4/25                               0         0         0         0          0
    Fa4/26                               0         0         0         0          0
    Fa4/27                               0         0         0         0          0
    Fa4/28                               0         0         0         0          0
    Fa4/29                               0         0         0         0          0
    Fa4/30                               0         0         0         0          0
    Fa4/31                               0         0         0         0          0
    Fa4/32                               0         0         0         0          0
    Fa4/33                               0         0         0         0          0
    Fa4/34                               0         0         0         0          0
    Fa4/35                               0         0         0         0          0
    Fa4/36                               0         0         0         0          0
    Fa4/37                               0         0         0         0          0
    Fa4/38                               0         0         0         0          0
    Fa4/39                               0         0         0         0          0
    Fa4/40                               0         0         0         0          0
    Fa4/41                               0         0         0         0          0
    Fa4/42                               0         0         0         0          0
    Fa4/43                               0         0         0         0          0
    Fa4/44                               0         0         0         0          0
    Fa4/45                               0         0         0         0          0
    Fa4/46                               0         0         0         0          0
    Fa4/47                               0         0         0         0          0
    Fa4/48                               0         0         0         0          0
    Gi5/1                                0         0         0         0          0
    Gi5/2                                0         0         0         0          0
    Gi5/3                                0         0         0         0          0
    Gi5/4                                0         0         0         0          0
    Gi5/5                                0         0         0         0          0
    Gi5/6                                0         0         0         0          0
    Gi1/1                                0         0         0         0          0
    Gi1/2                                0         0         0         0          0

    Hello Dong,
    You are having a bridging loop. Check the devices connected on gi5/4 and gi2/5
    Show cdp neig gi5/4 deta
    Show cdp neig gi2/5 deta
    Once you know what our neighbors are, go on our neighbors and issue the following multiple times:
    show mac-address address 00:0C:29:60:42:BF.
    You have vmware and dell vendors involved. Check for nic teaming on the vmware side.
    You should see this MAC being learned on the interface connected to gi5/4 or gi 2/5 sometimes, and another
    interface the other times.  Once you know which ports these respective switches are learning the MAC from, issue
    the 'show cdp neighbor' and do this again.
    Eventually, you should get to a pair of ports that aren't connected to a switch, and only have this MAC learned. 
    Once you have these ports, you should be able to figure out what kind of devices these are, and why they are sourcing
    traffic from the same MAC.
    You can enable to debug command to identity the top interfaces that send traffic/packets for CPU processing.
    Switch#debug platform packet all count
    Switch#show platform cpu packet statistics
    Switch#unde all
    http://www.cisco.com/en/US/products/hw/switches/ps663/products_tech_note09186a00804cef15.shtml
    Haihua

  • Run the SSIS Package using sql server Agent--Memory utilization Problem

    Hi,
    I have Created one SSIS Package it was working fine in BIDS but in SQL Server Agent it takes all the server memory and server gets very slow now.
    in that ssis package i am using merge join,sorting tasks.Can you please suggest me how to handle in the memory usage for this..pls refer the below screen

    Hi aravindhrm,
    You can enable BufferSizeTuning logging event on the Data Flow Task to get how many rows in buffer. Or you can use Performance Counter to obtain more details about the buffers.
    http://microsoft-ssis.blogspot.com/2013/04/performance-best-practice-more-rows-per.html 
    http://www.sql-server-performance.com/2009/ssis-an-inside-view-part-3/ 
    Then, you can tweak the DefaultBufferMaxRows and DefaultBufferMaxSize size settings.
    Besides, you can also go through the blog mentioned by Visakh and try suggestions such as increase OS pagefile size.
    Regards,
    Mike Yin
    TechNet Community Support

  • Swap utilization problem?

    Hi
    i have use Oracle 10g Database control, in everyday i screen shot the performance image (24 hours)
    but yesterday i have screen shot image ,the memory untilization is 100%
    how can utilizaion is 100% ? and what is solution

    Hi,
    'how can utilizaion is 100% ? and what is solution '
    Well this is a question on which you should give an answer.
    You have to know what was going on in your database.
    Using Dbcontrol i would use AWR feature and work with the snapshot saved in that period.
    Acr

  • Service tax Utilization under plant

    Hi Experts,
    I have one Utilization problem regarding Service.
    Here I have one company Code under which six regions and one mfg plant.
    Service tax is paying to suppliers from regions and the same is passing to Plant for utilization against Cenvat.
    The above case how will I do the configuration and what are all the G/L account required.
    Thanks&Regards,
    Bramha

    Hi,
    First check have you maintain the service tax G/L accounts in
    PATH : SPRO > IMG > Logistic General > Tax on goods movement > India > Service Tax > Assign Service Tax Accounts
    then maintain the number ranges for below three object with SNRO
    1: J_1ISERCRD
         Note: No. range use when we pay CENVAT from cenvat & service tax CR on J2IUN
    2: J_1ISEREXT
    3: J_1ISERPAY
        Note: No. range use when we pay Service tax from cenvat & service tax CR on J2IUN
    make the above settings and again try the utilization.
    regards,
    zafar

  • J1iin is utilizing immediatly required is monthly utilization

    Dear SAP Guru's
    Please help me I am unable to do the monthly utilization by J2iun for local excise invoice.
    1) The series is maintained for no immediate utilization( check is un ticked) for immediate utilization for local excise.
    2) for Export excise invoice it is working correctly as immediate utilization check is enabled.
    3) For local excise utilization even though the settings are there for monthly or fortnightly utilization even then it is utilizing immediately in J1iin
    Please help to resolve this.
    Regards
    Umesh

    1.Utilization Problem:
    J2IU has to be used for monthly utilization . You will have to  utilize Excise duty liability Excise duty wise by providing all the dispatch plants in the selection screen.
    In the second screen of the j2i5 you will get all the credit balances accumulated in the respective excise group, utilize all the payable duty from accumulated credit shown in the screen.
    Part2 entry will be created once you simulate & save.
    2. Import material return:
    If you material is returned to vendor then no need to reverse the credit.
    Raise an OTHR invoice through J1IS providing the correct duty break-up.
    Regards,
    Akhileshwar K

  • High Java Utilization

    Has anyone else noticed any issues with Java utilization on ZfS
    servers?
    Ever since we applied the Java update for the DST change, we've
    noticed that all our servers, at various times, can seem to have high
    utilization in the zenloader, or zws packages.
    We used to think it was a ZfS issue, as that's where we saw it, but
    we're also seeing it in our APC software occasionally too, so I am
    beginning to think it's a more general Java issue.
    Has anyone else seen this? Is there a solution? A more appropriate
    group to post in?
    Graham

    Hi Graham,
    I didn't get an answer (so no one had an idea?...) about memory
    problems.
    Do you have utilization problems only? My zenloaders seems to eat
    memory (one went up to max space before quitting work...), nearly all
    servers went stuck sometimes, could stop the process via NRM. I'm still
    waiting if it occurs again..maybe some bad schedule (timing issues)
    causes it (rebuild interval too short).
    Another issue about utilization and memory I have seen here happend
    with a single server during inventory.
    Graham Mitchell;2697645 Wrote:
    > Has anyone else noticed any issues with Java utilization on ZfS
    > servers?
    >
    > Ever since we applied the Java update for the DST change, we've
    > noticed that all our servers, at various times, can seem to have high
    > utilization in the zenloader, or zws packages.
    >
    > We used to think it was a ZfS issue, as that's where we saw it, but
    > we're also seeing it in our APC software occasionally too, so I am
    > beginning to think it's a more general Java issue.
    >
    > Has anyone else seen this? Is there a solution? A more appropriate
    > group to post in?
    >
    >
    > Graham
    ObiwanRedN

  • OHJ4.1.16 Repainting Problems and 100%CPU on java 1.4

    Hi
    We are considering using OHJ4.1.16 as our application help, I have it working such that when the help is invoked either from the toolbar or the menu OHJ is displayed, but there are major repainting problems when the OHJ window is closed by clicking on the X button and then the help is invoked again from the toolbar or the menu item.
    Please note that the first time it displays and paints fine only when the OHJ frame is closed and invoked again the problem occurs
    The problems encountered are repainting(really whacky), 100% CPU utilization
    Please have a look at the code below and tell me if i am not doing it right, Also is there anyway i can trap events on the OHJ frame so that i can dispose it everytime the window is closed by the user??
    The following code is executed when the help is invoked
         public void startHelp()
         helpObject.showNavigatorWindow();     
         helpObject.setVisible(true);
         public static void launchApplication()
              String helpset1 = "/resources/help/Test.hs";
              Vector booksVector = new Vector();
              booksVector.add(helpset1);
                   if(m_instance == null)
                        m_instance = new ApplicationHelp(booksVector);
                   else
                        m_instance.startHelp();                    
    we are using java 1.4, the above problem makes OHJ unusable!!

    Hi, John. We're trying to reproduce your problem. If you run any of the OHJ 4.1.16 demos in the bin directory of the installation, do you run into the 100% CPU utilization problem? If so, how? The cshDemo.bat file creates a dummy application that has an OHJ deployment, so please test that one in particular.
    Thanks,
    Ryan

  • Cannot use i2c and custom fpga logic at the same time

    I am driving a OV7670 camera sensor with my myRio. Configuring the camera's registers is done via I2C (or they call it the SCCB interface, but it's practically the same thing). The sensors has to be given an external clock input which I do through the FPGA (I run it with an 8MHz signal). I can then do a parallel read (8-bits) from the chip into the FPGA on each clock in order to read off the pixel information, place it in a buffer and let the real-time side read it and manipulate it. The whole idea is to let the FPGA do the image acquisition while the processor does the image manipulation.
    The only problem is, when I have my FPGA configuration loaded, the I2C bus seems to stop working. I know that the I2C is actually handled throught the FPGA as opposed to the processor. Is there anyway to run those two functions simultaneously on the FPGA? If not, can I somehow implement the I2C protocol independently of the FPGA?
    Thanks in advance

    Hey quickbacon,
    I take it you're talking about using the built in I2C API for the myRIO. The myRIO comes preconfigured with a default FPGA personality, and the myRIO API is built off of that default personality - the default personality needs to be in place in order for it to function. By customizing the FPGA on your own, you've overwritten the personality, which is why the myRIO I2C VIs have broken.
    If you want to use both the myRIO I2C VIs and customize the FPGA you can do so, but you need to modify the FPGA VI for the default personality instead of creating a new FPGA VI from scratch. To expose the FPGA VI that defines the default personality in a project, create a new project in LabVIEW and select the "myRIO Custom FPGA Project Template." Once you've created a project from that template, expand the FPGA target - the FPGA VI that's present under the target is the FPGA VI that defines the default personality. To add your own custom FPGA functionality, simply open that VI and add your functionality in parallel to the existing code. As long as you leave the code pertinent to the I2C VIs in place (it should be clearly labelled in the FPGA VI), the I2C VIs should still function. If you run into resource utilization problems, you can delete sections of code from the personality that deal with myRIO functions that you aren't using - just leave the code pertinent to I2C intact.
    Regards,
    Ryan K.

  • ITunes freezes when I connect iPad or iPod

    Whenever I connect my iPod classic or iPad, iTunes freezes and I have to force quit.
    This happened in the previous OS and this one, and with all iTunes versions.
    I'm on a 2006 iMac, upgraded to 10.7 from 10.6.8. I'm up to date on iTunes.
    Any suggestions?
    Thanks.

    have a look at
    http://brainiac4.blogspot.com/2006/11/ipod-100-cpu-utilization-problem.html
    might be the answer to your problem as it was to mine.
    "The problem, as it turned out, is all about drive letters. It seems that iPods do not like to share their drive letter with other devices, even if said devices are not connected.
    If you're having this problem, try what worked for me:
    With the iPod connected (and CPU at 100%, of course)
    Start > Control Panel > Administrative Tools > Computer Management > Disk Management
    Select the iPod and choose a different letter. "

  • WDS and number of APs

    Is it possible to have multiple WDS servers in one subnet?
    I was wondering if entering an IP address at the option "Specified Discovery" for all APs could make it possible to have APs register themselves to a specified WDS AP in one subnet? My client will go well above the max of 60 WDS APs per server.

    Hi Bas,
    Here is an excerpt from a Cisco document that addresses this issue:
    How many infrastructure access points (APs) can a single WDS manage?
    A single WDS AP can support a maximum of 60 infrastructure APs when the radio interface is disabled. The number drops to 30 if the AP that acts as the WDS AP also accepts client associations.
    Can I set up more than 60 access points (APs) in a WDS that uses AP-based WDS?
    Do not use more than 60 APs on one WDS master. You can run into CPU utilization problems with more than 60 APs. You can have multiple WDS masters, but they need to be on different subnets. An example is the use of:
    One WDS master and 30 APs on 10.10.10.10
    Another WDS master and 30 APs on 10.10.20.20
    In this case, the issue is that you cannot fast roam between WDS domains.
    Here is a link to the actual doc:
    http://www.cisco.com/en/US/tech/tk722/tk809/technologies_q_and_a_item09186a00804d4421.shtml#qa8
    Here is another link to a doc for configuring WDS AP's:
    http://www.cisco.com/en/US/products/sw/cscowork/ps3915/products_user_guide_chapter09186a008052db43.html#wp1948756
    Hope this helps!
    Rob
    Please remember to rate helpful posts.....

Maybe you are looking for