With latch time stamp

Hello

I am raw data filtering, then look for the max/min of the three channels, which is output to a file.  The timestamp I want is max/min of the first string, but I want the max number / the other two channels in a 100-minute samples of max/min of the first chain and not only the corresponding timestamp max/min of the first string (we have some information of inertia in our configuration that we are trying to capture these other two channels).

To do this, I use a module Max/Min for three channels, with an additional TTL output on the first string, which is managed by a triggering of the sample module, then the module locking.  This allows me to capture the Max/Min values for the three channels and output to a data file, when I correctly specified the hysteresis values in the Max/Min module and trigger the sample to get less than 100 samples and start at the beginning of the event.

However, I do not get the correct timestamp for the max/min of the first string in my output file, it seems to be the timestamp of the data block in which takes place the max/min (the timestamp above the correct timestamp from 100 to 300 milliseconds).  How can I get the correct timestamp for this task?

I am using Windows XP Pro SP3, DasyLab 9.0.2 basic (Yes, we're going to be upgraded, but not this week .)  See attached sheet for more details.

Here is an example with a generator.

Use of the *. DSA to open in V9 file. I'm not 100, some that it will retain all settings, but it's a good start. The *.DSB file is DASYLab 12.

Tags: NI Products

Similar Questions

  • Function Time stamp in Acrobat pro?

    I made a PDF using Acrobat X pro form to achieve a workflow fairly simple observational study. In addition to the note taking fields I would like to also include buttons to time stamp that I can simply click while I'm observing the workflows in a clinical setting. This will allow me to win an extra step to keep the time I watch the workflow. Does anyone have any suggestions?

    P.S. I tried signatures with a time stamp however included the insertion of a signature process takes too long for my uses use :/

    Here is a simple script that you can use in the mouse event to the top of a button that updates a text called "timestamp1' with a timestamp field:

    Script of a button of mouse upwards

    getField("timestamp1").value = util.printd ("mm/dd/yyyy hh: mm", new Date());

    You can use any format you want. More information about formatting options you can use with the util.printd method is the Acrobat JavaScript reference. Note that this is based on the computer being correct date/time.

  • PDM Viewer do not display data with time stamp

    Need help with the timestamp of the data in a PDM file generated by the DAQ Assistant.

    When I use the PDM Viewer, with x the value absolute time scale, the date starts in 1903. If I use Excel to look at the file that the start time is correct (i.e. 2013).

    Bo_Xie, I simplified my VI and now able to display the correct time stamp. Thanks for your time!

  • file lvm recorded with time stamp graphic display

    Hello

    I have headaches display my data with correct timestamp. There are so many methods to save the data. Here, I decided to save it in a text delimited as lvm. a screenshot of my vi segment is attached. I want to use this way rather than other methods is the flexibility it offers. I'll be able to add more data to store that I develop the vi. (So I'm storing data of the DAQ assistant and my calculated values.) I've attached a screenshot of the file I also read.

    I would use another vi to open this file and it draw a chart/graph to show a trend of the acquired data. Can someone pls Advisor mid on which is a better way for mi to do?

    Thank you very much!

    POH

    Hi Malou,

    Sorry for the late reply, I was rushing to complete my project, has not been able to answer.

    Yes, I managed to solve it. In any case, I've used this high rate in the acquisition of data wizard is to allow the acquisition of continuous mode & use a software filter instead of filter material. However writes to the folder this way - write string in .lvm, max is 10 samples/s unless I have use tdm (I'll then everything in the newspaper).

    I was not able to display the correct timestamp was due to the fact that I have does not add to the timestamp of the start time for the timestamp in waveform display. I won't be able to go down to my lab, & my machine have no LabVIEW, so what I do is to extract some parts of my report to share.

    For the part that I used to display the graph (can be seen on the attachment), I deleted the 1st column, which is the time stamp (for display of the spreadsheet), but extract the 1st element - convert timestamp DBL it when I start recording in the DAQ vi (written with the header).

    This excerpt (which could be considered as a group of numbers in the file lvm) and converted to the type timestamp and wired for generating waveform block, providing the start time of the wave.

    Then I replace the use of the chart with graphic, graphic is suitable for data acquired and graphic tracing is better for the time of execution of the data display. now it seems to work fine for me, except for the load time may take some time for larger files.

    Thank you for your participation in this thread!

    See you soon!

    POH

  • Rough terrain when the data is plotted with time stamp of AM / PM or to the right!

    Hi to all programmers.

    I'm attached Datafile. Can someone tell me how to draw this line! I need all of the data plotted on the right and the x - axis with the date and time stamp.

    I understand that the chart cannot understand that after the time: 12:59:59.999, it's 01:00:00.000 afternoon.

    Thanks to Labview 7.1

    Concerning

    HFZ

    Apart from a code that can be simplified by the use of other functions, what I see, it's that the file you provided does not match the format that expects the VI.

    Other comments:

    • I don't understand why you're going to all the trouble of the evolution of the time string when all what you need to do is:

    • All the way at the beginning, use the function of path of the band to get the file name rather than the gymnastics that you're doing.
    • Your time loop must be indexed for auto-loop.
    • I can't quite understand what you're trying to do with all these sliders.
  • BEFORE the UPDATE of relaxation with time stamp does not work as expected

    We have a scenario where I check update operations on a table.

    I created a before update TRIGGER, so that every time he goes an update on the main table statement, one before the image of the lines is captured in the table of audit with timestamp.

    Since it is before updating, ideally the audit table timestamp (TRG_INS_TMST) should be less main table timestamp (IBMSNAP_LOGMARKER) VALUE, I mean TRIGGER should happen before the update.

    (I could understand in a way that the UPDATE statement is formulated with SYSTIMESTAMP earlier before the TRIGGER is evaluated and so UPDATE is to have a time stamp prior to TRIGGER, but this isn't what we wanted. We want PRIOR update)

    'Table' IBM_SNAPOPERATION IBM_SNAPLOGMARKER            
    ---- ----------------- -------------------------------
    T1   U                 13-OCT-15 03.07.01.775236 AM   <<---------- This is the main table, This should have the latest timestamp
    T2   I                 13-OCT-15 03.07.01.775953 AM
    

    Here is my test case.

    DELETE FROM TEST_TRIGGER_1;
    
    DELETE FROM TEST_TRIGGER_2;
    
    SELECT 'T1', ibm_snapoperation, ibm_snaplogmarker FROM TEST_TRIGGER_1
    UNION
    SELECT 'T2', ibm_snapoperation, TRG_INS_TMST FROM TEST_TRIGGER_2;
    
    INSERT INTO TEST_TRIGGER_1 (ID,ibm_snapoperation, ibm_snaplogmarker)
         VALUES (1, 'I', SYSTIMESTAMP);
    
    COMMIT;
    
    SELECT 'T1', ibm_snapoperation, ibm_snaplogmarker FROM TEST_TRIGGER_1
    UNION
    SELECT 'T2', ibm_snapoperation, TRG_INS_TMST FROM TEST_TRIGGER_2;
    
    UPDATE TEST_TRIGGER_1
       SET IBM_SNAPOPERATION = 'U', ibm_snaplogmarker = SYSTIMESTAMP;
    
    COMMIT;
    
    SELECT 'T1', ibm_snapoperation, ibm_snaplogmarker FROM TEST_TRIGGER_1
    UNION
    SELECT 'T2', ibm_snapoperation, TRG_INS_TMST FROM TEST_TRIGGER_2;
    

    Def trigger:

    CREATE OR REPLACE TRIGGER etl_dbo.TEST_TRIGGER_1_TRG BEFORE UPDATE OF IBM_SNAPOPERATION
    ON TEST_TRIGGER_1 REFERENCING OLD AS OLD NEW AS NEW
    FOR EACH ROW
    WHEN (
    NEW.IBM_SNAPOPERATION= 'U'
          )
    DECLARE
    V_SQLCODE  VARCHAR2(3000);
    --PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
    INSERT INTO etl_dbo.TEST_TRIGGER_2
    (ID,
    IBM_SNAPOPERATION,
    IBM_SNAPLOGMARKER,
    TRG_INS_TMST
    )
    VALUES (:OLD.ID,:OLD.IBM_SNAPOPERATION,:OLD.IBM_SNAPLOGMARKER,SYSTIMESTAMP)
    ;
    --COMMIT;
    END;
    /
    

    Output is something like this

    1 row deleted.
    1 row deleted.
    no rows selected.
    1 row created.
    Commit complete.
    
    'T1' IBM_SNAPOPERATION IBM_SNAPLOGMARKER            
    ---- ----------------- -------------------------------
    T1   I                 13-OCT-15 03.07.00.927546 AM 
    1 row selected.
    1 row updated.
    Commit complete.
    
    'T1' IBM_SNAPOPERATION IBM_SNAPLOGMARKER            
    ---- ----------------- -------------------------------
    T1   U                 13-OCT-15 03.07.01.775236 AM   <<---------- This is the main table, This should have the latest timestamp
    T2   I                 13-OCT-15 03.07.01.775953 AM 
    
    2 rows selected.
    

    But for some reason, even after the creation of the 'AFTER' trigger for update, it works as expected. Sense - the main table is not having the last timestamp given

    It's OKAY - I told you in my reply earlier. Reread my answer.

    could understand somehow that the UPDATE statement is made with earlier

    SYSTIMESTAMP until the TRIGGER is assessed and updated so is to have

    time stamp prior to the trigger, but this isn't what we wanted. We want to

    BEFORE the update)

    As I told you before that your UPDATE statement occurs BEFORE the trigger is activated.

    Despite what the other speakers have said, it makes NO DIFFERENCE if you use a BEFORE UPDATE or an AFTER UPDATE trigger. Your UPDATE statement runs ALWAYS BEFORE the trigger.

    HE has TO - it's your update processing statement that causes the trigger to fire.

    Your update statement includes SYSTIMESTAMP. If during the processing of your return to update the value of SYSTIMESTAMP "at this exact time" is captured.

    Then your trigger is activated and starts to run. ANY reference to SYSTIMESTAMP that you use in your trigger cannot be earlier than the value of until the trigger was executed. It's IMPOSSIBLE.

    The trigger can use the SAME value by referencing: NEW and the column name you store the value. Or the trigger can get its own value that your code is doing.

    But the SYSTIMESTAMP value in the trigger will NEVER earlier than the value in your query.

    And none of these values can actually be used to tell when the changes are really ENGAGED since the trigger does not work and CAN NOT, to know when, or if, a validation occurs.

    Reread my first answer - he explains all this.

  • Check out when a last accessed table (select, insert, update) with time stamp. Auditing enabled

    Hello world

    IM pretty new to audit the database. Auditing is enabled in the database. I would like to retrieve the news all of the objects belonged to a certain pattern when it was last accessed (select, insert, update) with time stamp. Is there any script for this? Your time and your reply is greatly appreciated. Thank you.

    Database version: 11.2.0.4

    Enable audit is not quite enough to get the details when the table is updated/inserted/selected.

    You must activate audting on the object level, then you may only be able to see your report of your choice.

    SELECT OBJ_NAME, ACTION_NAME, to_char (timestamp, ' dd/mm/yyyy, hh') of sys.dba_audit_object.

  • overloading a DATE with time STAMP function to avoid the "too many declarations.

    CREATE OR REPLACE PACKAGE util
    AS
      FUNCTION yn (bool IN BOOLEAN)
        RETURN CHAR;
    
      FUNCTION is_same(a varchar2, b varchar2)
        RETURN BOOLEAN;
    
      FUNCTION is_same(a date, b date)
        RETURN BOOLEAN;
    
      /* Oracle's documentation says that you cannot overload subprograms
       * that have the same type family for the arguments.  But, 
       * apparently timestamp and date are in different type families,
       * even though Oracle's documentation says they are in the same one.
       * If we don't create a specific overloaded function for timestamp,
       * and for timestamp with time zone, we get "too many declarations 
       * of is_same match" when we try to call is_same for timestamps.
       */
      FUNCTION is_same(a timestamp, b timestamp)
        RETURN BOOLEAN;
    
      FUNCTION is_same(a timestamp with time zone, b timestamp with time zone)
        RETURN BOOLEAN;
    
      /* These two do indeed cause problems, although there are no errors when we compile the package.  Why no errors here? */
      FUNCTION is_same(a integer, b integer) return boolean;
    
      FUNCTION is_same(a real, b real) return boolean;
    
    END util;
    /
    
    CREATE OR REPLACE PACKAGE BODY util
    AS
      /********************************************************************************
         NAME: yn
         PURPOSE: pass in a boolean, get back a Y or N
      ********************************************************************************/
      FUNCTION yn (bool IN BOOLEAN)
        RETURN CHAR
      IS
      BEGIN
        IF bool
        THEN
          RETURN 'Y';
        END IF;
    
        RETURN 'N';
      END yn;
    
      /********************************************************************************
         NAME: is_same
         PURPOSE: pass in two values, get back a boolean indicating whether they are
                  the same.  Two nulls = true with this function.
      ********************************************************************************/
      FUNCTION is_same(a in varchar2, b in varchar2)
        RETURN BOOLEAN
      IS
        bool boolean := false;
      BEGIN
        IF a IS NULL and b IS NULL THEN bool := true;
        -- explicitly set this to false if exactly one arg is null
        ELSIF a is NULL or b IS NULL then bool := false;
        ELSE bool := a = b;
        END IF;
        RETURN bool;
      END is_same;
    
      FUNCTION is_same(a in date, b in date)
        RETURN BOOLEAN
      IS
        bool boolean := false;
      BEGIN
        IF a IS NULL and b IS NULL THEN bool := true;
        -- explicitly set this to false if exactly one arg is null
        ELSIF a is NULL or b IS NULL then bool := false;
        ELSE bool := a = b;
        END IF;
        RETURN bool;
      END is_same;
      
      FUNCTION is_same(a in timestamp, b in timestamp)
        RETURN BOOLEAN
      IS
        bool boolean := false;
      BEGIN
        IF a IS NULL and b IS NULL THEN bool := true;
        -- explicitly set this to false if exactly one arg is null
        ELSIF a is NULL or b IS NULL then bool := false;
        ELSE bool := a = b;
        END IF;
        RETURN bool;
      END is_same;
    
      FUNCTION is_same(a in timestamp with time zone, b in timestamp with time zone)
        RETURN BOOLEAN
      IS
        bool boolean := false;
      BEGIN
        IF a IS NULL and b IS NULL THEN bool := true;
        -- explicitly set this to false if exactly one arg is null
        ELSIF a is NULL or b IS NULL then bool := false;
        ELSE bool := a = b;
        END IF;
        RETURN bool;
      END is_same;
    
      /* Don't bother to fully implement these two, as they'll just cause errors at run time anyway */
      FUNCTION is_same(a integer, b integer) return boolean is begin return false; end;
      FUNCTION is_same(a real, b real) return boolean is begin return false; end;
      
    END util;
    /
    
    declare
     d1 date := timestamp '2011-02-15 13:14:15';
     d2 date;
     t timestamp := timestamp '2011-02-15 13:14:15';
     t2 timestamp;
     a varchar2(10);
     n real := 1;
     n2 real;
    begin
     dbms_output.put_line('dates');
     dbms_output.put_line(util.yn(util.is_same(d2,d2) ));
     dbms_output.put_line(util.yn(util.is_same(d1,d2) ));
     dbms_output.put_line('timestamps'); -- why don't these throw exception?
     dbms_output.put_line(util.yn(util.is_same(t2,t2) ));
     dbms_output.put_line(util.yn(util.is_same(t,t2) ));
     dbms_output.put_line('varchars');
     dbms_output.put_line(util.yn(util.is_same(a,a)));
     dbms_output.put_line(util.yn(util.is_same(a,'a')));
     dbms_output.put_line('numbers');
     -- dbms_output.put_line(util.yn(util.is_same(n,n2))); -- this would throw an exception
    end;
    /
    Originally, I had just the a function with the arguments of VARCHAR2. It worked not correctly because when the dates were gone, the automatic conversion into VARCHAR2 lowered the timestamp. So, I added a 2nd function with the arguments to DATE. Then I started to get "too many declarations of is_same exist" error during the passage of time stamps. This made no sense to me, so, although documentation Oracle says you can't do this, I created a 3rd version of the function, to manage the TIMESTAMPS explicitly. Surprisingly, it works fine. But then I noticed that he did not work with TIMESTAMP with time zones. Therefore, the fourth version of the function. Docs of the Oracle say that if your arguments are of the same family, you can't create an overloaded function, but in the example above shows, it's very bad.

    Finally, just for grins, I created the functions of number two, one number, the other with REAL and even these are allowed - they are compiled. But then, at runtime, it fails. I'm really confused.

    Here's the apparently erroneous Oracle documentation on this subject: http://docs.oracle.com/cd/B12037_01/appdev.101/b10807/08_subs.htm (see overload subprogram names) and here are the different types and their families: http://docs.oracle.com/cd/E11882_01/appdev.112/e17126/predefined.htm.

    Published by: hot water on 9 January 2013 15:38

    Published by: hot water on 9 January 2013 15:46

    >
    So, I added a 2nd function with the arguments to DATE. Then I started to get "too many declarations of is_same exist" error during the passage of time stamps. It makes no sense for me
    >
    This is because when you pass a TIMESTAMP Oracle cannot determine whether to implicitly convert to VARCHAR2 and use your first function or implicitly convert to DATE and use your second function. Where the "too many declarations" error exist.
    >
    , even if said Oracle documentation you can not do, so I created a 3rd version of the function to manage the TIMESTAMPS explicitly. Surprisingly, it works fine. But then I noticed that he did not work with TIMESTAMP with time zones.
    >
    Perhaps due to another error "too many declarations? Because now, there will be THREE possible implicit conversions that might be made.
    >
    Therefore, the fourth version of the function. Docs of the Oracle say that if your arguments are of the same family, you can't create an overloaded function, but in the example above shows, it's very bad.
    >
    I think that the documentation, of the family of 'date', is wrong as you suggest. For WHOLE and REAL, the problem is that those are the ANSI data types and are really the same Oracle data type; they are more like "alias" that different data types.

    See the doc of SQL language
    >
    ANSI SQL/DS and DB2 data types

    The SQL statements that create tables and clusters allows also ANSI data types and products IBM SQL/DS and DB2 data types. Oracle recognizes the ANSI or IBM data type name that differs from the Oracle database data type name. It converts the data type for the equivalent Oracle data type, stores the Oracle data type under the name of the column data type and stores the data in the column in the data type Oracle based on the conversions listed in the following tables.

    INTEGER NUMBER

    INT

    SMALLINT
    NUMBER (38)

    FLOAT (Note b)

    DOUBLE-PRECISION (Note c)

    REAL (Note d)
    FLOAT (126)

    FLOAT (126)

    FLOAT (63)

  • CQL join with 2-channel time-stamped application

    Hello

    I am trying to join the two channels that are time-stamped application, both are total-ordered. Each of these 2 channels retrieve data in a table source.

    The EPN is something like this:

    Table A-> processor A-> A channels->
    JoinProcessor-> channel C
    Table B-> processor B-> B-> channel

    My question is, how are "simulated" in the processor events? The first event that happens in any channel and the Treaty as the timestamp, starting point get it? Or fact block treatment until all channels have published its first event?

    Channel A
    --------------
    timestamp
    1000
    6000


    Channel B
    -------------
    timestamp
    4000
    12000

    Channel B arrived both of system a little later due to the performance of the db,

    I would like to know if the following query won't work, whereas I would like to match the elements of channel A and B which are 10 sec window and out matches once in a stream.

    The following query is correct?

    Select a.*
    A [here], B [slide 10 seconds of range 10 seconds]
    WHERE a.property = b.property


    I'm having a hard time to produce results of the join well I checked the time stamp of application on each stream and they are correct.
    What could possibly cause this?

    Thank you!

    Published by: Jarell March 17, 2011 03:19

    Published by: Jarell March 17, 2011 03:19

    Hi Jarrell,

    I went through your project that had sent you to Andy.

    In my opinion, the following query should meet your needs-

    ISTREAM (select t.aparty, TrafficaSender [range 15 seconds] t.bparty t, CatSender [range 15 seconds] c where t.aparty = c.party AND t.bparty = c.bparty)

    I used the test of CatSender and TrafficaSender data (I show only the part bparty fields and here and that too as the last 4 characters of each)

    TrafficaSender (, bparty)
    At t = 3 seconds, (9201, 9900)
    At t = 14 seconds (9200, 9909)
    To t = 28 seconds (9202, 9901)

    CatSender (, bparty)
    At t = 16 seconds, (9200, 9909)
    At t = 29 seconds (9202, 9901)

    For query q1 ISTREAM = (select t.aparty, TrafficaSender [range 15 seconds] t.bparty t, CatSender [range 15 seconds] c where t.aparty = c.party AND t.bparty = c.bparty)

    the results were-
    At t = 16 seconds, (9200, 9909)
    At t = 29 seconds (9202, 9901)

    and it seems OK for me

    Please note the following-

    (1) in the query above I do NOT require a "abs1(t.ELEMENT_TIME-c.ELEMENT_TIME)".<= 15000"="" in="" the="" where="" clause.="" this="" is="" because="" of="" the="" way="" the="" cql="" model="" correlates="" 2="" (or="" more)="" relations="" (in="" a="" join).="" time="" is="" implicit="" in="" this="" correlation="" --="" here="" is="" a="" more="" detailed="">

    In the above query, either W1 that designating the window TrafficaSender [range 15] and W2 means the CatSender [range 15] window.

    Now both W1 and W2 are evaluated to CQL Relations since in the CQL model WINDOW operation over a Creek gives a relationship.

    Let us look at the States of these two relationships over time

    W1 (0) = W2 (0) = {} / * empty * /.
    ... the same empty up to t = 2
    W1 (3) = {(9201, 9900)}, W2 (3) = {}
    same content for W1 and W2 until t = 13
    W1 (14) = {9201 (9900) (9200, 9909)}, W2 (14) = {}
    same content at t = 15
    W1 (16) = {9201 (9900) (9200, 9909)}, W2 (16) = {(9200, 9909)}
    same content at t = 17
    W1 (18) = {(9200, 9909)}, W2 (18) = {(9200, 9909)}
    same content at up to t = 27
    W1 (28) = {(9200, 9909), (9202, 9901)}, W2 (28) = {(9200, 9909)}
    W1 (29) = {(9202, 9901)}, W2 (29) = {(9200, 9909), (9202, 9901)}

    Now, the result.
    Let R = select t.aparty, TrafficaSender [range 15 seconds] t.bparty t, CatSender [range 15 seconds] c where t.aparty = c.party AND t.bparty = c.bparty

    It is the part of the application without the ISTREAM. R corresponds to a relationship since JOINING the 2 relationships (W1 and W2 in this case) that takes a relationship according to the CQL model.

    Now, here's the most important point about the correlation in the JOINTS and the implicit time role. R (t) is obtained by joining the (t) W1 and W2 (t). So using this, we must work the content of R over time

    R (0) = JOIN of W1 (0), W2 (0) = {}
    the same content up to t = 15, since the W2 is empty until W2 (15)
    R (16) = JOIN of W1 (16), W2 (16) = {(9200, 9909)}
    same content up to t = 28, even if at t = 18 and t = 28 W1 changes, these changes do not influence the result of the JOIN
    R (29) = JOIN of W1 (29), W2 (29) = {(9202, 9901)}

    Now the actual query is ISTREAM (R). As Alex has explained in the previous post, ISTREAM leads a stream where each Member in the difference r (t) - R (t-1) is associated with the t. timestamp applying this to R above, we get

    R (t) - R (t-1) is empty until t = 15
    (16) R - R (16 seconds - 1 nanosecond) = (9200, 9909) associated with timestamp = 16 seconds
    R (t) - R (t-1) is again empty until t = 29
    (29) R - R (29 seconds - 1 nanosecond) = (9202, 9901) associated with timestamp = 29 seconds

    This explains the output

  • Acquisition of data high-speed with time stamp

    I am acquiring data at a fairly fast speed (5 to 25 kHz) for a few seconds and then writing in a spreadsheet file. Is there a way to set up so that it displays the time stamp for each data point instead of just the data point number?

    Of course. Change the type of data returned by DBL 2D to 1 D wave form. This is doen by clicking on the polymorphic selector or right-click and choose 'select the Type '.

  • Is it possible to have a watermark WITH a dynamic time stamp included?

    Our customer representative asked if we can create PDFs (generated from our web application) which not only includes a watermark (that we now using a png image), but a watermark containing a dynamic time stamp.

    I know that we can add these separately, but he wants the watermark itself be dynamically stamped... I know that this can be done via an image as a PNG, but y at - it another way to do this in a PDF file?

    Thank you!

    It seems that this problem has been resolved.  Developer apparently 'cut of the image in bytes, then transformed into a graph, using Java to add to the parking meter"

    Thanks for your replies!

  • record in the table with time stamp

    Hello
    I use Forms6i and db 10g
    I have a datablock in my form, which is based on a table hlp_user_master.
    The table has fields crt_on, upd_on. who is date type.
    Now I'm set sysdate to these areas, before saving it to the database.
    He is now in the database, just.
    But I want it to be like date with the time.
    My Manager said to set the data type of the fields in the form.
    I did the DateTime data type, in the form
    but still in the database, just when saving

    Help, please

    Hello
    If you have changed in the form of the datetime data type and the mask format as I said in my previous post. Then, the database will have time also after saving it. I guess that you are checking in via SQL * more. If so, try the following query.

    SELECT TO_CHAR(DATE_COLUMN,'DD-MON-YY HH24:MI:SS');
    FROM TABLE_NAME;
    

    If the form is stalling as it will display then with time.

    -Clément

  • Script Automator for the DATE and TIME stamped record

    Hi all

    I'm not a scripter, but are in need of a DATE and time-STAMPED folder (or file) I would like to put on my desktop and have updated automatically so that I can use this tool to quickly see if a backup external (or internal) is current. probably I could also use it to quickly find out how /old/ a backup is.

    for now, I do this manually if I want to quickly verify that a backup works by creating a "date named folder" on the desktop - such as '-2016 03 26 "."» so I can quickly see if a backup I just ran ran.

    I have a lot of backups (internal, external, off site, etc.) and it would be super useful for me to have.

    I consider the name of the folder to be customizable (potentially) in case I need to change it, but a good default would be "-YEAR MONTH DAY" so that I could see easily when this backup has been but also I name my files in this way so they can appear in chronological order "."

    is anyone able to help me with something like that or suggest another forum for cross-post this?

    Thank you

    Jon

    Hello

    Create the the ""new folder " action, like this:"

    ---------------

    Drag and drop the 'Shell Script' variable in the "name:" field.

    --------------

    Double click on the variable in the "name:" field:

    Copy and paste this text in the field 'Script ':

    date "+%Y %m %d"
    
  • bad time stamp difference. Why?

    Hi all

    I have a very intuitive when behavior time subtracting one from the other stamps. Can you tell me why 'hour' shows '1' where obviously '0' would be correct?

    Subtract the two time stamps as you are now.  Which feed a digital indicator.  Set the display format for this digital indicator be relative time.  There is a choice for days to hours and minutes that resembles % <%H:%M:%S> in the output format t advanced.  If you want to display days, so do % <%D:%H:%M:%S> t there is no need to mess with cords.

  • Misfortunes of time stamp

    A code I have build to generate and acquire waveform signals and then write them in a text file with the appropriate time stamp is attached. As it is, I've linked only the portion of scripture to the acquired signals (I intend to write then generated signals); However, my time stamps are not written to the sides of my tensions, because I expected to do. I had problems with it (probably because I'm a total novice at this), but would like to have some knowledge of experts in this field. Can someone help me? The code and a dummy test text file are attached. Thank you!

    Hi UARK.

    I just ran your VI with a simulated device and could read in the appropriate data (it was not all constant).  Try opening a panel of Test NI Max to display the data that your device reads in and check if these data are constant.  If so, it's a problem with your hardware rather than your LabVIEW program.  That being said, this issue is quite different from your original post, and I suggest to create a new post on the forum for this quite so that more people see it.

    Thank you

    Myriam D.

    Technical sales engineer

    National Instruments

Maybe you are looking for

  • Why my log shows an error MSPublisher when I have zero installed software MS

    In general, I only put my iMac to sleep then when I had to start rather than wake up it I checked the log. I have not found no answer to my question about why he had to be restarted, but all looking at, I discovered this message: " July 24, 2016, 13:

  • Taken Max memory supported by HP G62-b50SQ.

    Hello. 4 months ago I needed a laptop, and my choice was HP G62-b50sq. I am happy with my choice, but it came with only 3 GB of memory, and it is simply not enough for me. I read a lot of reviews and specifications of this particular configuration, a

  • Update KB2729450

    I have 9 downloads this XPx86 update, with seemingly correct installation, but cannot stop the supply of the other updates for the appearance even.

  • Photo location is incorrect.

    I noticed the location for photos I'm taking is incorrect. What is the accuracy of the location, and it is editable?

  • Windows Mail page (screen) misallignment

    Having trouble reading the attachments to messages. First of all, all the content of my page of Windows Mail suddenly moved to the left side of the screen, leaving the right half empty. However, the bar in the Middle, containing addresses and the sub