Degrading performance when running consecutive insert operations

Hi,
I'm using DB-XML (2.5.16) as a backend storage for a web application that works on top of a TBX (TermBase eXchange) document. The application is using the Python bindings and development is being done on GNU/Linux with Python 2.6.
The document is stored in a node-storage container, autoindexing is off at the time of container creation and transactions are enabled.
After a set of indexes are set, queries work quite fast.
On the other hand, when users input new data (terms) or perform edits on existing data, insert and replace operations have instant effect.
The application has also a feature to insert lots of new terms in a single click, resulting in a new insert operation for each term. If the amount of terms to be inserted is relatively small (let's say ~10), the operation is quickly performed and the user receives a response almost instantly.
Anyway, the problem arises when there are lots of new terms to be inserted. It starts working fast but performance quickly starts to degrade badly, needing more long seconds for each insert operation. Python's CPU-usage seems to go up to 100% when doing the actual insert, too.
I understand this is not the best-working scenario for DB-XML (a single large document), but I don't think this performance is normal or acceptable.
I have tried increasing Berkeley DB's cache size to 64MB with no success.
Any hints about what should I be looking at? any more recommendations?
These are the defined indexes:
dbxml> listindexes
Index: node-element-equality-string for node {}:admin
Index: node-element-equality-string for node {}:descrip
Index: node-attribute-equality-string edge-attribute-equality-string for node {}:id
Index: node-attribute-equality-string for node {http://www.w3.org/1999/xhtml}:lang
Index: unique-node-metadata-equality-string for node {http://www.sleepycat.com/2002/dbxml}:name
Index: node-element-equality-string for node {}:ref
Index: node-element-equality-string node-element-substring-string for node {}:term
Index: node-element-equality-string for node {}:termNote
Index: node-attribute-equality-string edge-attribute-equality-string for node {}:type
9 indexes found.Container information:
dbxml> info
Version: Oracle: Berkeley DB XML 2.5.16: (December 22, 2009)
         Berkeley DB 4.8.30: (2010-12-09)
Default container name: cont.dbxml
Type of default container: NodeContainer
Index Nodes: on
Auto-indexing: off
Shell and XmlManager state:
     Transactional, no active transaction
     Verbose: on
     Query context state: LiveValues,Eager

As you both have mentioned I have tried increasing the cache size to 512MB or even to 1GB (I have recreated the entire DBs after setting cache sizes), but I don't see any significative improvements.
I have also tried to tune my insert queries, and now I think they're in better shape than before. I would say the initial inserts feel slightly faster, but this only happens when the DB is empty (just bootstrapped). Then, once the DB has some term entries and grows in size, it starts to degrade and inserting becomes expensive in order of magnitudes.
Each insert operation is performed in a separate transaction. And yes, I'm using transactions all over the application.
Vyacheslav, I'll send you a couple of containers along with insert queries created by the application so you can play with.

Similar Messages

  • ZBook 17 g2 - poor DPC Latency performance when running from z Turbo Drive PCIe SSD

    I'm setting up a new zBook 17 g2 and am getting very poor DPC latency performance (> 6000 us) when running from the PCIe SSD. I've re-installed the OS (Win 7 64 bit) on both the PCIe SSD and a SATA HDD and the DPC latency performance is fine when running from the HDD (50 - 100 us) but horrible when running from the PCIe SSD (> 6000 us).  I've updated the BIOS and tried every combination of driver and component enabling/disabling I can think of.  The DPC latency is extremely high from the initial Windows install with no drivers installed.  Adding drivers seems to have no effect on the DPC latency. Before purchasing the laptop I found this review: http://www.notebookcheck.net/Review-HP-ZBook-17-E9X11AA-ABA-Workstation.106222.0.html where the DPC latency measurement (middle of the page) looks OK.  Of course, this is the prior version of the laptop and I believe it does not have the PCIe SSD.  Combining that with the fact that I get fine performance when running from the HDD I am led to believe that the PCIe SSD is the cause of the problem. Has anyone found a solution to this problem?  As it stands right now my zBook is not usable for digital audio work when running from the PCIe SSD.  But it cost me a lot of money so I'd sure like to use it...! Thanks, rgames

    Hi mooktank, No solution yet but, as of about six weeks ago, HP at least acknowledged that it's a problem (finally).  I reproduced it perfectly on another zBook 17 g2 and another PCIe SSD in the same laptop and HP was able to reproduce the problem as well.  So the problem is clearly in the BIOS or with some driver related to the PCIe SSD.  It could also be with the firmware in the drive, itself, but I can't find any other PCIe drives in the 60 mm form factor.  So there's no way to see if a differnt type of drive would fix the problem. My suspicion is that it's related to the PCIe sleep states - those are known to cause exactly these types of problems because the drive takes quick "naps" to save power and there's a delay when it is told to wake back up.  That delay causes a delay in the audio buffer that results in pops/crackles/stutters that would never be noticed doing other tasks like video editing or CAD work .  So it's a problem specific to folks who need low-latency audio performance (very few apps require low latency audio - video editing, for example, uses huge buffers with relatively high latency).  A lot of desktops offer a BIOS option to disable those sleep states but no such option exists in HP's BIOS for that laptop.  In theory you can do it from within Windows but it doesn't have an effect on my system.  That might be one of those options that Windows allows you to change but that actually has no effect. One workaround is to disable CPU throttling.  That makes the CPU run at full speed all the time and, I believe, also disables the PCIe and other sleep states.  When I disable CPU throttling, DPC latency goes back to normal.  However, the CPU is then running full-speed all the time so your battery life basically goes to nothing and the laptop gets *very* hot. Clearly that is not necessary because the laptop runs fine from the SATA SSD.  HP needs to fix the latency problem associated with the PCIe drive. The next logical step is to provide a BIOS update that provides a way to disable the PCIe sleep states without disabling CPU throttling, like on many desktop systems.  The bad news is that HP tech support is not very technical, so it takes forever for them to figure out what I'm talking about.  It took a couple months for them to start using the DPC Latency checker. Hopefully there will be a fix at some point... in the meantime, I hope that HP sends me a check for spending so much time educating their techs on how computers work.  And for countless hours lost re-installing different OSes only to show that the performance is exactly the same as shown in the DPC Latency checker. rgames

  • Decreasing performance when executing consecutive XQuery Update operations

    hello,
    I am writing an application in java using Berkeley DB XML (2.5.16). I have to run a test over the application, in which a lot of XQuery Update operations have to be executed. All update operations are insert statements. In the beginning the test works fine. However, as the number of updates increases (over 1000 XQuery Updates), there is also a great increase in time of execution. How can I enhance the performance of updates?
    Note that:
    1) The environment configuration is the following:
    EnvironmentConfig envConfig = new EnvironmentConfig();
    envConfig.setAllowCreate(true);
    envConfig.setInitializeCache(true);
    envConfig.setCacheSize(512*1024*1024);
    envConfig.setInitializeLocking(false);
    envConfig.setInitializeLogging(false);
    envConfig.setTransactional(false);
    2) No transactions are used
    3) The container is a node container
    4) Auto-indexing is on (I need that)
    5) The container includes only one xml of 2,5MB size.
    6) In some insert statements 1000 nodes are to be inserted.
    7) I am running windows vista on a 4GB Ram pc.
    Thank you in advance,
    theo

    Hi Lucas,
    Thanks a lot for your reply! However, I have a few more questions.
    Given that the xml is about 2.5MB size, is it considered to be that big for Berkeley DB so it needs to be break down into smaller documents?
    Also, after having executed ~4000 xquery update insert operations and doubled xml’s size, the performance it’s really getting worse… An insertion may even take 1.5 min, when for each of the first 3000 insertions only less than 0.5 sec is needed… Is there something I am missing in the configuration of Berkeley DB? If I set autoindexing off and try to maintain fewer indexes, is it possible to see significantly better performance? Till now I am just getting the following error when I set my indexes and try to execute consequent insertions over the same node:
    Exception in thread "main" com.sleepycat.dbxml.XmlException: Error: Sequence does not match type item() - the sequence does not contain items [err:XUDY0027], <query>:1:1, errcode = QUERY_EVALUATION_ERROR+
    at com.sleepycat.dbxml.dbxml_javaJNI.XmlQueryExpression_execute__SWIG_1(Native Method)
    at com.sleepycat.dbxml.XmlQueryExpression.execute(XmlQueryExpression.java:85)
    +<myClasses>+
    Thanks,
    theo

  • Poor performance when running DBMS_STATS package

    Hello,
    I thought I would throw this issue out to the general population as I am stumped.
    I have two identical schemas on two different severs. Database in 9.2.0.6 and for QAS and Production reasons the servers and database settings are identical.
    I am running the DBMS_STATS.GATHER_SCHEMA_STATS package on both databases. On the QAS DB it takes roughly 1.5 hours while on the Production database it takes 8.0 hours.
    Looking at the statspack analysis, the biggest thing to jump out at me is that the temporary tablespace is getting 4.6 Million I/O hits (reads) while the QAS is only getting a few thousand.
    So .... this sort of indicates that something is going on in the PGA which could cause Oracle to use the TEMP tablespace. However when I look in the host performance (using Grid Control) the servers memory, file I/O, and CPU while high are not over 80%.
    Has anyone else seen and issue like this? Any ideas where to look?
    Thanks,
    Chris

    To the extent that you are gathering histograms on the data, Oracle potentially has to do a reasonable amount of sorting. If one machine has substantially more physical RAM, that presumably implies that it has more RAM available for the PGA, which would allow more sorts to happen in memory rather than on disk.
    Depending on how you create a "refresh copy of production" and what parameters you are passing in to DBMS_STATS, it is also possible that the quality assurance database is gathering substantially more histograms than the production database (i.e. you refresh lower environments via export and import rather than doing an RMAN clone and tell Oracle to gather histograms on any columns that currently have histograms).
    Justin

  • Slow performance when running Multiple programs at once

     When I try to run 2 or 3 programs at once like converting some video and watching something on I tunes My A205-S6808 throws a Fit any Ideas I have already upgraded the memory to 4gigs 

    Satellite A205-S6808
    Some tips..
       Get maximum performance from Windows Vista
       Optimize Windows Vista for better performance
       Ways to improve your computer's performance
    -Jerry

  • My mac has slow performance when running two or more applications, ran onyx and cleaned cache but my macbook is still running slow. Recommendations?

    I've had my MacBook White running on Mac OSx 10 for about 2 years. My sister has the same type of MacBook and she isn't having any slow performance. I really don't want to install RAM and that can't be the end all be all of solutions. Please help!!

    Kappy's Personal Suggestions for OS X Maintenance
    For disk repairs use Disk Utility.  For situations DU cannot handle the best third-party utilities are: Disk Warrior;  DW only fixes problems with the disk directory, but most disk problems are caused by directory corruption; Disk Warrior 4.x is now Intel Mac compatible. TechTool Pro provides additional repair options including file repair and recovery, system diagnostics, and disk defragmentation.  TechTool Pro 4.5.1 or higher are Intel Mac compatible;  Drive Genius is similar to TechTool Pro in terms of the various repair services provided.  Versions 1.5.1 or later are Intel Mac compatible.
    OS X performs certain maintenance functions that are scheduled to occur on a daily, weekly, or monthly period. The maintenance scripts run in the early AM only if the computer is turned on 24/7 (no sleep.) If this isn't the case, then an excellent solution is to download and install a shareware utility such as Macaroni, JAW PseudoAnacron, or Anacron that will automate the maintenance activity regardless of whether the computer is turned off or asleep.  Dependence upon third-party utilities to run the periodic maintenance scripts had been significantly reduced in Tiger and Leopard.  These utilities have limited or no functionality with Snow Leopard and should not be installed.
    OS X automatically defragments files less than 20 MBs in size, so unless you have a disk full of very large files there's little need for defragmenting the hard drive. As for virus protection there are few if any such animals affecting OS X. You can protect the computer easily using the freeware Open Source virus protection software ClamXAV. Personally I would avoid most commercial anti-virus software because of their potential for causing problems.
    I would also recommend downloading the shareware utility TinkerTool System that you can use for periodic maintenance such as removing old logfiles and archives, clearing caches, etc.  Other utilities are also available such as Onyx, Leopard Cache Cleaner, CockTail, and Xupport, for example.
    For emergency repairs install the freeware utility Applejack.  If you cannot start up in OS X, you may be able to start in single-user mode from which you can run Applejack to do a whole set of repair and maintenance routines from the commandline.  Note that AppleJack 1.5 is required for Leopard. AppleJack 1.6 is compatible with Snow Leopard.
    When you install any new system software or updates be sure to repair the hard drive and permissions beforehand. I also recommend booting into safe mode before doing system software updates.
    Get an external Firewire drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
    Backuplist
    Carbon Copy Cloner
    Data Backup
    Deja Vu
    iBackup
    JaBack
    Silver Keeper
    MimMac
    Retrospect
    Super Flexible File Synchronizer
    SuperDuper!
    Synchronize Pro! X
    SyncTwoFolders
    Synk Pro
    Synk Standard
    Tri-Backup
    Visit The XLab FAQs and read the FAQs on maintenance, optimization, virus protection, and backup and restore.
    Additional suggestions will be found in Mac Maintenance Quick Assist.
    Referenced software can be found at CNet Downloads or MacUpdate.

  • SOLVED: Degraded performance when I base my form on a view

    I am writing a form with a single database view that unions two tables.
    When I query a record based on an index column the form is behaving as it is retrieving all the records and takes over a minute.
    When I issue the same query (which I get by messaging out :system.LAST_QUERY) using TOAD or sqlplus, the query is immediate.
    Is anybody aware of form issues that would make this behavior.
    Our version of forms is 10g.
    Thanks
    Message was edited by:
    Tom1

    I found that the cause was not the view but some very bad performing query in my POST-QUERY trigger.
    Two lessons:
    1) Never forget the other parts of the form.
    2) If your query performs fine in sqlplus or TOAD like tools then it's not likely to
    be your query.
    Message was edited by:
    Tom1

  • ClassNotFound EJBHelper when running EJB business operation

    Hi,
    i have a problem with my simple platform domain.
    I want to get the UserInfo with a EJB session business operation.
    I have created to business operations
    1. create a com.bea.wlpi.WLPIPrincipal
    2. call the method getUserInfo
    Running 1 and the 2 with the worklist tool, my workflow produces a ClassNotFound
    Exception(see below)
    If i add the wlpi-ejb.jar to my startWeblogic.cmd file many ejb exceptions will
    be shown.
    Please help me,
    i am a newbie
    Bjoern
    javax.transaction.TransactionRolledbackException: EJB Exception: : java.lang.NoClassDefFoundError:
    com/bea/wlpi/server/common/EJBHelper
    at com.bea.wlpi.common.EJBInvocationDescriptor.invokeHomeMethod(Unknown
    Source)
    at com.bea.wlpi.server.workflow.action.ActionBusinessOperation.execute(Unknown
    Source)
    at com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.executeActions(Unknown
    Source)
    at com.bea.wlpi.server.workflow.Task.executeActions(Unknown Source)
    at com.bea.wlpi.server.workflow.Task.doit(Unknown Source)
    at com.bea.wlpi.server.workflow.Workflow.taskDoit(Unknown Source)
    at com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean$3.invoke(Unknown
    Source)
    at com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.performWithErrorHandling(Unknown
    Source)
    at com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean.taskDoit(Unknown
    Source)
    at com.bea.wlpi.server.workflowprocessor.WorkflowProcessorBean_h7kt4j_EOImpl.taskDoit(WorkflowProcessorBean_h7kt4j_EOImpl.java:1013)

    Jeff,
    Did you update the config.xml to add the EJBComponent element for your EJB
    to the WLI application? This must be done by hand.
    Mike
    "Jeff Gallimore" <[email protected]> wrote in message
    news:3cb39de0$[email protected]..
    >
    I have a business operation that calls a method on a stateless sessionbean, but
    it is throwing a ClassNotFoundException.
    Some details:
    1) I am using WLI 2.1sp1 and WLS 6.1sp1 on Windows
    2) The EJB is deployed as part of the WLI application (the EJB jar is inthe %WLI_HOME%\lib
    directory)
    3) I can see the EJB in the Studio
    4) I can see the entry in the JNDI tree in the running server
    5) I am running in the "samples" domain
    6) I can run a standalone client and call the EJB just fine
    <error time="2002-04-09 21:46:10.425">WorkflowException: An erroroccurred
    during exception handler processing.
    Unable to load class object for remote interface of type"com.amti.prdemo.ejb.purchaserequest.PurchaseRequestDAOHome";
    java.lang.ClassNotFoundException:com.amti.prdemo.ejb.purchaserequest.PurchaseRequestDAOHome.</error>
    Any ideas on what the problem is?
    Jeff

  • Slow performance when running non-swing Application?

    I created a very simple GUI Application with some buttons. The App is sitting on a UNIX box and I am running it from my local PC. I have Hmmingbird Exceed running. It seems to come up very slowly. I am specifically not using any swing components. Is this normal? Anything I can do to speed it up? Thanks...

    Regardless of whther it's a Java or a Hummingbird
    issue, I think this is a valid place to ask for help
    about this since the odds of there being someone else
    here having conquered this same problem would be
    rather high.Yep, people have the problem. I have had the problem. I haven't seen anyone that claims a solution.
    >
    I would also guess that there isn't much of any wayto speed it up.
    What I don't understand is why the behavior of the
    Java app on the Unix box is quite fast and yet the
    redraw on the Exceed clent is excruciating slow. This
    effect does seem to be present with our older apps
    written in other languages.
    Why would Exceed treat a Java app differently than one
    written in any other language? I don't get it.
    I believe someone at some time suggested it has to do with the way java interacts with the unix environment. But my memory on the subject is very fuzzy and the person explaining might not have known what they were talking about.
    Of course I question the wisdom of running a GUIapplication written > in a language that is portable
    across platform via a remote access
    program in the first place.What is so unwise about it? The customer will run the
    app in Unix. I have a PC on my desk. I use exceed to
    connect to a Unix box to test behavior in Unix on my
    PC. Sounds wiser than walking halfway accross the
    company to sit in front of the Unix box.
    Testing, of course, should only be done in the environment that will actually be run.
    Admittedly I might be overly sensitive to this as I worked on a project where a customer complained about the same thing. Given that the contract did not specify running via hummingbird there was no grounds for complaint.

  • Why I get an error when running a sequence using the LabVIEW operator interface ?

    I have a simple TestStand sequence calling LabVIEW vis that is giving me an error when I run it with the .exe version of the LabVIEW operator interface and I set TestStand to run the vis using the 8.2.1 runtime engine instead of the development adapter. I made a change in the operator interface to open a vi programatically and get the value of a control, this vi is also used in the TestStand sequence I am trying to run. Could this be causing my problem ?
    Thanks

    Hello Verdulken,
    I have a few additional questions:
    Does your application function correctly when running the LabVIEW operator interface you have created as a VI in the LabVIEW development environment (i.e. does this problem only occur when the LabVIEW operator interface is run as an executable)?
    What is the error that you are receiving?
    Regarding the VI that you open programmatically, do you open it in a visible manner (i.e. use the Show front panel when called option from VI Properties)?If so, do you also close this VI after it finishes (i.e. use the Close if originally closed option from VI Properties)?
    Does the error occur on the step that calls this very same VI again later in the sequence?
    Does your application function correctly if you use the development adapter for all of your calls?
    Thank you in advance for this information,
    Matt G.
    National Instruments
    Applications Engineering

  • Error when running Stellarium with Intel GPU

    I'm trying to run Stellarium on a 2009 desktop computer with an Intel GPU, but I get the following error message:
    Your OpenGL subsystem has problems. See log for details. Ignore and suppress this notice in the future and try to continue in degraded mode anyway?
    This is the log file:
    2015-02-02T20:03:51
    Linux version 3.18.4-1-ARCH (builduser@tobias) (gcc version 4.9.2 20141224 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Jan 27 20:45:02 CET 2015
    Compiled using GCC 4.9.2
    Qt runtime version: 5.4.0
    Qt compilation version: 5.4.0
    Addressing mode: 64-bit
    MemTotal: 8101092 kB
    MemFree: 154528 kB
    MemAvailable: 4217808 kB
    SwapTotal: 0 kB
    model name : Intel(R) Core(TM)2 Duo CPU E8400 @ 3.00GHz
    cpu MHz : 2997.000
    model name : Intel(R) Core(TM)2 Duo CPU E8400 @ 3.00GHz
    cpu MHz : 2997.000
    00:02.0 VGA compatible controller: Intel Corporation 82Q35 Express Integrated Graphics Controller (rev 02) (prog-if 00 [VGA controller])
    Kernel driver in use: i915
    stellarium
    [ This is Stellarium 0.13.2 - http://www.stellarium.org ]
    [ Copyright (C) 2000-2014 Fabien Chereau et al ]
    Writing log file to: "/home/fturco/.stellarium/log.txt"
    File search paths:
    0 . "/home/fturco/.stellarium"
    1 . "/usr/share/stellarium"
    Config file "/home/fturco/.stellarium/config.ini" does not exist. Copying the default file.
    Config file is: "/home/fturco/.stellarium/config.ini"
    Detected: OpenGL "2.1"
    Driver version string: "2.1 Mesa 10.4.3"
    GL vendor is "Intel Open Source Technology Center"
    GL renderer is "Mesa DRI Intel(R) Q35 "
    GL Shading Language version is "1.20"
    MESA Version Number after parsing: 10.4
    Mesa version is fine, we should not see a graphics problem.
    GLSL Version Number after parsing: 1.2
    This is not enough: we need GLSL1.30 or later.
    You should update graphics drivers, graphics hardware, or use the MESA version.
    Else, please try to use an older version like 0.12.4, and try there with --safe-mode
    You can try to run in an unsupported degraded mode by ignoring the warning and continuing.
    But more than likely problems will persist.
    Aborting due to OpenGL/GLSL version problems.
    I'm using xf86-video-intel version 2.99.917-1 at the moment.
    $ lspci | grep VGA
    00:02.0 VGA compatible controller: Intel Corporation 82Q35 Express Integrated Graphics Controller (rev 02)
    I also get extremely slow performances when running 3D game Xonotic, but I don't know if it's due to the same problem. Any suggestion?

    It seems that my GPU (Intel GMA 3100) is not supported anymore. See https://answers.launchpad.net/stellarium/+faq/2570: "Graphics cards which are no longer supported by Stellarium 0.13 and later include early ATI/AMD Radeon cards up to and including the Xxxx series (built 2004/05), NVidia up to GeForce FXxxx (2003/04), and Intel GMA before X3000, unfortunately also including the popular Atom-based netbooks of 2010."

  • Degraded performance.

    Has anyone noticed degraded performance when enabling 802.11n with support for G? The reason for asking is all my wireless workstations are running 802.11n with the exception of my iPhone. I also want to get a wireless all-in-one printer/scanner which I can only find support for B/G wireless networks, not 802.11n. Can anyone recommend an all-in-one printer/scanner that supports 802.11n for use with Apple's AEBS router?

    Has anyone noticed degraded performance when enabling 802.11n with support for G? The reason for asking is all my wireless workstations are running 802.11n with the exception of my iPhone.
    That would be "normal" as the best you can expect in a mixed radio mode is 100 - 130 Mbps for your "n" devices. If you want to take advantage of "n" speed, you would either need to set up a "Dual-Band" network or remove any non-"n" devices from your current network.

  • Error when running a script using upsshell.exe

    I have a simple custom script which is
    Sub Test1()
    Set fso=  CreateObject("Scripting.filesystemobject")
    Set ts = fso.CreateTextFile("D:\DATA\****\Outbox\Templates\Test.txt")
    ts.writeline "hi"
    End sub
    When I am running it manually in workbench, the script runs fine but when I try to run it using upsshell.exe(command provided below)
    D:\Oracle\MIDDLE~1\EPMSYS~1\products\FINANC~2\SHARED~1\upsShell.exe CustomScriptEx=****~admin~****~~****~D:\DATA\test\Outbox\Logs~Test1~1033~0
    i get the following error
      ERROR:
        Code............ 438
        Description..... [Script failure caused error]: Object doesn't support this property or method
        Procedure....... modupsShell.ExecuteCustomScriptEx
        Component....... upsShell
        Version......... 1112
        Process ID...... 292496
        Thread.......... 290292
      IDENTIFICATION:
        User............ admin
        Domain..........
        Computer Name... *******
        App Name........ ****
      PROCEDURE STEPS:
        1-Split Arguments
        2-Create Load balancer=*******
        3-Authenticate
        4-Get Next App Server
        5-Open App Server=*******
        6-Execute the script=Test1
        7-Step was not reached, a previous step failed
    Any ideas on the error?

    Hello Verdulken,
    I have a few additional questions:
    Does your application function correctly when running the LabVIEW operator interface you have created as a VI in the LabVIEW development environment (i.e. does this problem only occur when the LabVIEW operator interface is run as an executable)?
    What is the error that you are receiving?
    Regarding the VI that you open programmatically, do you open it in a visible manner (i.e. use the Show front panel when called option from VI Properties)?If so, do you also close this VI after it finishes (i.e. use the Close if originally closed option from VI Properties)?
    Does the error occur on the step that calls this very same VI again later in the sequence?
    Does your application function correctly if you use the development adapter for all of your calls?
    Thank you in advance for this information,
    Matt G.
    National Instruments
    Applications Engineering

  • "image size could not be verified - operation not performed" when I go to restore to my hard drive. What do?

    I want to restore my disk image using disk utility. I keep getting "image size could not be verified - operation not performed" when I go to restore to my hard drive. What do?
    I would like to partition my disk but it says I have to restore my disk image first so that files can be moved. This is really obnoxiously hard for someone who is only moderately tech savy. Any help is appreciated, but please no links to 3rd party sites. I would like to keep this with the software I already have.
    Thanks ^_^

    Sorry nobody has replied yet, but how was this disk image made?
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.

  • Following error occours when running a BI Publisher report in Siebel: Operation ' ? ' of Web Service ' ? . ? ' at port ' ? ' failed with the following explanation: " ? ".(SBL-EAI-04308)

    I am installing a new reporting server.
    When running a report I get the above error:
    Operation '<?>' of Web Service '<?>.<?>' at port '<?>' failed with the following explanation: "<?>".(SBL-EAI-04308)
    Any ideas?

    Have a look here for Oracle's guidelines on troubleshooting such errors:
    http://download.oracle.com/docs/cd/E14004_01/books/Reports/ReportsTroubleshoot.html

Maybe you are looking for