Denormalization with overlapping time intervals

The table keeps statuses for objects, along with times each status started and ended. Like:
ID   From   To   Status
===  ====   ==   ======
23   T1     T2    S1
23   T3     T4    S2
23   T5     T6    S3The statuses may start and end at arbitrary moments of time, and each object may have several statuses at the same time. So the time intervals in the above table may look like this:
T1------------T2
    T3----------------------T4
         T5----------T6So, for example, from T! to T3 the object has only S1, while from T5 to T2 it has all 3: S1, S2, and S3.
I need to denormalize the table and show in the same line all statuses the object is having at different time intervals, that is
ID   From   To   Status1  Status2  Status3
===  ====   ==   ======   =======  =======
23   T1     T3    S1
23   T3     T5    S1       S2
23   T5     T2    S1       S2       S3
23   T2     T6    S2       S3
23   T6     T4    S2

SQL> with t as (select trunc(sysdate) dt from dual),
  2       t1 as (select 23 ID, dt From_dt, dt+10 To_dt, 'S1' Status from t union all
  3              select 23 ID, dt+3 From_dt, dt+18 To_dt, 'S2' Status from t union all
  4              select 23 ID, dt+7 From_dt, dt+14 To_dt, 'S3' Status from t)
  5              select * from t1
  6  /
        ID FROM_DT     TO_DT       STATUS
        23 04.08.2007  14.08.2007  S1
        23 07.08.2007  22.08.2007  S2
        23 11.08.2007  18.08.2007  S3
SQL>
SQL> with t as (select trunc(sysdate) dt from dual),
  2       t1 as (select 23 ID, dt From_dt, dt+10 To_dt, 'S1' Status from t union all
  3              select 23 ID, dt+3 From_dt, dt+18 To_dt, 'S2' Status from t union all
  4              select 23 ID, dt+7 From_dt, dt+14 To_dt, 'S3' Status from t),
  5       t2 as (select id,from_dt begdt from t1
  6               union all
  7              select id,to_dt from t1),
  8       t3 as  (select t2.*, lead(begdt) over(partition by id order by begdt) enddt from t2)
  9       select t3.*,
10              (select status from t1 where t3.id=t1.id and greatest(t1.from_dt,t3.begdt)<least(t1.to_dt, t3.enddt) and t1.status='S1') Status1,
11              (select status from t1 where t3.id=t1.id and greatest(t1.from_dt,t3.begdt)<least(t1.to_dt, t3.enddt) and t1.status='S2') Status2,
12              (select status from t1 where t3.id=t1.id and greatest(t1.from_dt,t3.begdt)<least(t1.to_dt, t3.enddt) and t1.status='S3') Ststus3
13               from t3
14        where enddt is not null
15        order by 2
16  /
        ID BEGDT       ENDDT       STATUS1 STATUS2 STSTUS3
        23 04.08.2007  07.08.2007  S1             
        23 07.08.2007  11.08.2007  S1      S2     
        23 11.08.2007  14.08.2007  S1      S2      S3
        23 14.08.2007  18.08.2007          S2      S3
        23 18.08.2007  22.08.2007          S2     
SQL>PS
there's a problem in vizualization on the forum.
all GREATEST() < LEAST()

Similar Messages

  • 'Overlapping Time Intervals' error while loading the Master Data

    Guys,
              Need you help with this. I am trying to load the Master Data (attribute) for InfoObject 0FMD_FRSITM using DTP from DataSource 0FMD_FRSITM_ATTR and am getting an error 'Overlapping Time Intervals'.
    This is happening due to overlapping Valid From/Valid To date's for the same Financial Statement Item (0FMD_FRSITM) with different Editions.
    If I select the option 'Ignore Duplicate Records' while loading the data, it is successful. But not all the records are loads and Editions are missing.
    Below is an example of how the data looks like.
    FRSITM         Valid To                  Valid From                 Edition
    1001             12/31/9999             04/01/2010                2010.1.1
    1001             01/31/2010             03/01/2010                2010.1.2
    1001             12/31/9999             02/01/2010                2010.1.3
    In the above scenario, the Valid To Data for record 1 and record 3 is the same (12/31/9999) and the record 3 is being ignore when I select the option 'Ignore Duplicate Records'.
    And also I see that the Edition is not the Key Field.
    Any suggestions or ideas? Appreciate your help.
    Thanks.

    FRSITM Valid To Valid From Edition
    1001 12/31/9999 04/01/2010 2010.1.1
    1001 01/31/2010 03/01/2010 2010.1.2
    1001 12/31/9999 02/01/2010 2010.1.3
    1. While selecting ignore duplicate, make sure to-date is not part of symantic key.
    2. if system comes across two same records it picks up the latest one.
    3. It shall merge the timelines is overlap is found.
    4. I hope Edition is time dependent attribute
    I believe infoobjet key is FRSITM Valid To.
    In your case because first record has more period and may be the latets record system ignore the earlier one with the same time interval.
    have a look at Q table and you shall be able to figure out for your self.
    Hope it helps
    Vikash

  • DTP got failes due to overlapping time intervals of data records

    Hi,
    Can any one suggest me how to solve this issue....
    the problem is when iam loding Master Data DTP, the DTP is showing error message that Overlapping time intervals of data records.I mean the start data and end data for these error records are same.
    Eg: For some employees the start date and end data are same.
    Please advice , what can be done...
    Immediate reply is realy appreciated.

    Hi Shaik,
    By checking this check box ...
    You won't get any duplicate records, before loading the data DTP removes the duplicate records and loads into Master data.
    So, you can avoid the duplicate records by checking this.
    Regards,
    Ravi Kanth

  • Saving data with automatic time intervals

    Hi everyone
    I am a new user with LabVIEW (I just started using it 3 weeks ago) and I am having a problem with data recording and saving.
    Basically, what we want to do is to monitor data for four different variables countinuosly but saving them in automatic and specified time intervals. Specifically, we would like to save data countinuosly only for five minutes each hour. After the 5 minutes, only the saving function must be stopped for 1 hour then return to record for 5 minutes without shutting the major loop. Additionally, we would like to collect all the data in this way in one exel file per day for three weeks or more, so instead of creating a data file for each recording we would like to collect them in only one file per day.
    Finally, if its possible, we would like to extract the mean of the data for one day in a single file.  We are not interested in modifying the rate of data aquisition, we only want to focus on the saving rate. We tried many timed function (as Elapsed time, Time delay, Wait) and timed loops but it was impossible for us to syncronize different loops or to set up timing function for the saving issue without blocking the main loop work.
    Data are collected throught the "write to measurement file" function.
    any kind of help will be really appreciated!
    Here we submit our front panel and block diagram of our VI.
    Best regards
    Solved!
    Go to Solution.
    Attachments:
    Hypoxia 21-05-2014 Monitoring.vi ‏451 KB

    Use a shift register to keep track of your start time.  If the difference between the start time and the current time is less than 5 minutes, save the data.  If the time difference is an hour, save the new time as the start time.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Overlapping time intervals of data record 33 with 34 ,46 with 47 etc..

    Hi Freinds,
    when i was trying to load master data getting the below error message in DTP/Info package.
    The time interval ['20070920 '/' 20070702] & (from/to) for the data records 33 and 34 & overlaps in charecterstics 0HRPOSITION &.
    Can you please explain me how to correct this error.
    Your input 'll be much appreciated and points 'll be assgin.
    Regards,
    Syam

    Hi Gurus,
    Please see the below error message which i got when i was trying to load master data attributes to HR infoobject.
    Diagnosis:
        The time interval ['20070920'/'20070702'] & (from/to) for the data
        records 33 & and 34 & overlaps in characteristic 0HRPOSITION &.
    System Response
    Procedure
        If this message appears during a data load, maintain the attribute in
        the PSA maintenance screens. If this message appears in the master data
        maintenance screens, leave the transaction and call it again. This
        allows you to maintain your master data.
    Procedure for System Administration
    Out 1000 records getting error for 12 records.
    I could n't find in infopackage that Ingnore Duplicate Records and that info object is time dependent.
    Please put some inputs to solve this issue.
    Points 'll awarded for helpul answers.
    Thnaks,
    Syam

  • Overlapping Time intervals of data record 33 with 44,46 with 47 so on...

    Hi Friends,
    when i was trying to load the master data attributes to info object getting the bellow error message:
    Diagnosis
        The time interval ['20070920'/'20070702'] & (from/to) for the data
        records 33 & and 34 & overlaps in characteristic 0HRPOSITION &.
    System Response
    Procedure
        If this message appears during a data load, maintain the attribute in
        the PSA maintenance screens. If this message appears in the master data
        maintenance screens, leave the transaction and call it again. This
        allows you to maintain your master data.
    Procedure for System Administration
    Geeting error for 12 records out of 1200.
    Already my info object is time dependent master data.
    to ignore the dulpicate records i couldn't find any option in that info package..
    please let me know the error ...
    points 'll be assigned for helpul answers..
    Regards,
    Syam

    Hi ,
    You can go for PSA maintainance   or
    If u r using DTP then in DTP Ececution screen under Update tab there is a check box
    Handel the duplicate records
    click it and activate the DTP and Execute.
    Thanks
    RK

  • How-To allow records with Overlapping Time from SAP R/3

    Hi guys,
    Made reference to SAP Note 336229.
    Maintained my Transfer Rules of <b>Data Source 0HR_PA_PA_1</b> to <b>Info Source 0HR_PA_PA_1</b> and all is green! Unfortunately, still <b>NO</b> data and error IDOC message is " <i>The data request was a full update. In this case, the corresponding table in the source system does not contain any data</i>."
    "<i>The extractor of the DataSource reads the master data tables of the Employee (0EMPLOYEE) and person (0PERSON) InfoObjects and makes changes to these time-dependent attributes available as headcount changes</i>"...<b>says SAP</b>
    Info Object person (0PERSON) works!!!, however Info Object(0EMPLOYEE) is giving me problem whereby <b>in SAP R/3</b> Data Source (Employee - Education and Training) 0EMPLOYEE_0022_ATTR <u>allows</u> time overlapping of records, <b>BUT BW</b> generates an error " The time interval ['99991231'/'19930104'] & (from/to) for the data records 46 and 47 overlaps in characteristic 0EMPLOYEE "
    For example, lets assume there is Employee X with the following entry in SAP R/3.
    Begin Date||| End Date ||| SubType
    01.09.2003||| 01.09.2004||| Professional Cert.
    01.09.2003||| 01.09.2006||| Degree
    SAP R/3 allows this overlapping of time records however, BW does NOT. How can I tackle this overlapping issue in SAP BW?
    With much appreciation!

    Hi guys,
      Please assist to resolve this.
      I attempted to assigned 0DATETO and 0DATEFROM to my attributes of 0EMPLOYEE, but it gives me the following error
    <b>  Characteristic 0EMPLOYEE: Attribute 0DATETO cannot be used w. time-dependent attribte</b>
    <b>  InfoObject 0DATETO cannot be used as an attribute if attibutes already exist that are time-dependent. Attribute 0ANSALARY is such an attribute. A field in the InfoObject 0DATETO is automatically generated in the master data table.</b>
      Once again, what I want is to be able to allow the Records with HighDate in R/3 into my BW Cubes.
      Please please assist !

  • Create waveform from a set of points with differtent time intervals

    Hello,
    I would like to create a waveform from a set of points like this
    Time           Data
    0                 0
    0,5              1
    0,6              2
    1                 1
    2                 0
    5                 1
    The problem is that the time interval between each points are not the same.
    The only idea I found was to create a waveform for each doublet of points with the same rate (100ms) and than to append them together.
    Does anybody have a better idea?
    Regards,
    Risotto.

    If you use a Wave From data type, re-sampling is not required.
    When using a WF datatype the chart (graph) will pick-up the X value from the t0 of the waveform.
    The trick is to just build an array of the single update value and make sure the t0 value is correct.
    Re-create this example
    and try it for yourself.
    Ben
    Note: make sure the data you pass is consistant with the data already displayed. If you post a t0 value that is older than what is already displayed, the chart will clear the display and start over.
    Message Edited by Ben on 09-15-2006 11:49 AM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    WF_Datatype.JPG ‏59 KB

  • Query on batch jobs with overlapping time during execution time

    Dear experts,
    This post is related to a task in SAP SCM EM module and currently I am working on an archival activity that comprises of two tasks to be done through 2 different programs (scheduled through batch jobs)
    Job 1 is created to deactivate particular Event Handler records (changing a status field on the EH record)
    Job 2 (archival job) runs daily and writes deactivated EHs to a local file and subsequently deletes this from SAP server.
    Archival job takes an average of 30 hrs to complete .
    Therefore my query is on how to schedule Job1, as these seem to be dependent and might impact each other in unexpected manner.
    Please advise.
    Thanks & regards,
    Mohan

    Hi Mohan,
    You can try as Daniel suggested. Delay Archieving job or can run after deactivating Event Handler records job is finished. Check any parallel processing is available or not.
    It can stop your overlapping issue and can increase your performance.
    Thanks,
    Bala.

  • Multispeed control of motor with time intervals

    hi all
                 i want write a program that can control speed of a servo motor with respect to time intervals or hold time,
    i am enabling the drive throught digital output and speed by analoge output to the drive
    The program should be such that (Multistep Speed Control with respect to time)
    For example
    Step 1     Rpm:    100  Time Duration : 2mins
    Step 2     Rpm:    200  Time Duration : 2mins
    Step 3     Rpm:    300  Time Duration : 2mins
    Step 2     Rpm:    200  Time Duration : 24mins
    Test duration 30mins
    can any one  help to write the program 

    Hi hs_unl,
    Could tell me more about the ProboStep MicroStepping Driver, the links you provided are the same and they point to the stepper motor.
    As far as the USB 6009 you will need the DAQmx drivers which you can find here. There are many examples that come with the LabVIEW, however it all depends on what kind of signals need to go to the MicroStepping Driver. Also, you can take a look at Getting Started with NI-DAQmx guide to get started with programming. Also, take a look at Learn 10 Functions in NI-DAQmx and Handle 80 Percent of Your Data Acquisition Applications tutorial page.
    Regards,
    Jignesh P

  • AS01 Asset Master - Problem with Cost Center in Time Intervals

    Hello experts,
    I need your help to solve this problem, in the tab Time-dependent - More Intervals - Overview of time intervals
    When i add a new interval and change the Cost Center, the system modify all the previos intervals setting the last Costo Center to all, i dont know why the system do that, thanks.

    Hi Gaetano,
    check that the prerequisites which are explained in [Note 684659|https://service.sap.com/sap/support/notes/684659] are fulfilled.
    I assume that you are on a release R/3 Enterprise or higher.
    - KOSTL activated in ACSET
    - cost element existing
    - field status allows KOSTL in the account
    - cost center maintained in asset master record
    Regards,
    Markus

  • How to find out the names which have overlapping times

    Hello:
    I've a table which contains some names and their calling time period. I need to find out which of those names have overlapping time period.
    Name|StartTime|EndTime
    A|26/3/2011 12:33:16 PM|26/3/2011 12:40:10 PM
    A|26/3/2011 12:41:28 PM|26/3/2011 12:43:19 PM
    A|26/3/2011 12:42:28 PM|26/3/2011 12:47:50 PM
    B|26/3/2011 10:22:28 PM|26/3/2011 10:50:10 PM
    B|26/3/2011 10:49:28 PM|26/3/2011 10:53:50 PM
    B|26/3/2011 10:50:28 PM|26/3/2011 10:59:50 PM
    B|26/3/2011 10:59:58 PM|26/3/2011 11:10:50 PM
    C|26/3/2011 11:05:58 PM|26/3/2011 11:10:50 PM
    C|26/3/2011 11:40:58 PM|26/3/2011 11:50:50 PM
    I need those names which have multiple calls and one call starts before the end of another call. If anyone have four calls and two of those overlapped (A has two overlapping and B has three overlapping), that name should also come into my list like below:
    Name|Overlapping_Count
    A|1
    B|2
    Can anyone help me please?
    Thanks/Razin

    Thans for pointing out the error in my post. It seems, being rather busy in this period, I'm starting to wear out as I missed the fact the overlaps would be returned twice. :(
    I had in mind a more general case where as single row overlaps with more than one other row.
    The OP's data contained one to one overlaps only and it seems no generalized approach was needed.
    with
    the_data as
    (select 'A' name,to_date('26/03/2011 12:33:16','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 12:40:10','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'A' name,to_date('26/03/2011 12:41:28','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 12:43:19','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'A' name,to_date('26/03/2011 12:42:20','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 12:42:50','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'A' name,to_date('26/03/2011 12:42:28','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 12:47:50','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'B' name,to_date('26/03/2011 10:22:28','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 10:50:10','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'B' name,to_date('26/03/2011 10:49:28','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 10:53:50','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'B' name,to_date('26/03/2011 10:50:28','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 10:59:50','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'B' name,to_date('26/03/2011 10:59:58','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 11:10:50','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'C' name,to_date('26/03/2011 11:05:58','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 11:10:50','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'C' name,to_date('26/03/2011 11:40:58','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 11:50:50','dd/mm/yyyy hh24:mi:ss') end_time from dual
    select name,count(distinct overlap) overlapping_count
      from (select x.name,to_char(greatest(x.start_time,y.start_time),'yyyymmddhh24miss')||'|'||to_char(least(x.end_time,y.end_time),'yyyymmddhh24miss') overlap
              from the_data x,the_data y
             where x.name = y.name
               and greatest(x.start_time,y.start_time) < least(x.end_time,y.end_time)
               and x.start_time != y.start_time
               and x.end_time != y.end_time
    group by name
    order by name
    with
    the_data as
    (select 'A' name,to_date('26/03/2011 12:33:16','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 12:40:10','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'A' name,to_date('26/03/2011 12:41:28','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 12:43:19','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'A' name,to_date('26/03/2011 12:42:20','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 12:42:50','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'A' name,to_date('26/03/2011 12:42:28','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 12:47:50','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'B' name,to_date('26/03/2011 10:22:28','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 10:50:10','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'B' name,to_date('26/03/2011 10:49:28','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 10:53:50','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'B' name,to_date('26/03/2011 10:50:28','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 10:59:50','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'B' name,to_date('26/03/2011 10:59:58','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 11:10:50','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'C' name,to_date('26/03/2011 11:05:58','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 11:10:50','dd/mm/yyyy hh24:mi:ss') end_time from dual union all
    select 'C' name,to_date('26/03/2011 11:40:58','dd/mm/yyyy hh24:mi:ss') start_time,to_date('26/03/2011 11:50:50','dd/mm/yyyy hh24:mi:ss') end_time from dual
    t as
    (select name,
            case when max(end_time) over(partition by name order by start_time,end_time rows between unbounded preceding and 1 preceding) > start_time
                 then 0
                 else 1
            end start_of_group
      from  the_data
    select  name,
            count(*) overlapping_count
      from  t
    where start_of_group = 0
    group by name
    order by nameRegards
    Etbin

  • How to read from DAQ in different time intervals

    Hello,
    I am currently using LabVIEW 2010. I am new to LabView.
    I have 9 thermocouples I want to record the temperature from and create a graph.
    For one graph I want to graph the data every second for the duration of about 1.25 hours. For the other I want to record and graph the data every 2 minutes for a duration of 30 minutes. The temperature then would be ramped up in an oven and set to a higher temperature. When it is stabilized, recording of the data again will begin again at intervals of 2 minutes for the duration of 30 minutes.
    The first is only to see the real time temperature variation while the program is recording and running. The second graph and data is what I will use to analyze.
    What I need help in is finding out how you can read from the DAQmx at two different time intervals. I tried two parallel loops with each one graphing the two separate graphs I need with a delay time. Those two parallel loops where then surrounded by another while loop. The result is that the outside loop waits until both loops are finished so I do not get the correct results for the real time data graph.
    Is there a way to call on the DAQ data you need at the time interval you desire? Any suggestions to solve this problem? Thank you for your time and help.

    You are on the right track.  Sample the data at the fastest rate and send it to the 1st graph.  For the slower graph, take a sample from the faster data at your desired time interval.  You could use a timer and a case structure for something quick and easy and still have everything run in the same loop.  You could use two loops running at different speeds, it is just a little more involved and a few other things to consider. 

  • While doing puchout user is getting Overlapping time message in OTL Time entry responsibility

    while doing puchout user is getting Overlapping time message in OTL Time entry responsibility

    XmlBeans, at least the version I'm working with now, doesn't support version 3 of the Document Object Model (DOM). I don't know what operations were introduced in DOM 3, but I guess you're trying to use one of them. What worked for me is to copy the Document into a DocumentBuilder that does support DOM 3, such as the JDK's own builder, and work with the copy. This should be all right if the document is not too large. The following URL has the details:
    http://issues.apache.org/jira/browse/XMLBEANS-100
    (Look for the post dated 22/Aug/08, which as I write this is the very last post.)

  • Help!!coll​ect data at particular time intervals/​cycles

    Hello,
             I have to write a program to collect data at particular time intervals/cycles. We collect data at 100 points per cycle for 5000 cycles. But due to the huge volume of data I have to collect at certain intervals ( say cycles 1-10, 29-31,49-51 .... 3999-4001 .. 4999-5000). I would appreciate if anyone could please help me with this program.
    Thanks and bext regards
    lax

    Hello,
              Thanks for your reply. I have just started with LABview and the program I am dealing with was written by someone else. Anwyays, we are using  a NI PCI 6259 data aquisition card and NI SCXI (these are data aquisition for each channel I guess). We collect the load and deformation data (using LVDTs), which is the primary purpose of the project. We apply a load for 0.1s and rest for 0.6s. We collect the data at 100 points per second for the whole test (which runs for either 90minutes or 5000 cycles). We just start the test and collect data all the way through and the rate of collection remains the same throughout the test.
              As for finding out when exactly the cycle starts and ends. We will have to find that with time I guess. We plan to collect data for the first 100 cycles, then for 2 to 3 cycles every 50 or 100 cycles (which may increase towards the end of the test, i.e. we might jump from 3000 to 4000cycles).As for collection we collect the data 1sample at a time.
             I have attached a part of the program which measures all the data (which is part of another program). Some VI's might be missing (DAQmx start task, DAQmx stop task, DAQ mx read). Please let me know if you have any solution. Thanks again.
    Regards
    lax
    Attachments:
    Measure_All_FastData_queue.vi ‏51 KB

Maybe you are looking for

  • How can I print to Officejet 6700 from Win XP x64 computer?

    Purchased the 6700 and conencted to network and prints from Win 7 laptops fine. My desktop workstation in HP Z600 running Win XP X64, but cannot seem to get a driver to suit to print over the network. I would prefer not to have to trash and replace t

  • Job not getting triggered for Multiple Scheduler Events

    hi, I would like a job to be triggered for multiple scheduler events, subscribing to a single event works fine. But, when I set multiple event condition, nothing works. My objective is to run a job, whenever job starts or restarts or exceeds max run

  • How do I cancel

    I only signed up for itunes because a game that I had been looking for was advertised and it said I needed ituens to play the game.  I am not into music, tv, or movie downloads.  I only wanted the game.  When I tried to order the game it would not pr

  • Needed: Script for exporting iPhoto albums into a file structure

    Hello all! I have no experience with AppleScript, but I heard it should be possible to write a script which helps to copy/export a iPhoto album structure into an according directory structure. Does anybody already have such a script? Thx for any info

  • Error in Structure SYST.

    Dear All We are getting error in Structure SYST due to change in field length of domain SYCHAR50 which is used with field MSGV1 in Structre SYST. Now login to DEV system is not possible due to inconcestencies in System Structure SYST. Is there any po