Error-200284 for PXI-1010 MXI-3 fiberoptic connection to a PXI-6533.

In the instruction lab in which I work, we have two types of systems:
1)SCXI-1000 chassis connected by copper to a PXI-6035E card in a PC.
2)PXI-1010 chassis connected by fiberoptic from a MXI-3 to a PXI-6030E card in a PC.  A PXI-6533 handles the digital I/O.
We have LabVIEW8.5.1 running on both types of systems.  On the SCXI-1000 system, the LabView example Acq&GraphVoltage-IntClk-DigStart.vi runs just fine.  It does not run on the PXI-1010 systems.  Instead, I eventually get Error-200284.  In both cases we use PFI0 or PFI1, and digital ground, for the triggers, connected to lines 38, 39, and 33, respectively, in the SCXI-1302 terminal block, which connects to an SCXI-1180 feedthrough panel.
I searched the forums and all ni.com for information on this problem, and have not been able to find any relevant information.
Joseph D. Rudmin

Hi Joseph,
I think I'm starting to understand the problem you are having. Unfortunately, since on a SCXI module, all channels are generally multiplexed through AI0, the PXI/SCXI backplane only shares the necessary channels i.e. one AI channel and any required timing signals. Therefore, even if though you are using the SCXI-1180 module with a SCXI-1349 communicating adapter, you will not be able to access the other channels on your PXI-6030E since there is no physical connections being made to those channels in the backplane. There are 2 solutions around this problem:
1. You can use an SCXI-1349 cable assembly to connect the front of the PXI-6030E module to the back of the SCXI-1349 adapter. This way the unused pins on the DAQ module can be accessed through the SCXI-1180.
2. You can decide not to use the SCXI-1180 and simply use a standard 68-pin terminal block with your PXI-6030E and connect your 5V sync pulse to the PFI pins. This will still allow you to sample off of the SCXI-1100 since those channels are connected via the backplane.
Here's a link to our online KnowledgeBase article which talks about this issue. 
Can I Connect The SCXI-1180 To An SCXI Module In A PXI-1010 To Use The Additional Analog Input Chann...
Please let me know if this answers your question.
S_Hong
National Instruments
Applications Engineer

Similar Messages

  • Please help me on error -200284 for usb6008 data A/D

    Hi,
    I am working on the A/D using usb6008, I program in visual c++.  I create a dialog to test the function of sample program: contAcquireNChan.c               in  NI-DAQmx Base.  I just changed the mode to DAQmx_Val_FiniteSamps and each time I just want to get several data. I used a button to start the a/d. The following is the code. The problem is very strange that while I click the start button for the sixth time, this error -200284 will occur when calling this function:
     DAQmxErrChk (DAQmxBaseReadAnalogF64taskHandle,pointsToRead,timeout,DAQmx_Val_GroupByScanNumber,data,2,&pointsRead,NULL));
    The discription of this error is:
    "Some or all of the samples requested have not yet been acquired.
    To wait for the samples to become available use a longer read timeout or read later in your program. To make the samples available sooner, increase the sample rate."
    I do not know what happened. And how to solve this problem. Please help me.
    The following is the code:
    void CBTTest001Dlg:nStart()
       // Task parameters
        int32       error = 0;
        TaskHandle  taskHandle = 0;
        char        errBuff[2048]={'\0'};
        time_t      startTime;
        bool32      done=0;
        // Channel parameters
        char        chan[] = "Dev1/ai0";
        float64     min = -10.0;
        float64     max = 10.0;
        // Timing parameters
        char        clockSource[] = "OnboardClock";
        uInt64      samplesPerChan = 2;
        float64     sampleRate = 2000.0;
        // Data read parameters
        #define     bufferSize (uInt32)1000
        float64     data[bufferSize * 5];
        int32       pointsToRead = bufferSize;
        int32       pointsRead;
        float64     timeout = 10.0;
        int32       totalRead = 0;
     index++;
     if(index==6)
        int a =0;
     m_bWorkFlag = true; 
      double a1= data[0];
      double a2= data[1];
      double a3= data[2];
      double a4= data[3];
      DAQmxErrChk (DAQmxBaseCreateTask("",&taskHandle));
      DAQmxErrChk (DAQmxBaseCreateAIVoltageChan(taskHandle,chan,"",DAQmx_Val_RSE,min,max,DAQmx_Val_Volts,NULL));
      DAQmxErrChk (DAQmxBaseCfgSampClkTiming(taskHandle,clockSource,sampleRate,DAQmx_Val_Rising,DAQmx_Val_FiniteSamps,samplesPerChan));
      DAQmxErrChk (DAQmxBaseCfgInputBuffer(taskHandle,2000)); //use a 100,000 sample DMA buffer
      DAQmxErrChk (DAQmxBaseStartTask(taskHandle));
      DAQmxErrChk (DAQmxBaseReadAnalogF64(taskHandle,pointsToRead,timeout,DAQmx_Val_GroupByScanNumber,data,2,&pointsRead,NULL));
     //    printf("\nAcquired %d total samples.\n",totalRead);
      m_fAnalog1 = data[0];
      m_fAnalog2 = data[1];
      m_fAnalog3 = data[2];
      m_fAnalog4 = data[3];
      m_fAnalog5 = data[4];
      UpdateData(false);
      if(taskHandle != 0) {
    //   DAQmxBaseStopTask (taskHandle);
       DAQmxBaseClearTask (taskHandle);
     return;
    Error:
        if( DAQmxFailed(error) )
            DAQmxBaseGetExtendedErrorInfo(errBuff,2048);
        if( DAQmxFailed(error) )
            printf("DAQmxBase Error: %s\n",errBuff);

    Dear Neal,
    Thank you so much !!
    "DAQmx Base was designed for use on operating systems other than Windows". Maybe that's the reason why I always met problems.  I am using windows now !! The only reason for me to use DAQmx Base is that it comes with the USB6008 device so that I think NI recommend to use it ! I also downloaded DAQmx from NI but I did not tried it (in fact it took me several hours to switch the firmware back to DAQmx Base ). I will try It now and tell you the result.
    "You say that you thought you solved the issue but did you not?"
    Yes.
    " Did you add the stop task function before and that is what you thought solved the issue? "
    Yes.
    I started from the example and do some modifications. First I met -200284 error and I found it is the caused by wrong number of data to be read. I changed to finite namber data read.
    Then I met sixth reading problem, at that time I use a button clicking to read the data.when I read for the sixth time, It will occur (I forgot the phenomena). I added a  stop task function and I thoought I solved the problem. I knew for a finite number data reading, stop function is not needed, but I do not have any other method so I tried it. "sixth reading problem" solved, but When I move the data reading function to ontimer function recently. The program will halt -- take 99% of CPU time after 30 second of reading (sometime several minutes, sometimes several seconds). If I move the start task back to OnInitialUpdate() function and cancel stop function, halt error will not occur but the data I read in not correct. That is the whole thing. The following is the code relative to the data read.
    Initialization;
    void Ctest2Dlg:nInitialUpdate()
       DAQmxErrChk (DAQmxBaseCreateTask("",&taskHandle));
      DAQmxErrChk (DAQmxBaseCreateAIVoltageChan(taskHandle,chan,"",DAQmx_Val_RSE,min,max,DAQmx_Val_Volts,NULL));
      DAQmxErrChk (DAQmxBaseCfgSampClkTiming(taskHandle,clockSource,sampleRate,DAQmx_Val_Rising,DAQmx_Val_ContSamps ,samplesPerChan));
    Data read
    void Ctest2Dlg:nTimer(UINT nIDEvent)
      if(taskHandle != 0)
         DAQmxErrChk (DAQmxBaseStartTask(taskHandle));
       DAQmxErrChk (DAQmxBaseReadAnalogF64(taskHandle,pointsToRead,timeout,DAQmx_Val_GroupByScanNumber,data,100,&pointsRead,NULL));
       DAQmxBaseStopTask (taskHandle);

  • Error-No Warehouse FC found for plant 1010/valuationh classs 3001

    Hi,
    Funds Management is active in my company code.Budgeting is on cost center level.
    My question is in many PO's and PR's we dont input account assignment as cost center because we dont require to put in it so now while creating PR for a BOM material im getting error "No warehouse FC found for plant 1010/valuation class 3001"
    When i select account assignment as Cost center it is working but i dont want to select that assignment as per requirement.
    And when i select Account assignment as UN (unknown that is also working fine.
    What is the possible solution to get rid iof this error.
    Thanks
    Deepa

    consider it as a high priority

  • Suitable Laptop for PXI-1033

    I am using a PXIe-8360 with a PXI-1033 and am trying to find a laptop that is compatible with this system.  NI states that not all laptops work with this configuration and has a list of laptops that do have been tested at (http://zone.ni.com/devzone/cda/tut/p/id/5035).  This list is outdated and NI does not give any criterion on how to select a laptop that will work with this system on the webpage.  We have purchased an Acer 5680 and it doesn't seem compatible.  Is there a more recent list of laptops that are compatible?

    Hi PP83,
    I am afraid that the knowledgebase article you located (http://zone.ni.com/devzone/cda/tut/p/id/5035) has the most up-to-date information regarding compatibility between laptops and the Expresscard-MXI for PXI and PXI Express.  National Instruments is actively testing motherboards and laptops so that we can comment on compatibility with our MXI products. 
    For information on motherboards, desktops, and workstations compatible
    with MXI products, you can create a service request with National Instruments PXI Support group at ni.com/support.
    Regards,
    Anna M.
    National Instruments

  • Error -200284, Behaviour in Execution Highlighting and Runtime Speed

    Hi
    I am having trouble with the attached VI.
    This VI reads a voltage on ai26 and it works fine if
    1) the wait in the flat sequence is 2000 milliseconds or more and execution highlighting is turned off
    or
    2) the wait in the flat sequence is zero or more and execution highlighting is turned on.
    LV reports error -200284 if I try executing 2) at runtime speed (execution highlighting turned off, wait=0). Is there a solution to change the VI in a way that the use of a wait is not necessary?
    I already checked the LV examples and it seems that the examples (on my hardware) suffer the same problem.
    Description of my task:
    I need to sample the voltage at 2000 Samples/sec. Signal observation must be 5 sec, that makes 10000 Samples in the end. No trigger needed. The USB-6259 has a buffer of length 4095 but this is not my problem since I will be doing the acquisition (with 2000 sample chunks) in the producer- and the analysis in the consumer-loop.
    My Hardware:
    I am using USB-6259, LV 8.2 and DAQmx 8.6 on a Windows 2000 Machine.
    Best regards
    Thomas
    Attachments:
    Read Analog Wfm.vi ‏34 KB

    In the attachment is the corrected VI without a wait.
    If I run this corrected VI at runtime speed, I get error -200284.
    If I place a breakpoint between the DAQmx Start and Read Task and run this VI (I will have to push the Continue-Button for the VI to finish), there will be no error.
    Why that behaviour?
    Thomas
    Attachments:
    Read Analog Wfm Correct.vi ‏32 KB

  • Error -1074118625 with PXI-4071 and PXI-2527

    When using the LabVIEW IVI drivers for PXI-4071 and PXI-2527, I receive an error -1074118625 in TestStand.  The sequence initializes the MUX, init DMM, connects the MUX, waits for debounce, and then upon reading from the DMM, I receive this error.
    Error: niDMM Read Waveform (waveform data).viExplanation could not be found for the requested status code.
    Verify that the requested status code is correct.
    [Error Code: -1074118625, User-defined error code.]
    This sequence of events is successfully used multiple times elsewhere in the TestStand.  This error does not appear in any knowledgebase article nor in any help.  Any explanation would be greatly appreciated.
    Solved!
    Go to Solution.

    I found this with google that seems like it might apply:
    http://digital.ni.com/public.nsf/allkb/A593DEBFD86A69C68625727900748EEC

  • Error-200284 with DAQmx

    Hello,
    I am trying to make a continuous reading of analogvoltage signal with DAQPad-6015/6016 using sampling rate of 1000 and number of sample=1000 but the DAQmx is showing 
    Error-200284 saying that the some or all samples requested have not yet been acquired.
    The vi is attached and the images showing the settings of the DAQmx,error mesaage are also attached.
    Can I know to solve this error.
    Thanks.
    Solved!
    Go to Solution.
    Attachments:
    DAQmx_settings.JPG ‏113 KB
    DAQ_method2_error.JPG ‏101 KB
    DAQ_method2.vi ‏22 KB

    John_P1 thanks for your suggestion.
    I will explain a bit clearly of what I am trying to do
    I am trying to use an example vi for adaptive filtering using least mean square but I am confused in modifying the example as per my requirements of
    1)for the first 1 sec acquired samples I want to filter this signal and want to feed this filtered signal as reference signal d(n) and acquired signal as x(n) to adaptive filtering block
    2)After first 1 sec the adaptive filtering vi produces two outputs e(n) and d'(n) .In which the e(n) should be feeded back as input d(n) to the adaptive filtering block and d'(n) is my filtered(required) signal
    This feeding of acquired signal for 1 sec interval as x(n) and the previous noise reference=e(n) as other input as d(n) to the adaptive filtering block should be a continuous process.
    can you help me out in modifying the example vi of filtering as per my requirements.
    Attachments:
    LMS block by block (example).zip ‏76 KB

  • Are there any available vi's for PXI?

    Are there any VI's avaliable for PXI as it is for example VXI?
    Regards
    Henrik

    Hi Henrik,
    What kind of VI's do you need? PXI (PCI Extension for Instrumentation) is based on the PCI bus and you've usually a Windows PXI-Controller or a MXI-4 link (PCI-PCI-Bridge) which controls all boards in a PXI Chassis. There is no difference prgramming differnce between a LabVIEW VI which runs in a PC or in a PXI Controller. For example, it doesn't matter if you've a PCI-6025 DAQ board or a PXI-6025 board. The VI (programming) is the same. Of course, the PXI factor has more synchronisation and trigger capabilities then a PC based system, but there are no special VI's for that. The same DAQ driver handles both.
    I can give you a more detailed answer if you can give more informations. What do you want to do?
    Regards,
    Luca

  • NiScope error list for ni5142 (what is over fetching error?)

    For a PXI-5142 digitizer,
    I have implemented some sample code using simulation drivers (in C), it runs smoothly with simulation but when I run my program with actual hardware after some time I get this error in NI SPY:
    > 2238.  niScope_FetchComplexBinary16 (Digitizer, "0", 0, 256, {0x0000,0x0000,...}, {0x00,0x00,...})
    > Process ID: 0x00000B98         Thread ID: 0x00000BC4
    > Start Time: 12:18:05.062       Call Duration 00:00:00.063
    > Status: 0xBFFA4018
    And the description is :
    The requested data has been over fetching.
    Status Code: -200004
    1- What does over fetching mean? Am I fetching too fast or too slow? Is this a warning or an error?
    2- Where can I find a document describing all possible error messages for different devices (PXI-5142, PXI-5600, PXI-5441, PXI-5610, PXI-5611, PXI-5450, and many other that we have) with more detail?
    Thanks in advance

    Hi dashesy,
    You will get this error when the data requested has been overwritten in the device memory. when Onboard device memory overflows. Because of system and/or bus-bandwidth limitations, the driver could not read data from the device fast enough to keep up with the device throughput.
    Reduce your sample rate, alter the data transfer method (from interrupts to DMA), use a product with more onboard memory, or reduce the number of programs your computer is executing concurrently.
    Hope this helps,
    sunil

  • Error -200284

    pxi-6123 use  pxi-6653 ocxo  and star trigger    
    I want to synchronization pxi-6123 with star trigger and Pxi_trigger2(or other pxi_trigger) from pxi-6653 .But there is error.Can somebody help me? thanks.
    pxi-1042
    slot 1 pxi-8108
    slot 2 pxi-6653
    slot 3----slot 8  pxi-6123
    Attachments:
    OCXC route zz.vi ‏41 KB

    Attachments:
    error -200284.JPG ‏172 KB

  • What is error 200284 with counting ticks?

    Hi,
    I am trying to write a VI that will count ticks of a rotating encoder wheel. I was able to run the test panel in MAX and count total ticks during rotation with no problem.
    Next, I tried writing a VI that would do the same, but, I am getting errors that I do not understand, especially,  " 200284, Some or all of the samples requested have not yet been acquired."  It also tells me to supply an external clock...how do you do that, and how do you know which external clock is the correct one?  I tried many clock options, but, continue to get this error...
    Ultimately, I would like to have a VI that counts ticks per unit time, e.g. ticks/100ms etc.  For now, I am trying just to get it to count total ticks, and I am stuck here.  Really stuck.
    I am using cDAQ 9174 and NI 9401.
    Thanks!!!  Please help!!!
    Dave
    Attachments:
    forum_april_11.vi ‏21 KB

    Hi dav2010,
    An explanation of error -200284 can be found here. Furthermore, I would recommend starting from a shipping example, when developing your counter measurement task. Lastly, the NI cDAQ-917x User Manual contains information about the various counter input applications, starting on page 5-3.
    The default sample mode for the DAQmx Timing.vi is Finite. The sample clock for the counter task(s) may be set to Continuous but if the sample clock is not set to Continuous it is set to the default value (Finite). When the sample clock is set to finite without the samples per channel wired, it will set a default buffer size based on the rate. Once the buffer is full the sample clock stops and the counter task stops latching the counts because the clock source has stopped. The counter task(s) which are set to continuous will continue expecting more clock edges but will timeout giving error 200284 when it doesn't receive any more. Setting the sample clock source to Continuous will allow the clock to continue providing clock edges for the buffered counting task(s).
    Tunde S.
    Applications Engineer
    National Instruments

  • Error 200284 keep showing up with DAQmx/USB6259

    This error of 200284 has been persistantly showing up in my high speed data acqusition using DAQmx Read with USB6259 running LV8.5.1 and DAQmx 8.7.1.  I tried most of the approaches discussed on this forrum regarding this error such as increasing time out and sample rate, but still getting it. I stripped down the application that I recently took over and attached the basic vi..please voice any suggestions, thoughts, solutions, and comments, I really would like to see this code work out as it is our basic stuff.  many thanks in advance. 
    A little more detail...the original code (and this striped down version) would run for a minute or so with the loop index getting to over 20k, or 40k..but most likely stop before 60k with unpredictable numbers...thanks again for taking a look at the vi.
    Bryan 
    Message Edited by BryanL on 02-15-2009 02:26 PM
    Attachments:
    SampleVI.vi ‏75 KB

    Hi Doug,
    First thank you so much for the help and support.  I went to restart the NI variable engine and disabled the ZoneAlarm and firmwall, the variable engin now runs and not stopped, but the VI still stopps with the error 200284. Anythings else you think might be the issue here?  I really need to get this thing working as I have been on it for a few days now...please help.  Thanks again.  I have also copy and paste my post and that of Dansch here to give more background info:
    Hi Dansch,
    Thank you for looking into this issue!  I have compiled a reply to your comments and questions in the following quoted message: 
    dansch wrote:
    Hi Bryan,
    I
    took a look at your code, and after modifying the analog output
    channel, I was able to run it fine for a very long time on a PCI-6251
    board without any errors.
    Our
    original code also runs ok with our PCI boards, only after we switch to
    USB then we have this problem of error 200284 stopping the acquisition.
    The code also runs ok on one laptop with older USB (XP service pack 1),
    the two laptops with newer USB2.0 always have problems with error
    200284 on one and 200279 on the other(XP Service Pack 3).  I am trying
    to get the one with 200284 to work.
    One
    thing that I am interested in is the analog output task that you are
    referencing, since I am unable to see what type of setup you have
    configured for this channel. I am interested in knowing why the analog
    input task is using the ao/sampleclock as the source for its sample
    clock rather than the other way around (ao channel using the
    ai/sampleclock).
    The
    was not clear about the logic of the triggering setup of the
    initialization step, however, the analog output task used the task
    input setup from MAX, this also triggers the timing on the analog
    input.  The output chain is for running a light source with a wave form
    generated by a separated VI using the waveform parameters as shown on
    the front panel of my attached SampleVI.  This source runs
    continuesouly with the same waveform  function.  The input chain reads
    a detector contineously as DAQmx Read was put into the while loop. The
    start of the output waveform was triggered by the input chain so that
    the light source and data acquisition are synchronized.   We never had
    problem to start the data acquisition as we always read the correct
    waveform back.  The error seem to alway came from the DAQmx Read
    function in the while loop as the code on the left side of the while
    loop onlys runs once, while the while loop will keeping running, until
    it stops a minute or so later by the error 200284.
    Usually,
    when this type of -200284 error occurs, it is due to a problem with not
    receiving a trigger or sample clock edges. Perhaps something is
    happening to the analog output task that is affecting the analog input
    channel since it is using the ao/sampleclock.
    I will check further on the output task setup in MAX..if this is the issue, what is the recommended setup for the output task? 
    A
    couple of other things I would like to know more about are why you are
    reading just a single sample each loop iteration and also what your
    application involves since I noticed the program samples numerous times
    on the first channel for each single sample on the others. What overall
    rate are you trying to accomplish as well? Please let me know if you
    have any additional insight into your application. Regards,
    I
    was only reading a single sample for the demo purpose as it generates
    similar error as in the original application where we read all
    channels. The first channel is where the detector response are read and
    are accessed at the highest frequency.  That is why we build 992
    instances for this channel and leave the other 8 channels to read some
    other environmental parameters which happens at a less frequent time.
    This allows us to keep data acquisition going without restart other
    tasks. This was recommended by an NI engineer earlier to another
    enginer here and was work fine. 
    The following are some of our input parameters:
    On
    the Outuput side:  Waveform Scan Rate or Frequency (Hz): 1000    Number
    of Points in Waveform is 1000,  Waveform Update Rate is: 1000000/s,
    this final rate goes to output timing VI 
    On
    the Input side:      Number of Sample Spectrum (total numb. of
    channels) 1000.  Number slow channels: 8.   Input sample rate:
    1000000(Hz). This rate/1000=1000/s goes to the input timing VI 
    Please
    let me know if you need more info, if you do not mind, could you please
    send me a number and best time to call?  Many thanks.
    Bryan

  • Error -200284 not responding well to suggested fixes

    I get error -200284 when running labVIEW to acquire voltages.  Your suggested fixes are disabling the timeout feature (which makes the program just sit there and do nothing) or increase the sampling rate (I was using 1.5 kHz, and when I increase it to 10kHz, it will take 6 seconds of data, display it, pause, and take 6 more seconds of data and repeat rather than just continually sampling like it should).  Any ideas?

    It sounds like you probably have the correlation between the Sample Rate and Number of Samples setup incorrectly. Normally you want to keep this at a 10:1 ratio of Rate to Samples on a Continuous Acquisition.
    If you are sampling at 10kHz and it takes 6 seconds to returns data, you must have the Number of Samples set to 60,000? At 10kHz, you're getting 10,000 samples per second. If you had this same Number of Samples with a rate of 1.5kHz, it would take 40 seconds to acquire 60,000 samples. That's why you are getting the error. So if you follow the 10:1 rule, at 10kHz, getting 1000 samples would 100ms.
    The Number of Samples input specifies how many samples to acquire each time the Read vi runs. Normally for a continuous acquisition you acquire a small number of sample per loop iteration.
    Does that help at all?
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • How to create a error message for Deleted batch while creating a PO

    Hi ,
    Can any body tell me how to create error message for a deleted batch while creating a PO in ME21n,
    when a PO is created for a deleted batch at GI &GR lebel it is showing  a error message,
    but i want to show a error message while doing the PO creation.
    Thanks,
    Sachhi

    in badi  me_process_po_cust u can  put this message
    METHOD if_ex_me_process_po_cust~check.

  • Error BACKINT for Oracle Connection

    hi @ maxdb gurus...
    i have a problem backing up my maxdb 7.6.0.033 (serving for a mysap.erp2005 on aix 5.3) using the backint mechanism.
    -> backup media created: two pipes and one parallel medium containing these pipes
    -> bsi.env has been created
    -> backint4sapdb.sar contains
       4 staging areas each with 4096 MB
       files per backint call 2
    -> maxdb is about 57 gb perm. data area (and 6 gb temp.)
    i use the backup wizard (dbmgui) to invoke a complete data backup which starts (pipes are created in the file system) and runs until approx. 4 gb...then the backup terminates with error "-24920 backup operation was unsuccesful. The database request failed with error -8020"
    what might be the problem? are the staging areas too small? is says that when using only one stage area it must hold the complete database...can i then conclude that 4 staging areas must hold the database as well - meaning they must be around 15 gb each?
    GreetZ, AH

    yup...but that also means that the sum of the staging areas need as much space as the database ie. around 70 gigs netto! the staging files will be filled and thus grow until the defined size, meaning that the file system(s) need to be big enough!
    everything works fine until the stage files are filled (up to the defined size) and then stops...when i change the sizes of the staging areas i can reproduce the error!
    i compared the tsm implementation of that system with another system (live cache...kind of small regarding db size...) and found nothing serious...
    -> dbm.ebp (AIX 5.3, MaxDB 7.6.0.033, ERP2005, TSM 5.3.3.0)
    2006-11-09 13:56:50
    Using environment variable 'TEMP' with value '' as directory for temporary files and pipes.
    Using environment variable 'TMP' with value '' as directory for temporary files and pipes.
    Using connection to Backint for MaxDB Interface.
    2006-11-09 13:56:50
    Checking existence and configuration of Backint for MaxDB.
        Using configuration variable 'BSI_ENV' = '/sapdb/data/wrk/TDV/bsi.env' as path of the configuration file of Backint for MaxDB.
        Setting environment variable 'BSI_ENV' for the path of the configuration file of Backint for MaxDB from '/sapdba/data/wrk/TDV/bsi.env' to configuration value '/sapdb/data/wrk/TDV/bsi.env'.
        Reading the Backint for MaxDB configuration file '/sapdb/data/wrk/TDV/bsi.env'.
            The following line of the Backint for MaxDB configuration file does not start with a proper keyword and is ignored:
            The following line of the Backint for MaxDB configuration file does not start with a proper keyword and is ignored:
            The following line of the Backint for MaxDB configuration file does not start with a proper keyword and is ignored:
            The following line of the Backint for MaxDB configuration file does not start with a proper keyword and is ignored:
            Found keyword 'BACKINT' with value '/sapdb/TDV/db/bin/backint'.
            The following line of the Backint for MaxDB configuration file does not start with a proper keyword and is ignored:
            Found keyword 'INPUT' with value '/sapdb/TDV/backup/backint4sapdb.in'.
            Found keyword 'OUTPUT' with value '/sapdb/TDV/backup/backint4sapdb.out'.
            Found keyword 'ERROROUTPUT' with value '/sapdb/TDV/backup/backint4sapdb.err'.
            The following line of the Backint for MaxDB configuration file does not start with a proper keyword and is ignored:
            Found keyword 'PARAMETERFILE' with value '/sapdb/data/wrk/TDV/backint4sapdb.par'.
            Found keyword 'TIMEOUT_SUCCESS' with value '6000'.
            Found keyword 'TIMEOUT_FAILURE' with value '300'.
        Finished reading of the Backint for MaxDB configuration file.
        Using '/sapdb/TDV/db/bin/backint' as Backint for MaxDB program.
        Using '/sapdb/TDV/backup/backint4sapdb.in' as input file for Backint for MaxDB.
        Using '/sapdb/TDV/backup/backint4sapdb.out' as output file for Backint for MaxDB.
        Using '/sapdb/TDV/backup/backint4sapdb.err' as error output file for Backint for MaxDB.
        Using '/sapdb/data/wrk/TDV/backint4sapdb.par' as parameter file for Backint for MaxDB.
        Using '6000' seconds as timeout for Backint for MaxDB in the case of success.
        Using '300' seconds as timeout for Backint for MaxDB in the case of failure.
        Using '/sapdb/data/wrk/TDV/dbm.knl' as backup history of a database to migrate.
        Using '/sapdb/data/wrk/TDV/dbm.ebf' as external backup history of a database to migrate.
        Checking availability of backups using backint's inquire function.
    Check passed successful.
    2006-11-09 13:56:50
    Checking medium.
    Check passed successfully.
    2006-11-09 13:56:50
    Preparing backup.
        Setting environment variable 'BI_CALLER' to value 'DBMSRV'.
        Setting environment variable 'BI_REQUEST' to value 'NEW'.
        Setting environment variable 'BI_BACKUP' to value 'FULL'.
        Constructed Backint for MaxDB call '/sapdb/TDV/db/bin/backint -u TDV -f backup -t file -p /sapdb/data/wrk/TDV/backint4sapdb.par -i /sapdb/TDV/backup/backint4sapdb.in -c'.
        Created temporary file '/sapdb/TDV/backup/backint4sapdb.out' as output for Backint for MaxDB.
        Created temporary file '/sapdb/TDV/backup/backint4sapdb.err' as error output for Backint for MaxDB.
        Writing '/sapdb/TDV/backup/back-tdv-data-m10.pipe #PIPE' to the input file.
        Writing '/sapdb/TDV/backup/back-tdv-data-m11.pipe #PIPE' to the input file.
    Prepare passed successfully.
    2006-11-09 13:56:51
    Creating pipes for data transfer.
        Creating pipe '/sapdb/TDV/backup/back-tdv-data-m10.pipe' ... Done.
        Creating pipe '/sapdb/TDV/backup/back-tdv-data-m11.pipe' ... Done.
    All data transfer pipes have been created.
    2006-11-09 13:56:51
    Starting database action for the backup.
        Requesting 'SAVE DATA QUICK TO '/sapdb/TDV/backup/back-tdv-data-m10.pipe' PIPE,'/sapdb/TDV/backup/back-tdv-data-m11.pipe' PIPE BLOCKSIZE 8 NO CHECKPOINT MEDIANAME 'BACK-TDV-DATA-G1'' from db-kernel.
    The database is working on the request.
    2006-11-09 13:56:51
    Waiting until database has prepared the backup.
        Asking for state of database.
        2006-11-09 13:56:51 Database is still preparing the backup.
        Waiting 1 second ... Done.
        Asking for state of database.
        2006-11-09 13:56:52 Database is still preparing the backup.
        Waiting 2 seconds ... Done.
        Asking for state of database.
        2006-11-09 13:56:54 Database is still preparing the backup.
        Waiting 3 seconds ... Done.
        Asking for state of database.
        2006-11-09 13:56:57 Database is still preparing the backup.
        Waiting 4 seconds ... Done.
        Asking for state of database.
        2006-11-09 13:57:01 Database is still preparing the backup.
        Waiting 5 seconds ... Done.
        Asking for state of database.
        2006-11-09 13:57:06 Database has finished preparation of the backup.
    The database has prepared the backup successfully.
    2006-11-09 13:57:06
    Starting Backint for MaxDB.
        Starting Backint for MaxDB process '/sapdb/TDV/db/bin/backint -u TDV -f backup -t file -p /sapdb/data/wrk/TDV/backint4sapdb.par -i /sapdb/TDV/backup/backint4sapdb.in -c >>/sapdb/TDV/backup/backint4sapdb.out 2>>/sapdb/TDV/backup/backint4sapdb.err'.
        Process was started successfully.
    Backint for MaxDB has been started successfully.
    2006-11-09 13:57:06
    Waiting for end of the backup operation.
        2006-11-09 13:57:06 The backup tool is running.
        2006-11-09 13:57:06 The database is working on the request.
        2006-11-09 13:57:11 The backup tool is running.
        2006-11-09 13:57:11 The database is working on the request.
        2006-11-09 13:57:21 The backup tool is running.
        2006-11-09 13:57:21 The database is working on the request.
        2006-11-09 13:57:36 The backup tool is running.
        2006-11-09 13:57:36 The database is working on the request.
        2006-11-09 13:57:56 The backup tool is running.
        2006-11-09 13:57:56 The database is working on the request.
        2006-11-09 13:58:21 The backup tool is running.
        2006-11-09 13:58:21 The database is working on the request.
        2006-11-09 13:58:51 The backup tool is running.
        2006-11-09 13:58:51 The database is working on the request.
        2006-11-09 13:59:21 The database has finished work on the request.
        Receiving a reply from the database kernel.
        Got the following reply from db-kernel:
            SQL-Code              :-8020
            Date                  :20061109
            Time                  :00135703
            Database              :TDV
            Server                :r4335
            KernelVersion         :Kernel    7.6.00   Build 033-123-130-873
            PagesTransfered       :377688
            PagesLeft             :6903331
            MediaName             :BACK-TDV-DATA-G1
            Location              :/sapdb/TDV/backup/back-tdv-data-m10.pipe
            Errortext             :end of file
            Label                 :DAT_000000017
            IsConsistent          :true
            FirstLogPageNo        :247812
            DBStamp1Date          :20061109
            DBStamp1Time          :00135651
            BDPageCount           :7280971
            DevicesUsed           :2
            DatabaseID            :r4335:TDV_20061109_135703
            Max Used Data Page    :0
            Converter Page Count  :5201
        2006-11-09 13:59:21 The backup tool is running.
        2006-11-09 13:59:22 The backup tool process has finished work with return code 2.
        2006-11-09 13:59:22 The backup tool is not running.
    The backup operation has ended.
    2006-11-09 13:59:22
    Filling reply buffer.
        Have encountered error -24920:
            The backup tool failed with 2 as sum of exit codes. The database request failed with error -8020.
        Constructed the following reply:
            ERR
            -24920,ERR_BACKUPOP: backup operation was unsuccessful
            The backup tool failed with 2 as sum of exit codes. The database request failed with error -8020.
    Reply buffer filled.
    2006-11-09 13:59:22
    Cleaning up.
        Removing data transfer pipes.
            Removing data transfer pipe /sapdb/TDV/backup/back-tdv-data-m11.pipe ... Done.
            Removing data transfer pipe /sapdb/TDV/backup/back-tdv-data-m10.pipe ... Done.
        Removed data transfer pipes successfully.
        Copying output of Backint for MaxDB to this file.
        ---------- Begin of output of Backint for MaxDB (/sapdb/TDV/backup/backint4sapdb.out)----------
            Reading parameter file /sapdb/data/wrk/TDV/backint4sapdb.par.
            Using staging area /sapdb/TDV/backup/stage1 with a size of 1585446912 bytes.
            Using staging area /sapdb/TDV/backup/stage2 with a size of 1585446912 bytes.
            Using 1 file per Backint for Oracle call.
            Using /sapdb/TDV/dbs/backint as Backint for Oracle.
            Using /sapdb/TDV/dbs/initTDV.utl as parameterfile of Backint for Oracle.
            Using /sapdb/data/wrk/TDV/backint4oracle.his as history file.
            Using /sapdb/TDV/backup/backint4oracle.in as input of Backint for Oracle.
            Using /sapdb/TDV/backup/backint4oracle.out as output of Backint for Oracle.
            Using /sapdb/TDV/backup/backint4oracle.err as error output of Backint for Oracle.
            Using a maximal delay for a Backint for Oracle call of 60 seconds.
            Reading input file /sapdb/TDV/backup/backint4sapdb.in.
            Backing up pipe /sapdb/TDV/backup/back-tdv-data-m10.pipe.
            Backing up pipe /sapdb/TDV/backup/back-tdv-data-m11.pipe.
            Found 2 entries in the input file.
            Starting the backup.
            Starting pipe2file program(s).
            Waiting for creation of temporary files.
            1 temporary file is available for backup.
            Calling Backint for Oracle at 2006-11-09 13:59:20.
            Calling '/sapdb/TDV/dbs/backint -u TDV -f backup -t file -p /sapdb/TDV/dbs/initTDV.utl -i /sapdb/TDV/backup/backint4oracle.in -c' .
            Backint for Oracle ended at 2006-11-09 13:59:20 with return code 2.
            Backint for Oracle output:
            Backint for Oracle output:                          Data Protection for mySAP(R)
            Backint for Oracle output:
            Backint for Oracle output:              Interface between BR*Tools and Tivoli Storage Manager
            Backint for Oracle output:              - Version 5, Release 3, Modification 2.0  for AIX LF 64-bit -
            Backint for Oracle output:                    Build: 275  compiled on Nov 20 2005
            Backint for Oracle output:         (c) Copyright IBM Corporation, 1996, 2005, All Rights Reserved.
            Backint for Oracle output:
            Backint for Oracle output: BKI2027I: Using TSM-API version 5.3.3.0 (compiled with 5.3.0.0).
            Backint for Oracle output: BKI2000I: Successfully connected to ProLE on port tdpr3ora64.
            Backint for Oracle output: BKI0005I: Start of program at: Thu Nov  9 13:59:20 MEZ 2006 .
            Backint for Oracle output: BKI5014E: Tivoli Storage Manager Error:
            Backint for Oracle output: ANS1035S (RC406)  Options file '*' could not be found.
            Backint for Oracle output:
            Backint for Oracle output: BKI0020I: End of program at: Thu Nov  9 13:59:20 MEZ 2006 .
            Backint for Oracle output: BKI0021I: Elapsed time: 00 sec .
            Backint for Oracle output: BKI0024I: Return code is: 2.
            Backint for Oracle output:
            Backint for Oracle error output:
            Finished the backup unsuccessfully.
            #ERROR /sapdb/TDV/backup/back-tdv-data-m10.pipe
            #ERROR /sapdb/TDV/backup/back-tdv-data-m11.pipe
        ---------- End of output of Backint for MaxDB (/sapdb/TDV/backup/backint4sapdb.out)----------
        Removed Backint for MaxDB's temporary output file '/sapdb/TDV/backup/backint4sapdb.out'.
        Copying error output of Backint for MaxDB to this file.
        ---------- Begin of error output of Backint for MaxDB (/sapdb/TDV/backup/backint4sapdb.err)----------
            Backint for Oracle was unsuccessful.
        ---------- End of error output of Backint for MaxDB (/sapdb/TDV/backup/backint4sapdb.err)----------
        Removed Backint for MaxDB's temporary error output file '/sapdb/TDV/backup/backint4sapdb.err'.
        Removed the Backint for MaxDB input file '/sapdb/TDV/backup/backint4sapdb.in'.
    Have finished clean up successfully.
    i invoke the backup through dbmgui, not dbmcli!
    any clues? thx in advance!
    GreetZ, AH

Maybe you are looking for

  • NO sound on HDTV connected to iMac

    I'm trying to connect my iMac to my Panasonic HDTV (model TH42PZ80U). I've connected an Apple Mini DVD-to-DVI cable to a DVI-to-HDMI cable. Then I'm connected to HDMI port 2 on the TV. Video from my iMac is working great on the HDTV! However, when I

  • Lumia 625 4G Stuck in airplane mode after flash fr...

    while updating my phone OTA it's stucked and then i flashed it using nokia care suite. after all finished and reboot the phone.and when its power up it's on airplane mode & cannot off the airplane mode.allways on when try off.i also tryed 8.1 update.

  • SMD agent passowrd issue

    Hi Experts,                   In our solution manger system, we forgot the SMD agent password. without i can't able to do EWA for java stack. So kindly help me to how to reset the password for this. Thanks & Regards, Sampath.

  • Problem doing a reDirect

    My application has a Login page which then brings me to my homepage home.jsp On this page I fill out fields which populates my backing bean and then with some Action I get forwarded to b.jsp I do other stuff here and everything's fine until ...... I

  • I need a recommended way of recovering from Bus Off errors

    I have write problems when a UUT is instructed to reset. When the UUT in the reset state I get Error Passive warnings and Bus Off errors after attempting to write extended CAN messages using the Frame API. In brief the test goes like this, 1. I send