Time shift data feature

Lately there has been a need by many individuals to shift data for one reason or another.  Possibly the data was collected without using a trigger to synch everything or just collected with an inevitable delay.
Would R&D look into a function that could mark two points in a customer's data and then align/shift the data so a comparison may be done of one data set against another?
Thanks!

Feature is released with DIAdem 2015: Please use "Synchronize Data from Different Files" in panel ANALYSIS/Channel Functions

Similar Messages

  • Time-shift feature in camera ?

    Basically I can't find it. I tried using the camera the other night, in a well-lit room I hasten to add, and it seemed very reluctant to take a picture. Pressing the square thing just caused it to focus the image, and only occasionally would it decide to actually take the picture. Couldn't find an option anywhere in the settings to use the time-shift thing they've been showing off. Also, turning on the flash didn't appear to actually turn it on, just carried on as before using available light, so for some reason was unable to use the flash as well.
    Very weird ....

    mfarmilo wrote:
    I don't remember seeing a camera icon in the corner, only the usual 3-dot menu at the bottom.
    Look again. And remember if you have the front facing camera, neither timeshft nor flash settings are available.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Data Synchronizer GroupWise connector time shift problem

    I have recently installed the latest 1.2.2 Data Synchronizer Mobility with GroupWise connector, one bug I have found when looking at time stamps of emails sent and received from the connector perspective I am seeing a 20 hrs time shift i.e. from my Android device I send an email to myself at 06:00 May 6 local the time it will show received at 10:00 May 5 also looking at sent time on the device it will say sent at 10:00 May 5. When I look at the GroupWise client or WebAccess sent and received time and date are correct. Conclusion it's only the Data Synchronizer showing time date incorrectly. Any thoughts welcome.

    Update - This problem appears to be phone specific it is a Motorola MB525 with Android 2.2.2 we have some HTCs which do NOT have a problem with time zone. Another minor problem is items deleted on the device do not sync up to GroupWise

  • My gradson got ahold of my grandaughters IPod touch and I no longer have a settings button.  The time and date on this is wrong.  How can I fix this problem.

    I need help...  I no longer have all of the buttons on my IPod touch screen.  My grandson got a hold of it and boom..  The time and date is wrong also, and I have no access to fix this problem.  There is no settings button.
    Any help would be appreciated.

    Assuming that by buttons your mean the icons for various apps are missing, use the Spotlight search feature (double click the Home button and go all the way to the left past the music controls) and search for: Settings. Go to Settings>General>Reset>Reset Screen layout and also correct the time inthe Genera settings.
    The Setting app can't be deleted or hidden via Restrictions.

  • Query Question - Linking in Time Span Data to Point-in-Time References

    I am trying to pull historical data from a time-span table of records, using another point-in-time reference. I have been unsuccessful.
    I've thrown some sample tables and data together to illustrate what I am seeking:
    Create Table EmployeeInfo (
           id Number(10,0),               -- Employee ID Number
           Name VarChar2(32 Byte),        -- Employee Name
           CurrentShift VarChar2(2 Byte)  -- Current Employee Shift
    Create Table ShiftChanges (
           id Number(10,0),               -- Employee ID that this shift change record is for
           ChangeDate Date,               -- Date that this Change Took Place
           OldShift VarChar2(2 Byte),
           NewShift VarChar2(2 Byte)
    Create Table TimeCard(
           id Number(10,0),               -- Employee ID Number for this Timecard
           WorkDay Date,                  -- What Day is this Timecard for?
           Hours Float(63)                -- Number of Hours worked.
    COMMIT;
    INSERT INTO EmployeeInfo VALUES (100,'John Doe','Days')
    INSERT INTO EmployeeInfo VALUES (101,'Jane Doe','Days');
    INSERT INTO TimeCard VALUES (100, to_date('01012010','ddmmyyyy'), 10.5);
    INSERT INTO TimeCard VALUES (101, to_date('01012010','ddmmyyyy'), 10);
    INSERT INTO TimeCard VALUES (100, to_date('02012010','ddmmyyyy'), 9);
    INSERT INTO TimeCard VALUES (101, to_date('02012010','ddmmyyyy'), 10.5);
    INSERT INTO TimeCard VALUES (100, to_date('03012010','ddmmyyyy'), 8);
    INSERT INTO TimeCard VALUES (101, to_date('03012010','ddmmyyyy'), 7);
    INSERT INTO ShiftChanges VALUES (100, to_date('02012010','ddmmyyyy'), 'Nights', 'Days');
    COMMIT;I could do a query such as:
    SELECT TC.id,
           EM.Name,
           TC.Workday,
           EM.CurrentShift AS Shift
    FROM   TimeCard TC,
           EmployeeInfo EM
    WHERE  (TC.ID=EM.ID(+));But it will not give me the historical shift, only the current. Since John Doe changed shifts on Jan 2 from Nights to Days, the above query would not reflect it.
    I have attempted to join the historical table using a less-than operator. This doesn't work since more than one row can be returned.
    SELECT TC.id,
           EM.Name,
           TC.Workday,
           SC.NewShift AS Shift
    FROM   TimeCard TC,
           EmployeeInfo EM,
           ShiftChanges SC
    WHERE  (TC.ID=EM.ID(+)) AND
           (TC.ID=SC.ID(+) AND TC.WORKDAY<=SC.WORKDAY(+));The problem stems from the fact that you need to examine multiple records in one table in order to obtain the correct historical data for the other.
    The following SQL script {color:green}does work{color} - if the values are defined ahead of time.
    DEFINE EMPID=101;
    DEFINE CHGDATE=to_date('01/01/2010','dd/mm/yyyy');
    SELECT SQ.Shift
    FROM   (SELECT  ShiftChanges.NewShift AS Shift,
                    RANK() OVER (ORDER BY ShiftChanges.ChangeDate DESC) R
            FROM    ShiftChanges
            WHERE   ShiftChanges.id = &EMPID AND
                    ShiftChanges.ChangeDate <= &CHGDATE
            ) SQ
    WHERE R = 1However, I have been unsuccessful in adapting it to the example tables I provided. If I insert the query as an inline subquery* in the select statement, it won't work, since the criteria is nested two levels down, and I can only get parent values within the first level.
    I haven't thought of a way I can do this using a nested subquery - I keep running into that problem - how do you link in Time-Span data with a point-in-time reference.
    Any ideas / enlightening thoughts?
    Thank You
    {size:8}_SELECT * FROM V$VERSION information:_
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production
    PL/SQL Release 9.2.0.8.0 - Production
    "CORE     9.2.0.8.0     Production"
    TNS for 32-bit Windows: Version 9.2.0.8.0 - Production
    NLSRTL Version 9.2.0.8.0 - Production
    {size}
    user10879184 re-wrote the original post on 29-Mar-2010 1:21 PM to reflect suggestions made by poster.

    I changed the tables to hold VARCHAR2(6) shift information and your query to reference the ChangeDate column.
    I also assume you meant to link a TimeCard entry with the most previous ShiftChange entry rather than one that occurs after the time worked (TC.WORKDAY>=SC.CHANGEDATE(+) rather than TC.WORKDAY<=SC.CHANGEDATE(+)):
    Another issue you don't take into account the case where there has been no shift change. In that event you need the current shift from the EmployeeInfo table which is taken care of with the NVL function.
    You correctly note that multiple shift change records will result in duplicate TimeCard records though your test data fails to check for that condition. I added this row:
    SQL> INSERT INTO ShiftChanges VALUES (100, to_date('03012010','ddmmyyyy'), 'Days', 'Nights'); Now it is apparent
    SQL> SELECT TC.id,
      2         EM.Name,
      3         TC.Workday,
      4         NVL(SC.NewShift,EM.CurrentShift) AS Shift
      5  FROM   TimeCard TC,
      6         EmployeeInfo EM,
      7         ShiftChanges SC
      8  WHERE  TC.ID=EM.ID(+) AND
      9         TC.ID=SC.ID(+) AND TC.WORKDAY>=SC.CHANGEDATE(+);
            ID NAME                             WORKDAY   SHIFT
           100 John Doe                         01-JAN-10 Days
           100 John Doe                         02-JAN-10 Days
           100 John Doe                         03-JAN-10 Days
           100 John Doe                         03-JAN-10 Nights
           101 Jane Doe                         01-JAN-10 Days
           101 Jane Doe                         02-JAN-10 Days
           101 Jane Doe                         03-JAN-10 Days
    7 rows selected.The reason for the duplicate Jan3 time is the two shift change records. We are matching both ShiftChange records that occured before the 3rd.
    We also see that your test data has John starting out on Days and then shifting from Nights to Days on the 2nd for no real change. Fixing that:
    SQL> DELETE from ShiftChanges where ID = 100;
    2 rows deleted.
    SQL> INSERT INTO ShiftChanges VALUES (100, to_date('02012010','ddmmyyyy'), 'Days', 'Nights');
    1 row created.
    SQL> INSERT INTO ShiftChanges VALUES (100, to_date('03012010','ddmmyyyy'), 'Nights', 'Days');
    1 row created.Then:
    SQL> SELECT TC.id,
      2         EM.Name,
      3         TC.Workday,
      4         NVL(SC.NewShift,EM.CurrentShift) AS Shift
      5  FROM   TimeCard TC,
      6         EmployeeInfo EM,
      7         (SELECT ID, Workday, ChangeDate, NewShift
      8          FROM
      9                 (SELECT TC2.ID, TC2.Workday, SC2.ChangeDate, SC2.Newshift,
    10                         MAX (SC2.ChangeDate) KEEP (DENSE_RANK LAST ORDER BY SC2.ChangeDate)
    11                                              OVER (PARTITION BY SC2.ID, TC2.Workday) AS Max_ChangeDate
    12                  FROM   ShiftChanges SC2,
    13                         TimeCard TC2
    14                  WHERE  TC2.Workday >= SC2.ChangeDate
    15                  AND    TC2.ID = SC2.ID
    16                  )
    17          WHERE   ChangeDate = Max_ChangeDate
    18          ) SC
    19  WHERE  TC.ID=EM.ID(+) AND
    20         TC.ID=SC.ID(+) AND
    21         TC.Workday=SC.ChangeDate(+) AND
    22         TC.Workday = SC.Workday(+);
            ID NAME                             WORKDAY   SHIFT
           100 John Doe                         01-JAN-10 Days
           100 John Doe                         02-JAN-10 Nights
           100 John Doe                         03-JAN-10 Days
           101 Jane Doe                         01-JAN-10 Days
           101 Jane Doe                         02-JAN-10 Days
           101 Jane Doe                         03-JAN-10 Days
    6 rows selected.The inline view finds the greatest ChangeDate less than the TimeCard Workday for each Workday.

  • Understanding MapViewer log - total time loading X features

    Hi All,
    I'm interested in finding out more about how to understand the following lines from the log file.
    What I'm unsure about is what "total time loading features" means. For example Theme_14 has a sql exec time of 1797ms, however the total time loading 3 features is 21233ms.
    I'm assuming the total time includes the sql exec time. However there is about 20 seconds extra. Understanding this time should allow me to make changes to reduce it.
    What is MapViewer doing in that time? / What are the components that make up the "total time loading features"?
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_1 ] sql exec time: 63ms, total time loading 0 features: 63ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_2 ] sql exec time: 422ms, total time loading 0 features: 422ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_3 ] sql exec time: 422ms, total time loading 7 features: 422ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_4 ] sql exec time: 422ms, total time loading 0 features: 422ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_5 ] sql exec time: 516ms, total time loading 0 features: 516ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_6 ] sql exec time: 500ms, total time loading 0 features: 500ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_7 ] sql exec time: 516ms, total time loading 0 features: 516ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_8 ] sql exec time: 422ms, total time loading 5 features: 422ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_9 ] sql exec time: 516ms, total time loading 0 features: 516ms.
    Mon Apr 21 14:57:31 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_10 ] sql exec time: 218ms, total time loading 0 features: 218ms.
    Mon Apr 21 14:57:31 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_11 ] sql exec time: 437ms, total time loading 12 features: 453ms.
    Mon Apr 21 14:57:31 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_12 ] sql exec time: 766ms, total time loading 16 features: 1141ms.
    Mon Apr 21 14:57:32 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_13 ] sql exec time: 906ms, total time loading 1 features: 1735ms.
    Mon Apr 21 14:57:51 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_14 ] sql exec time: 1797ms, total time loading 3 features: 21233ms.
    Mon Apr 21 14:57:51 EST 2008 INFO [oracle.sdovis.DBMapMaker] **** time spent on loading features: 21233ms.
    Your time is appreciated. Any other comments are also welcome.

    Hi,
    the "total time loading features" includes the whole process to prepare the theme data. It includes the SQL execution time plus the data fetching plus some other minor tasks which do not affect much the final total time. So basically look for the SQL exec time and the fetching/loading of data. In your case, the fetching/loading of THEME_14 geometries is taking too long. Also the SQL exec time for just 3 features seems high. For the fetching, check if the geometries are too detailed (too may points), and for the SQL check if you can improve it (the log, in finest mode, also shows the query executed).
    Joao

  • How do i turn on the time and date info on my iphone camera?

    My old iphone, when i would upload the photos to my computer and i would put the mouse over the photo it would have time and date information. I just had to have it replaced so I uploaded some photos from the new one and it did not have this information. How do I turn that feature on so i can have that information inbedded in the photo information?

    Hi,
    if you are using PC then you can go to the picture then press right click on it then press properties and you will be able to see the time the picture created on the bottom half,
    hope this what you looking for

  • NEED AGENT activate data feature like customer service has for months due to error

    for the last 4 months customer service thru email has had to activate data after my plan renews i just found out the email option is gone. So i need an agent to do it below is what the agent said thru his email in june when they ask for me to reply via email. btw the error has been happening since April where my blackberry data turns off on verizons end and i can't get email or send or use browser or send and receive picture messages once my plan renews
    Good Morning Monica,
    Thank you for contacting Verizon Wireless once again, this is Mike again, and it's my pleasure to again enable your data feature for your account.
    I have once again activated the proper data feature on your account and I have submitted another error example. I have also found that this issue is common with blackberry devices and we are currently working on a solution. Until your data feature no longer needs to be activated by a representative each month, i will be more than happy to assist you with activating your data whenever your plan renews if you simply reply to this email and request that i activate the data.
    thank you, Monica for contacting
    Verizon wireless once again. We
    greatly appreciate that you provided us
    with another opportunity to assist you.
    again this is Mike, and it's my
    pleasure to activate your data feature
    once again. please continue to feel free to reply to this email or call customer service at (888)294-6804 if you ever
    have any other questions or concerns,
    thank you for choosing Verizon Wireless.

    I did a diagnostic check and this part came up. I think the BIS
    service is not connecting but i think it's on verizon's side. Each
    time the customer service agent turned on data on verizon's side it
    fixed the problem.
    I saw online many blackberry's have the issue like the agent told me.
    so i need for this to be fixed because i am paying for data.
    Diagnostic report
    Blackberry registration: Yes
    Connected to blackberry: No
    Blackberry pin-pin: abort

  • Removing time and date from lock screen

    how do i remove time and date from lock screen?

    LarryE wrote:
    As noted in the title, I would like to know if it is possible to remove the Time, Day and Date from my custom Lock Screen?  Is it possible or not? 
    Not a feature of Windows Phone OS, you can only change wallpaper, show artist when playing music or have password request upon lockscreen.
    Happy to have helped forum with a Support Ratio = 42.5

  • OUAF / MDM / Seasonal Time Shift Time Zone error 11002.18904

    I'm trying to associate an "Seasonal Time Shift" to a "Time Zone", but the following error occured:
    "Time zone 'V2-TZ-BRT' (name='America/Sao_Paulo') has Seasonal Shift date (shift=V2-BR-2012, date=10-20-2012 11:59AM) in conflict with Java info." Message number: 11002.18904
    I've tried various combinations of date, but without success

  • UC320: how to set (correct) time and date, upload own AA messages, get caller ID, telnet?

    Hello there,
    Just trying out the UC320 I got borrowed from Cisco AT for testing with firmware 2.1.2 (1) localized for Austria.
    The device is connected to the cable modem of my ISP (Kabelsignal) utilizing two FXO ports, getting an IP address from my DHCP being connected to a WS-C2960G-24TD (LAN 1@UC320 connected to Gi0/18@C2960G port macro Cisco Switch enabled).
    Now I would like to try/see the following features:
    - a correct time and date: huh? hwo/where???
    No option to set this right??? No NTP option??? Am I just blind or too stupid to find that option/s?
    - upload own messages for the AA: ok, there are german messages but someone might have a little bit personalized ones - maybe telling callers the company name before asking them to dial the extension if they know it. Making custom messages is not the problem - but how to upload and in which sound/data format?
    - caller ID: my ISP told me that he transfers the caller ID correctly to analoge end devices if caller ID is available and not suppressed. All I can see when a call comes in is which FXO Port is being used by that call. So callback entries on the SPA phone is senseless. Any advise?
    - CLI: You can telnet the device - but which credentials to use to successfully logon? The pre-assigned credentials form Cisco AT are not accepted for logon.
    BTW @Cisco guys: I am also voting for support for the older SPAs (e.g. 942)

    Hi Claus,
    Thanks for giving the UC320W a spin and glad you found the support community!  Let met see if I can help answer your questions....
    Time/Date & NTP -- The UC320W is preconfigured with Cisco's Small Business NTP server.  The preferred method for correct time you will need the UC320W WAN to be connected with Internet access.   If there is no WAN connectivity there is a feature in the 2.1.x firmware where you can set the time on a SPA phone GUI and it will then update the system time.  Alternatively, if you have a LAN side NTP server that is on the same subnet as your Data VLAN subnet, you can use the NTP.pmf file found here:  https://supportforums.cisco.com/docs/DOC-16301
    Upload custom Music on Hold and Auto Attendant prompt files.  We are currently in beta of a new Cloud service.  To participate in the Beta, please send an e-mail to [email protected] requesting MoH/AA Custom files Cloud Beta participation.
    Caller ID on FXO:  Make sure that you have run the impedance matching tool on each of your FXO ports.  For additional information on running the Impedance Matching tool and Caller ID troubleshooting, please see the UC320W Troubleshooting Guide.
    CLI access -- This is for Cisco Support personnel only for low level debugging.  This is not a IOS based device and there is no command line access for provisioning.
    Cheers,
    Chris

  • Input a variable for the time shift 'TIME=NEXT(var)'

    Hi experts,
                Is there any way to make the parameter on the time shift 'TIME=NEXT(%var%)'
    the idea is the user would input/send the value that will be place on the NEXT parameter..
    I've tried using the get statement but it doesn't retrieve the values.,..
    *REC(ACCOUNT="ACCT1",TIME=NEXT(GET(ACCOUNT="ACCT2")))
    it doesn't work..   i also tried the lookup.. it also doesnt work...
    Thanks,
    BennieJay

    Hi again nilanjan chatterjee,
            The process that we want to achieve is we want to make a sort of scheduling for the transactions.
    where the date of the lenght of the transaction is to be inputted in months. and for that we need to make use of the time shift NEXT. but the length should be variable because it is inputted.
    Thanks.
    Bennie Jay

  • How add an time to date function

    Hai all
    How to add time to date function
    My table called Daily_attend
    Fields are
    Name varchar
    Empcode num
    Intime date
    Outtime date
    Attend_date date
    So now i can calculate the working Hours of an employees by subtracting
    Outtime -Intime
    I have fixed the intime as 0815 after 0815 coming will be account to late
    So when the shift start late by 50 min now i need to add 50 min to the to start time
    so the intime of all employee should be subtract with 0905
    Thanks In Advance
    Srikkanth.M

    Are you looking for something similar?
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> create table test1(intime date, outtime date, empid integer, idein number);
    Table created.
    SQL> insert into test1 values(to_date('12-Mar-2010 08:15:00','DD-Mon-YYYY HH24:MI:SS'), to_date('12-
    Mar-2010 18:15:00','DD-Mon-YYYY HH24:MI:SS'),101,null);
    1 row created.
    SQL> create table test2(late_mins integer);
    Table created.
    SQL> insert into test2 values (40);
    1 row created.
    SQL> update test1
      2  set idein = to_number(outtime-(intime+(select (late_mins/60)/24 from test2)))*24*60
      3  where empid = 101;
    1 row updated.
    SQL> select * from test1;
    INTIME    OUTTIME        EMPID      IDEIN
    12-MAR-10 12-MAR-10        101        560
    SQL>

  • I can't set up time and date / no response or it s...

    Hi guys
    I hope You will help me.
    I purchased nokia 5800 (second hand) for my girlfriend this christmas as a present and everything is fine apart 'time and date settings'.
    When you going to 'setting' and try to select 'date and time' there is no reaction, if you trying open by clicking 'options' and than 'open' it appears straight away  'System error' message or if you trying do it from the home screen/desktop by clicking on the clock 'System error' message appears straight away.
    It is very confusing and driving me mad as this is christmas gift and she can't set up time and date.
    I've tried  update software using Nokia Software Updater and nothing
    I've restored factory setting and nothing as well. 
    Please help me
    Thank You very much for Your time
    Kind regards
    Martin 
    Solved!
    Go to Solution.

    Hi monpar77
    If you are using restore factory settings in "Phone management" due to UDP = User Data Preservation feature of this device that may not be sufficient and you may need to carry out a "hard reset" as detailed elsewhere in the forum. 
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Time and Date (again) over DV

    Hi everyone, thanks for the help with my last problem.
    As expected though I have anther one with regards to a similar issue of time and date taken from a video camera.
    I would like to record footage on DV, either MDV or Digital 8 and transfer it to computer using FireWire, I would like the footage to playback the time and date overlays from the camera (as seen in view finder / LCD) so i can record them to computer.
    Is this possible with DV, i have tried enabling all options concerning this feature on my camera, but i still can't see the time and date through FireWire connection to the computer.
    Are there any FCP settings or specific camera settings you guys know of?
    Thanks for all your help, regards, Jim.

    Jim
    You can not capture the time/date onscreen via FireWire.
    You have 3 options:
    1. Buy/install a capture card with analog AV inputs.
    2. Make a DV copy by connecting analog AV out/inputs.
    3. Buy/connect a external analog>FireWire converter, for example this one:
    http://www.canopus.com/products/ADVC55/index.php
    In all cases, you have to use the analog output from the DV player/camera to display the time/date info.
    Hope this helps.
    Marce.

Maybe you are looking for