MERGE w/ conditional Insert clause

Hi--
Sum Up:Is it possible to run Merge syntax with update and a conditional Insert clauses ?
Question Details
Have a base table Emp and staging table New_Emp with a common identifier Emp_id.
The ideal would be to merge the 2 tables and update Emp using New_Emp values and
insert only some new emp, not all records.
Any ideas ? Thks
Lamine

Absolutely. See the docs. Use the WHEN and WHERE clauses.
Tom Best

Similar Messages

  • MERGE statement without INSERT clause....is possible...?

    Hi everybody...
    MERGE statement without UPDATE or INSERT clause is possible or not
    I want to select from one table and update in another table. So i dont want insert statement and i want to do it in single query....possible solutions are requested.
    Thanks in advance
    pal

    Hi..
    Thanks for ur reply. For MERGE statement, we have to give UPDATE and INSERT clause. this MERGE statement works without INSERT or UPDATE clause.
    Why i am asking is, I want to select how many rows (count(*)) from table1 and based on this count, i have to update in table2
    Both tables r different and for select and for update where clauses are different. Both tables r totally different.
    I want to do it in single query, so i asked this is possible with MERGE statement without INSERT clause.
    Thanks for ur reply

  • Conditional Insert within Merge???

    can we use conditional insert within the merge statement????
    thanks a lot..
    nantha

    NanthaKumarAR wrote:
    is there is any possible way to do so????
    thanks a alot ....
    nanthaHmmm let's look at the conversation so far...
    You: "is this possible?????"
    Me: "No."
    You: "is there is any possible way to do so????"
    I'm now wondering which part of "No" you failed to understand.
    You cannot perform multiple/conditional inserts within a MERGE statement. The purpose of a MERGE statement is to take data and MERGE it into a single table.
    The only messy way I can think of would be to merge into an intermediate table with triggers on it, that takes the merged data and splits it out into the seperate tables. Messy and not likely the best solution to the initial problem, which would probably be better solved by avoiding the use of MERGE in the first place (though we don't know what problem you are actually trying to solve).

  • Conditional where clauses in database adapter

    I am trying to write a query in a database adapter that allows for conditional where clauses. Specifically, I want to include or not include a where clause (and clause) if an input variable is empty or not. Can a prepared statement with lexical parameters be used in a database adapter? Or is there another way to do this?
    Thanks in advance.

    I am afraid that you can only bind parameters to the SQL, you can't bind the SQL itself to the SQL. We do have QueryByExample support, where based on what fields are set in an example object, it will construct a different SQL select.
    If you pass in
    <Address>
    <street/>
    <city>
    <state>CA</state>
    </Address>
    it will return all addresses in California. If you pass in:
    <Address>
    <street/>
    <city>Los Angeles</city>
    <state/>
    </Address>
    it will return all addresses in Los Angeles.
    Thanks
    Steve

  • Syntax for Merge statement to insert into target and update source

    Hello All,
    I want to use Merge statement to insert records when not matched in my target and update records in source when matched. Is it possible to do using Merge statement.
    create table a (aa number)
    create table b (bb number)
    alter table a add flg char(1)
    merge b as target
    using a as source
    on (target.bb = source.aa)
    when matched then
    update set source.flg = 'Y'
    WHEN NOT MATCHED THEN
    insert (target.bb)
    values
    (source.aa)
    Thanks.

    Hi,
    I have no idea about the version of DB, else some new features with respect version can be specified - just for informaitve purpose and to post across the verison of DB in future posts.
    Coming to your issue and requirement.
    if you check the syntax and functionality , then its on Merge on target base only - with respect to Update (matched o columns) and insert (for unmatched columns). Source - as the term is clear. It might not work out on source table.
    - Pavan Kumar N
    - ORACLE OCP - 9i/10g
    https://www.oracleinternals.blogspot.com

  • Implementing Conditional Insert

    I use tips in the article "Implementing Conditional Insert, Update, and Delete Allows for View Objects" from "Steve Muench's Radio Weblog".
    At the start all it's ok, but I found this problem:
    1. I have two views (V1 and V2) over the same entity (E1)
    2. V1 permit insert, delete, update, and select.
    3. V2 overwrite method create and don't allow insert.
    4. If you use V1 and try to insert a record all go ok.
    5. If you use V2 and try to insert a record get an exception "It's not allow insert into V2", It's Ok.
    6. If you use V1 again and try to insert a record you get an exception, that say "It's not allow insert into V2".
    I'm investigate the case, and found that when you insert a record in E1 throw V1, the framework (BC4) try to create the record in the views that are instantiated over the entity E1, for this call method "create" on views.
    Do you know some workaround ?
    thank in advice...

    Hi, again, I have question about this...
    I post it in the forum...
    If I use "isAssociationConsistent()" I have to know all views that depend of same entity, and its privileges. I have problem with that because if I add a view a have to remember to put this in the code.
    I need to confirm: is return of method "this.getEntity(0).isInCache()" true when record was inserting in other entity ?
    May I modify your sample like this:
    public class CustomViewRowImpl extends ViewRowImpl {
    protected void create(AttributeList nvp) {
    if ( this.getEntity(0).isInCache() || getVO().isInsertAllowed()) {
    super.create(nvp);
    else {
    throw new JboException("Insert not allowed in this view");
    thank a lot

  • Difference between MERGE and Update/Insert

    Can anybody pls tell me what is the difference between MERGE and Update/Insert statements.

    hi vivek,
    merge is totally different than normal update and insert.Merge is a combination of update+inserrt.
    Merge statment first checks the data in your table, if data is already exists then it will try to update the data otherwise it will go for insertion.In case of normal update/insert it will not check the data directly it does the specified operation.
    So based on your requirement you have to select the best option.
    Thanks.

  • Conditional Insert

    Hi,
    Is it possible to do a conditional insert? e.g.
    IF :P2_NAME != (SELECT name from hk.appname where name = :P2_NAME) then
    INSERT....
    END IF;So if the value of :P2_NAME doesn't exist within the table then it will be inserted...its to be an addition to a currently existing APEX process (checks that field values aren't null then enters a record into a different table than hk.appname).
    Thanks for any help.
    Mike

    Dird wrote:
    PLS-00405: subquery not allowed in this context As I said:
    IF :P6_NEW_PROJ IS NOT NULL THEN
    proj := lower(:P6_NEW_PROJ);
    ELSE
    proj := :P6_PROJECT;
    END IF;
    insert into hkadm.applic@XXX (appl_name) select proj from dual
    where 0 = (select count(*) from hkadm.applic@XXX where appl_name = proj and rownum = 1);SY.

  • Can you create nested condition in merge(e.g. insert/update) using owb

    Hi,
    Does OWB9iR2 allow you to build in nested condition in merge. such as
    If no match on col1 and col2 then
    if col3 match then no new sequence insert <---
    else insert new sequence;
    else (there is match on col1 and col2)
    update col3 and sequence.
    I have an incremental load for a lookup table, where insert/update is used. There are two match columns and surrogate key is used. When there is no match, it shall not insert a sequence when there is a match on third column. I can not use the 3rd column in the original match because it shall be updated where there is a match for the two match column.
    I am trying to avoid using transformant for performance impact. Thanks

    HIi I think the misleading thing is that in PL/SQL you can use booleans, which is not possible in SQL. So in a PL/SQL tranformation, this is OK:
    a:= case when not orgid_lkup( INGRP1.ORG_ID )
    then get_supid(..)
    else ...
    but, the following SQL does not work:
    select case when not orgid_lkup( INGRP1.ORG_ID )
    then get_supid(..)
    else ...
    into a
    from dual;
    I ended up using only 0/1 as boolean return values for these reasons;
    so I can have:
    select
    case when orgid_lkup( INGRP1.ORG_ID ) = 0 then ...
    though true booleans are better if you don't have to embed them in SQL.
    Antonio

  • SQL merge and after insert or update on ... for each row fires too often?

    Hello,
    there is a base table, which has a companion history table
    - lets say USER_DATA & USER_DATA_HIST.
    For each update on USER_DATA there has to be recorded the old condition of the USER_DATA record into the USER_DATA_HIST (insert new record)
    - to have the history of changes to USER_DATA.
    The first approach was to do the insert for the row trigger:
    trigger user_data_tr_aiu after insert or update on user_data for each rowBut the performance was bad, because for a bulk update to USER_DATA, there have been individual inserts per records.
    So i tried a trick:
    Instead of doing the real insert into USER_DATA_HIST, i collect the USER_DATA_HIST data into a pl/sql collection first.
    And later i do a bulk insert for the collection in the USER_DATA_HIST table with stmt trigger:
    trigger user_data_tr_ra after insert or update on user_dataBut sometimes i recognize, that the list of entries saved in the pl/sql collection are more than my USER_DATA records being updated.
    (BTW, for the update i use SQL merge, because it's driven by another table.)
    As there is a uniq tracking_id in USER_DATA record, i could identify, that there are duplicates.
    If i sort for the tracking_id and remove duplicate i get exactly the #no of records updated by the SQL merge.
    So how comes, that there are duplicates?
    I can try to make a sample 'sqlplus' program, but it will take some time.
    But maybe somebody knows already about some issues here(?!)
    - many thanks!
    best regards,
    Frank

    Hello
    Not sure really. Although it shouldn't take long to do a test case - it only took me 10 mins....
    SQL>
    SQL> create table USER_DATA
      2  (   id      number,
      3      col1    varchar2(100)
      4  )
      5  /
    Table created.
    SQL>
    SQL> CREATE TABLE USER_DATA_HIST
      2  (   id      number,
      3      col1    varchar2(100),
      4      tmsp    timestamp
      5  )
      6  /
    Table created.
    SQL>
    SQL> CREATE OR REPLACE PACKAGE pkg_audit_user_data
      2  IS
      3
      4      PROCEDURE p_Init;
      5
      6      PROCEDURE p_Log
      7      (   air_UserData        IN user_data%ROWTYPE
      8      );
      9
    10      PROCEDURE p_Write;
    11  END;
    12  /
    Package created.
    SQL> CREATE OR REPLACE PACKAGE BODY pkg_audit_user_data
      2  IS
      3
      4      TYPE tt_UserData        IS TABLE OF user_data_hist%ROWTYPE INDEX BY BINARY_INTEGER;
      5
      6      pt_UserData             tt_UserData;
      7
      8      PROCEDURE p_Init
      9      IS
    10
    11      BEGIN
    12
    13
    14          IF pt_UserData.COUNT > 0 THEN
    15
    16              pt_UserData.DELETE;
    17
    18          END IF;
    19
    20      END;
    21
    22      PROCEDURE p_Log
    23      (   air_UserData        IN user_data%ROWTYPE
    24      )
    25      IS
    26          ln_Idx              BINARY_INTEGER;
    27
    28      BEGIN
    29
    30          ln_Idx := pt_UserData.COUNT + 1;
    31
    32          pt_UserData(ln_Idx).id     := air_UserData.id;
    33          pt_UserData(ln_Idx).col1   := air_UserData.col1;
    34          pt_UserData(ln_Idx).tmsp   := SYSTIMESTAMP;
    35
    36      END;
    37
    38      PROCEDURE p_Write
    39      IS
    40
    41      BEGIN
    42
    43          FORALL li_Idx IN INDICES OF pt_UserData
    44              INSERT
    45              INTO
    46                  user_data_hist
    47              VALUES
    48                  pt_UserData(li_Idx);
    49
    50      END;
    51  END;
    52  /
    Package body created.
    SQL>
    SQL> CREATE OR REPLACE TRIGGER preu_s_user_data BEFORE UPDATE ON user_data
      2  DECLARE
      3
      4  BEGIN
      5
      6      pkg_audit_user_data.p_Init;
      7
      8  END;
      9  /
    Trigger created.
    SQL> CREATE OR REPLACE TRIGGER preu_r_user_data BEFORE UPDATE ON user_data
      2  FOR EACH ROW
      3  DECLARE
      4
      5      lc_Row      user_data%ROWTYPE;
      6
      7  BEGIN
      8
      9      lc_Row.id   := :NEW.id;
    10      lc_Row.col1 := :NEW.col1;
    11
    12      pkg_audit_user_data.p_Log
    13      (   lc_Row
    14      );
    15
    16  END;
    17  /
    Trigger created.
    SQL> CREATE OR REPLACE TRIGGER postu_s_user_data AFTER UPDATE ON user_data
      2  DECLARE
      3
      4  BEGIN
      5
      6      pkg_audit_user_data.p_Write;
      7
      8  END;
      9  /
    Trigger created.
    SQL>
    SQL>
    SQL> insert
      2  into
      3      user_data
      4  select
      5      rownum,
      6      dbms_random.string('u',20)
      7  from
      8      dual
      9  connect by
    10      level <=10
    11  /
    10 rows created.
    SQL> select * from user_data
      2  /
            ID COL1
             1 GVZHKXSSJZHUSLLIDQTO
             2 QVNXLTGJXFUDUHGYKANI
             3 GTVHDCJAXLJFVTFSPFQI
             4 CNVEGOTDLZQJJPVUXWYJ
             5 FPOTZAWKMWHNOJMMIOKP
             6 BZKHAFATQDBUVFBCOSPT
             7 LAQAIDVREFJZWIQFUPMP
             8 DXFICIPCBCFTPAPKDGZF
             9 KKSMMRAQUORRPUBNJFCK
            10 GBLTFZJAOPKFZFCQPGYW
    10 rows selected.
    SQL> select * from user_data_hist
      2  /
    no rows selected
    SQL>
    SQL> MERGE
      2  INTO
      3      user_data a
      4  USING
      5  (   SELECT
      6          rownum + 8 id,
      7          dbms_random.string('u',20) col1
      8      FROM
      9          dual
    10      CONNECT BY
    11          level <= 10
    12  ) b
    13  ON (a.id = b.id)
    14  WHEN MATCHED THEN
    15      UPDATE SET a.col1 = b.col1
    16  WHEN NOT MATCHED THEN
    17      INSERT(a.id,a.col1)
    18      VALUES (b.id,b.col1)
    19  /
    10 rows merged.
    SQL> select * from user_data_hist
      2  /
            ID COL1                 TMSP
             9 XGURXHHZGSUKILYQKBNB 05-AUG-11 10.04.15.577989
            10 HLVUTUIFBAKGMXBDJTSL 05-AUG-11 10.04.15.578090
    SQL> select * from v$version
      2  /
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - ProductionHTH
    David

  • Conditional insert in plsql

    Hi friends,
    I am a beginner in Oracle PLSQL. I need to insert a row into a table based on a condition. The condition is to check if the value is already there in another table.
    i.e, If the username is already present in the users table then the username should not be added to username table. I have written a stored procedure to insert into the username table but need i do not know how to check for the condition.
    Could you please let me know how to get this. I tried a lot but getting compilation errors.
    Regards,
    Padeep

    Use Control Statements
    http://download.oracle.com/docs/cd/E11882_01/appdev.112/e17126/controlstatements.htm
    Such as: IF-THEN-ELSE or CASE
    That documentation is for 11.2. Your Oracle version may be different, but since IF statements have been around for a long time, this will do.
    Alternatively, consider a unique index on the field.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17120/indexes003.htm#ADMIN11724
    Or even consider using a MERGE statement:
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/statements_9016.htm#SQLRF01606

  • Merge Mapping Without Update Clause

    Hi,
    I'm using OWB 9i to generate a mapping to be deployed in to a 10g database. I want to create a merge mapping that performs an insert only, i.e. no update. I'm not able to do this. The validation error I end up with is:
    "One of the mapped attributes needs to be set for Update: Use for loading: Yes."
    But if I do this, an update clause is appended to my merge.
    Can anyone suggest how I can get around this ?

    Hi,
    I am not sure whether OWB9i allows you to exclude either INSERT OR UPDATE, as this functionality is clearly a Oracle 10g feature.
    You can certainly work around by updating any audit columns ( like last_updated_date etc) only for UPDATEs.
    HTH
    Nandoo

  • Merge statement and insert into a third table

    I'm wondering if the merge statement will work in my case. I'm loading a file into a temporary table. I want to compare this temporary table with an existing source table (there are multiple source tables, I've thought of breaking them up into separate statements) and write out any differences to a third table. The third table would be used for future processing on the rows that are found to be different. Do you think this is possible using the merge command?

    Why use the merge command for that purpose?
    If you want to find out the differences of two tables and put the result into a third one then you should do
    insert into table_c
    query_a
    minus
    query_b
    or
    insert into table_c
    (query_a
    minus
    query_b)
    union all
    (query_b
    minus
    query_a)
    hth

  • Plain SQL Conditional WHERE Clause with two sub-selects

    Hi SQL Experts,
    I need a bit quick of help with a query.
    This is a "select" statement for an OBI repository phyiscal table source object.
    So I cant put PL/SQL or Stored Procedures in it. I just need
    to have two different conditions/selects depending on the user role (this information comes
    from the session).
    The above, does not work:
    --------------ORA00905. 00000 -  "missing keyword"
      SELECT OFFICENO FROM orgunit
      WHERE
      CASE WHEN 'SESSION_VARIABLE' LIKE '%globalmanager%' THEN  
            ASSIGNEDOFFICES =
            SELECT DISTINCT ASSIGNEDOFFICES
            FROM USERSTABLE INNER JOIN orgunit ON
            orgunit.OFFICEKEY = USERSTABLE.OFFICEKEY
            WHERE USERSTABLE.USERNAME ='VALUEOF(NQ_SESSION.USER)'
      ELSE
            OFFICENO =
            SELECT DISTINCT OFFICENO FROM USERSTABLE
            INNER JOIN orgunit ON
            orgunit.OFFICEKEY = USERSTABLE.OFFICEKEY
            WHERE USERSTABLE.USERNAME ='VALUEOF(NQ_SESSION.USER)'
      END;   
    Can anyone help?

    Hi,
    I can't tell what you want to do just by looking at code that doesn't do it. Maybe:
    SELECT  officeno
    FROM    orgunit
    WHERE   (    session_variable  LIKE '%globalmanager%'
            AND  assignedofficies  IN
                     SELECT  assignedoffices
                     FROM    usertable  u1
                     JOIN    orgunit    o1  ON o1.officekey = u1.officekey
                     WHERE   u1.username    = 'VALUEOF(NQ_SESSION.USER)'
    OR      (    NVL ( session_variable
                     )        NOT LIKE '%globalmanager%'
            AND  officeno        IN
                     SELECT  officeno
                     FROM    usertable  u2
                     JOIN    orgunit    o2  ON  o2.officekey = u2.officekey
                     WHERE   u2.username   = 'VALUEOF(NQ_SESSION.USER)'
    There might be some simpler and more efficient way, depending on your tables and your reuirements.
    The condition u2.username   = 'VALUEOF(NQ_SESSION.USER)' is almost certainly not what you really want.
    Whenever you have a question, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002#9362002

  • Help on MERGE - update or insert problem

    Dear Everybody,
    I've a DB with 3 tables to serve for Staff Time Attendance purpose, table tbl_TimeSheetIn(EmpCode, CardID, DateClock, TimeClock)  using for input RAW text file exported from TimeMachine, the same for tbl_TimeSheetOut (EmpCode, CardID, DateClock, TimeClock).
    Noted that we may have over 2 record with same EmpCode, CardID, DateClock (but different TimeClock) due to Staff can have admin shift or split shift (in, out 2 times/day).
    Then I will import them to table tbl_TimeSheet(EmpCode, CardID, DateWork, TimeIn, TimeOut) for reporting purpose.
    Firstly I insert all the records in tbl_TimeSheetIn to tbl_TimeSheet, it was import successful. Then when I using MERGE to update (if exist records with same CardID and TimeIn then update TimeOut to tbl_TimeSheet) / or insert (if not exist).
    The MS SQL Server 2008 R2 told me that error : "sql merge cannot update the same row of the target table multiple times..."
    Please help me to overcome.
    Thanks.

    Dear All,
    I'm not really clear on your answers, please correct me if I'm posting wrong:
    1/ Table TimeSheet SQL create:
    CREATE TABLE [dbo].[tbl_Timesheet](
        [EmpCode] [varchar](15) NOT NULL,
        [FullName] [varchar](255) NULL,
        [CardID] [varchar](50) NULL,
        [DateWork] [datetime] NULL,
        [ShiftCode] [varchar](15) NULL,
        [TimeIn] [varchar](50) NULL,
        [TimeOut] [varchar](50) NULL,
        [TimeIn1] [varchar](50) NULL,
        [TimeOut1] [varchar](50) NULL,
        [GetData] [bit] NULL,
        [Machine] [varchar](2) NULL,
        [DayWork] [numeric](18, 0) NULL,
        [TimeWork] [decimal](18, 2) NULL,
        [OT] [decimal](18, 2) NULL,
        [OTCheck] [bit] NULL,
        [TimeOverKind] [varchar](50) NULL,
        [PH] [bit] NULL,
        [SplitShift] [bit] NULL,
        [NightHours] [numeric](18, 0) NULL,
        [NightShift] [bit] NULL,
        [PersonCreate] [varchar](50) NULL,
        [DateCreate] [datetime] NULL,
        [PersonUpdate] [varchar](50) NULL,
        [DateUpdate] [datetime] NULL,
        [PersonDelete] [varchar](50) NULL,
        [DateDelete] [datetime] NULL,
        [Status] [char](1) NULL,
        [RepairNight] [bit] NULL
    ) ON [PRIMARY]
    2/ Insert into table TimeSheet:
    INSERT INTO [galaxy].[dbo].[tbl_Timesheet]
               ([EmpCode]
               ,[FullName]
               ,[CardID]
               ,[DateWork]
               ,[ShiftCode]
               ,[TimeIn]
               ,[TimeOut]
               ,[TimeIn1]
               ,[TimeOut1]
               ,[GetData]
               ,[Machine]
               ,[DayWork]
               ,[TimeWork]
               ,[OT]
               ,[OTCheck]
               ,[TimeOverKind]
               ,[PH]
               ,[SplitShift]
               ,[NightHours]
               ,[NightShift]
               ,[PersonCreate]
               ,[DateCreate]
               ,[PersonUpdate]
               ,[DateUpdate]
               ,[PersonDelete]
               ,[DateDelete]
               ,[Status]
               ,[RepairNight])
         VALUES
               (<EmpCode, varchar(15),>
               ,<FullName, varchar(255),>
               ,<CardID, varchar(50),>
               ,<DateWork, datetime,>
               ,<ShiftCode, varchar(15),>
               ,<TimeIn, varchar(50),>
               ,<TimeOut, varchar(50),>
               ,<TimeIn1, varchar(50),>
               ,<TimeOut1, varchar(50),>
               ,<GetData, bit,>
               ,<Machine, varchar(2),>
               ,<DayWork, numeric(18,0),>
               ,<TimeWork, decimal(18,2),>
               ,<OT, decimal(18,2),>
               ,<OTCheck, bit,>
               ,<TimeOverKind, varchar(50),>
               ,<PH, bit,>
               ,<SplitShift, bit,>
               ,<NightHours, numeric(18,0),>
               ,<NightShift, bit,>
               ,<PersonCreate, varchar(50),>
               ,<DateCreate, datetime,>
               ,<PersonUpdate, varchar(50),>
               ,<DateUpdate, datetime,>
               ,<PersonDelete, varchar(50),>
               ,<DateDelete, datetime,>
               ,<Status, char(1),>
               ,<RepairNight, bit,>)
    GO
    3/ Create table TimeSheetIN: (the table TimeSheetOUT is the same structure)
    CREATE TABLE [dbo].[tbl_TimeSheetIn](
        [EmpCode] [varchar](50) NULL,
        [FullName] [varchar](255) NULL,
        [CardID] [varchar](50) NULL,
        [Shift] [varchar](50) NULL,
        [In] [varchar](50) NULL,
        [DateClock] [datetime] NULL,
        [TimeClock] [nvarchar](50) NULL,
        [Machine] [nvarchar](50) NULL,
        [SplipShift] [bit] NULL,
        [NightShift] [bit] NULL,
        [Status] [bit] NULL
    ) ON [PRIMARY]
    4/ Sample TIME-IN RAW data saved by TimeMachine:
    The first and last "01" is meaning 01= TimeMachineIN, 02 = TimeMachineOUT
    The second "08/08/2014-hour:minute" is the timestamp.
    The third field "056754" is the Card ID that swiped to the TimeMachine.
    01-08/08/2014-03:45-056754-000-01
    01-08/08/2014-04:42-040728-000-01
    01-08/08/2014-04:51-057669-000-01
    01-08/08/2014-04:55-031901-000-01
    01-08/08/2014-05:04-043041-000-01
    01-08/08/2014-05:06-000009-000-01
    01-08/08/2014-05:06-000009-000-01
    01-08/08/2014-05:06-000009-000-01
    01-08/08/2014-05:07-053475-000-01
    01-08/08/2014-05:07-052484-000-01
    01-08/08/2014-05:10-052903-000-01
    01-08/08/2014-05:14-003793-000-01
    01-08/08/2014-05:14-041943-000-01
    01-08/08/2014-05:17-054198-000-01
    01-08/08/2014-05:22-063167-000-01
    01-08/08/2014-05:22-063167-000-01
    01-08/08/2014-05:22-011222-000-01
    01-08/08/2014-05:24-063456-000-01
    01-08/08/2014-05:25-003774-000-01
    01-08/08/2014-05:26-013766-000-01
    01-08/08/2014-05:28-050486-000-01
    01-08/08/2014-05:28-004848-000-01
    01-08/08/2014-05:28-002451-000-01
    01-08/08/2014-05:30-003081-000-01
    01-08/08/2014-05:31-042905-001-01
    01-08/08/2014-05:32-052972-001-01
    01-08/08/2014-05:33-052784-001-01
    01-08/08/2014-05:33-006167-001-01
    01-08/08/2014-05:34-059076-001-01
    01-08/08/2014-05:35-062392-001-01
    01-08/08/2014-05:35-055203-001-01
    01-08/08/2014-05:39-008412-001-01
    01-08/08/2014-05:40-001304-001-01
    01-08/08/2014-05:40-000425-001-01
    01-08/08/2014-05:40-041020-001-01
    01-08/08/2014-05:40-004425-001-01
    01-08/08/2014-05:41-005730-001-01
    01-08/08/2014-05:41-000150-001-01
    01-08/08/2014-05:41-039497-001-01
    01-08/08/2014-05:42-020359-001-01
    01-08/08/2014-05:44-002768-001-01
    01-08/08/2014-05:46-008554-001-01
    01-08/08/2014-05:47-062433-001-01
    01-08/08/2014-05:49-057113-001-01
    01-08/08/2014-05:50-008897-000-01
    01-08/08/2014-05:51-063289-000-01
    01-08/08/2014-05:52-063094-000-01
    01-08/08/2014-05:52-056876-000-01
    01-08/08/2014-05:56-000623-000-01
    01-08/08/2014-05:57-057709-000-01
    01-08/08/2014-05:58-059140-000-01
    01-08/08/2014-05:59-060519-000-01
    01-08/08/2014-05:59-043165-000-01
    01-08/08/2014-06:01-031229-000-01
    01-08/08/2014-06:04-051997-000-01
    01-08/08/2014-06:07-028859-000-01
    01-08/08/2014-06:10-032838-000-01
    01-08/08/2014-06:10-002286-000-01
    01-08/08/2014-06:11-058050-000-01
    01-08/08/2014-06:12-001798-000-01
    01-08/08/2014-06:15-030404-000-01
    01-08/08/2014-06:18-059036-000-01
    01-08/08/2014-06:21-058131-000-01
    01-08/08/2014-06:22-018613-000-01
    01-08/08/2014-06:23-054936-000-01
    01-08/08/2014-06:26-033243-000-01
    01-08/08/2014-06:26-054015-000-01
    01-08/08/2014-06:27-063110-000-01
    01-08/08/2014-06:28-055311-000-01
    01-08/08/2014-06:28-034760-000-01
    01-08/08/2014-06:31-061295-000-01
    01-08/08/2014-06:32-058615-000-01
    01-08/08/2014-06:33-000102-000-01
    01-08/08/2014-06:33-021545-000-01
    01-08/08/2014-06:33-054996-000-01
    01-08/08/2014-06:34-048489-000-01
    01-08/08/2014-06:36-014041-000-01
    01-08/08/2014-06:36-048227-000-01
    01-08/08/2014-06:40-065214-000-01
    01-08/08/2014-06:43-007016-000-01
    01-08/08/2014-06:45-023272-000-01
    01-08/08/2014-06:46-032925-000-01
    01-08/08/2014-06:47-025179-000-01
    01-08/08/2014-06:48-064937-000-01
    01-08/08/2014-06:50-050279-000-01
    01-08/08/2014-06:51-049712-000-01
    01-08/08/2014-06:52-033507-000-01
    01-08/08/2014-06:55-041976-000-01
    01-08/08/2014-06:55-005446-000-01
    01-08/08/2014-06:56-063172-000-01
    01-08/08/2014-06:58-063867-000-01
    01-08/08/2014-07:01-019547-000-01
    01-08/08/2014-07:01-019547-000-01
    01-08/08/2014-07:02-016590-000-01
    01-08/08/2014-07:02-056763-000-01
    01-08/08/2014-07:03-027498-000-01
    01-08/08/2014-07:07-051058-000-01
    01-08/08/2014-07:10-051587-001-01
    01-08/08/2014-07:10-053394-001-01
    01-08/08/2014-07:11-045334-001-01
    01-08/08/2014-07:13-038671-001-01
    01-08/08/2014-07:13-005557-001-01
    01-08/08/2014-07:14-064639-001-01
    01-08/08/2014-07:14-032678-001-01
    01-08/08/2014-07:15-061645-001-01
    01-08/08/2014-07:16-003595-001-01
    01-08/08/2014-07:17-050347-001-01
    01-08/08/2014-07:17-053350-001-01
    01-08/08/2014-07:17-014524-001-01
    01-08/08/2014-07:18-010926-001-01
    01-08/08/2014-07:18-048403-001-01
    01-08/08/2014-07:18-050532-001-01
    01-08/08/2014-07:19-047985-001-01
    01-08/08/2014-07:20-061195-001-01
    01-08/08/2014-07:21-061436-001-01
    01-08/08/2014-07:21-016390-001-01
    01-08/08/2014-07:22-016390-001-01
    01-08/08/2014-07:22-016390-001-01
    01-08/08/2014-07:22-057759-001-01
    01-08/08/2014-07:23-054787-001-01
    01-08/08/2014-07:23-059724-001-01
    01-08/08/2014-07:24-052044-001-01
    01-08/08/2014-07:24-049546-001-01
    01-08/08/2014-07:24-027477-001-01
    01-08/08/2014-07:26-048695-001-01
    01-08/08/2014-07:27-046872-001-01
    01-08/08/2014-07:27-050108-001-01
    01-08/08/2014-07:27-059403-001-01
    01-08/08/2014-07:27-013749-001-01
    01-08/08/2014-07:27-060240-001-01
    01-08/08/2014-07:27-056000-001-01
    01-08/08/2014-07:27-038821-001-01
    01-08/08/2014-07:27-050474-001-01
    01-08/08/2014-07:28-061648-001-01
    01-08/08/2014-07:28-057240-001-01
    01-08/08/2014-07:31-061966-001-01
    01-08/08/2014-07:32-051497-001-01
    01-08/08/2014-07:32-054737-001-01
    01-08/08/2014-07:32-052703-001-01
    01-08/08/2014-07:32-064745-001-01
    01-08/08/2014-07:33-054460-001-01
    01-08/08/2014-07:33-054737-001-01
    01-08/08/2014-07:34-055981-001-01
    01-08/08/2014-07:35-055981-001-01
    01-08/08/2014-07:35-055981-001-01
    01-08/08/2014-07:35-045137-001-01
    01-08/08/2014-07:35-051481-001-01
    01-08/08/2014-07:35-051481-001-01
    01-08/08/2014-07:36-065152-001-01
    01-08/08/2014-07:37-058405-001-01
    01-08/08/2014-07:37-029877-001-01
    01-08/08/2014-07:37-052475-001-01
    01-08/08/2014-07:37-051129-001-01
    01-08/08/2014-07:37-045677-001-01
    01-08/08/2014-07:38-041931-001-01
    01-08/08/2014-07:38-050680-001-01
    01-08/08/2014-07:38-040996-001-01
    01-08/08/2014-07:38-059372-001-01
    01-08/08/2014-07:39-027264-001-01
    01-08/08/2014-07:39-003033-001-01
    01-08/08/2014-07:39-014569-001-01
    01-08/08/2014-07:40-063698-001-01
    01-08/08/2014-07:40-003634-001-01
    01-08/08/2014-07:43-007651-001-01
    01-08/08/2014-07:43-045060-001-01
    01-08/08/2014-07:44-038222-001-01
    01-08/08/2014-07:44-047332-001-01
    01-08/08/2014-07:45-006906-001-01
    01-08/08/2014-07:45-006906-001-01
    01-08/08/2014-07:45-046651-001-01
    01-08/08/2014-07:45-039297-001-01
    01-08/08/2014-07:48-045246-001-01
    01-08/08/2014-07:48-053924-001-01
    01-08/08/2014-07:50-003076-001-01
    01-08/08/2014-07:51-055873-001-01
    01-08/08/2014-07:52-050955-001-01
    01-08/08/2014-07:52-001166-001-01
    01-08/08/2014-07:52-035073-001-01
    01-08/08/2014-07:52-055622-001-01
    01-08/08/2014-07:53-027282-001-01
    01-08/08/2014-07:53-048704-001-01
    01-08/08/2014-07:54-004748-001-01
    01-08/08/2014-07:55-038200-001-01
    01-08/08/2014-07:55-051753-001-01
    01-08/08/2014-07:56-054934-001-01
    01-08/08/2014-07:56-061067-001-01
    01-08/08/2014-07:57-057270-001-01
    01-08/08/2014-07:57-060981-001-01
    01-08/08/2014-07:57-023918-001-01
    01-08/08/2014-07:58-047387-001-01
    01-08/08/2014-08:00-052597-001-01
    01-08/08/2014-08:00-045822-001-01
    01-08/08/2014-08:00-048454-001-01
    01-08/08/2014-08:01-050857-001-01
    01-08/08/2014-08:02-033425-001-01
    01-08/08/2014-08:02-063120-001-01
    01-08/08/2014-08:03-018354-001-01
    01-08/08/2014-08:03-047112-001-01
    01-08/08/2014-08:08-058460-001-01
    01-08/08/2014-08:20-005220-001-01
    01-08/08/2014-08:30-004555-001-01
    01-08/08/2014-08:32-017684-001-01
    01-08/08/2014-08:35-017731-001-01
    01-08/08/2014-08:39-002712-001-01
    01-08/08/2014-08:44-047975-001-01
    01-08/08/2014-08:46-057662-001-01
    01-08/08/2014-08:46-063944-001-01
    01-08/08/2014-08:55-059774-000-01
    01-08/08/2014-09:03-010054-000-01
    01-08/08/2014-09:10-020059-000-01
    01-08/08/2014-09:14-042237-000-01
    01-08/08/2014-09:18-022890-000-01
    01-08/08/2014-09:28-023631-000-01
    01-08/08/2014-09:31-015077-000-01
    01-08/08/2014-09:34-008631-000-01
    01-08/08/2014-09:36-049989-000-01
    01-08/08/2014-09:38-060644-000-01
    01-08/08/2014-09:42-057517-000-01
    01-08/08/2014-09:43-027757-000-01
    01-08/08/2014-09:45-052521-000-01
    01-08/08/2014-09:46-049662-000-01
    01-08/08/2014-09:48-032028-000-01
    01-08/08/2014-09:49-001324-000-01
    01-08/08/2014-09:49-056744-000-01
    01-08/08/2014-09:49-028800-000-01
    01-08/08/2014-09:55-005286-000-01
    01-08/08/2014-10:03-054784-000-01
    01-08/08/2014-10:07-019507-000-01
    01-08/08/2014-10:08-025898-000-01
    01-08/08/2014-10:14-060406-000-01
    01-08/08/2014-10:14-007510-000-01
    01-08/08/2014-10:16-059298-000-01
    01-08/08/2014-10:20-034286-000-01
    01-08/08/2014-10:21-034091-000-01
    01-08/08/2014-10:21-045028-000-01
    01-08/08/2014-10:28-055300-000-01
    01-08/08/2014-10:33-005604-000-01
    01-08/08/2014-10:38-005905-000-01
    01-08/08/2014-10:38-064865-000-01
    01-08/08/2014-10:41-025212-000-01
    01-08/08/2014-10:48-041915-000-01
    01-08/08/2014-10:51-051505-000-01
    01-08/08/2014-10:53-019945-000-01
    01-08/08/2014-11:07-041655-000-01
    01-08/08/2014-11:19-014515-000-01
    01-08/08/2014-11:26-049413-000-01
    01-08/08/2014-11:27-062044-000-01
    01-08/08/2014-11:28-049233-000-01
    01-08/08/2014-11:42-026640-000-01
    01-08/08/2014-11:47-064359-000-01
    01-08/08/2014-11:48-007078-000-01
    01-08/08/2014-11:52-048103-000-01
    01-08/08/2014-11:53-014852-000-01
    01-08/08/2014-12:01-026113-000-01
    01-08/08/2014-12:01-008824-000-01
    01-08/08/2014-12:01-052499-000-01
    01-08/08/2014-12:04-041278-000-01
    01-08/08/2014-12:31-005443-000-01
    01-08/08/2014-12:32-053289-000-01
    01-08/08/2014-12:36-060865-000-01
    01-08/08/2014-12:39-030586-000-01
    01-08/08/2014-12:41-055094-000-01
    01-08/08/2014-12:48-050863-000-01
    01-08/08/2014-12:49-036761-000-01
    01-08/08/2014-12:51-053258-000-01
    01-08/08/2014-12:55-046322-000-01
    01-08/08/2014-13:00-058606-000-01
    01-08/08/2014-13:04-029842-000-01
    01-08/08/2014-13:05-008027-000-01
    01-08/08/2014-13:07-064275-000-01
    01-08/08/2014-13:07-055346-000-01
    01-08/08/2014-13:08-006385-000-01
    01-08/08/2014-13:09-010322-000-01
    01-08/08/2014-13:14-009055-000-01
    01-08/08/2014-13:16-021256-000-01
    01-08/08/2014-13:17-007973-000-01
    01-08/08/2014-13:21-024016-000-01
    01-08/08/2014-13:23-015629-000-01
    01-08/08/2014-13:23-048406-000-01
    01-08/08/2014-13:26-049452-000-01
    01-08/08/2014-13:27-057269-000-01
    01-08/08/2014-13:27-018685-000-01
    01-08/08/2014-13:28-005590-000-01
    01-08/08/2014-13:31-000381-000-01
    01-08/08/2014-13:31-033454-000-01
    01-08/08/2014-13:35-063564-000-01
    01-08/08/2014-13:35-032226-000-01
    01-08/08/2014-13:35-048433-000-01
    01-08/08/2014-13:36-042137-000-01
    01-08/08/2014-13:38-060938-000-01
    01-08/08/2014-13:39-041270-000-01
    01-08/08/2014-13:40-064443-000-01
    01-08/08/2014-13:40-055690-000-01
    01-08/08/2014-13:40-000687-000-01
    01-08/08/2014-13:41-055236-000-01
    01-08/08/2014-13:43-058536-000-01
    01-08/08/2014-13:43-062012-000-01
    01-08/08/2014-13:43-062012-000-01
    01-08/08/2014-13:44-056544-000-01
    01-08/08/2014-13:45-046377-000-01
    01-08/08/2014-13:47-051446-000-01
    01-08/08/2014-13:47-010440-000-01
    01-08/08/2014-13:48-031836-000-01
    01-08/08/2014-13:48-031836-000-01
    01-08/08/2014-13:51-054780-000-01
    01-08/08/2014-13:51-054780-000-01
    01-08/08/2014-13:53-057966-000-01
    01-08/08/2014-13:55-054056-000-01
    01-08/08/2014-13:59-037241-000-01
    01-08/08/2014-14:00-055587-000-01
    01-08/08/2014-14:00-061113-000-01
    01-08/08/2014-14:02-012158-000-01
    01-08/08/2014-14:03-023550-000-01
    01-08/08/2014-14:04-003850-000-01
    01-08/08/2014-14:05-034102-000-01
    01-08/08/2014-14:07-004271-000-01
    01-08/08/2014-14:09-051288-000-01
    01-08/08/2014-14:11-023683-000-01
    01-08/08/2014-14:11-042140-000-01
    01-08/08/2014-14:13-063106-000-01
    01-08/08/2014-14:15-029901-000-01
    01-08/08/2014-14:22-052273-000-01
    01-08/08/2014-14:22-043073-000-01
    01-08/08/2014-14:25-001497-000-01
    01-08/08/2014-14:25-042960-000-01
    01-08/08/2014-14:28-049727-000-01
    01-08/08/2014-14:30-046112-000-01
    01-08/08/2014-14:31-059973-000-01
    01-08/08/2014-14:32-014674-000-01
    01-08/08/2014-14:33-032273-000-01
    01-08/08/2014-14:33-063760-000-01
    01-08/08/2014-14:34-004670-000-01
    01-08/08/2014-14:35-058519-000-01
    01-08/08/2014-14:37-003641-000-01
    01-08/08/2014-14:38-064434-000-01
    01-08/08/2014-14:38-033137-000-01
    01-08/08/2014-14:38-033137-000-01
    01-08/08/2014-14:38-063678-000-01
    01-08/08/2014-14:39-002798-000-01
    01-08/08/2014-14:41-058884-000-01
    01-08/08/2014-14:41-005746-000-01
    01-08/08/2014-14:42-048181-000-01
    01-08/08/2014-14:46-045659-000-01
    01-08/08/2014-14:46-054010-000-01
    01-08/08/2014-14:47-011094-000-01
    01-08/08/2014-14:50-001699-000-01
    01-08/08/2014-14:58-007854-000-01
    01-08/08/2014-15:15-055981-000-01
    01-08/08/2014-15:33-046290-000-01
    01-08/08/2014-15:39-035301-000-01
    01-08/08/2014-16:16-041655-000-01
    01-08/08/2014-16:16-051505-000-01
    01-08/08/2014-16:18-050966-000-01
    01-08/08/2014-16:19-055651-000-01
    01-08/08/2014-16:20-027757-000-01
    01-08/08/2014-16:25-023631-000-01
    01-08/08/2014-16:27-003052-000-01
    01-08/08/2014-16:27-015077-000-01
    01-08/08/2014-16:28-049989-000-01
    01-08/08/2014-16:32-002895-000-01
    01-08/08/2014-16:45-058424-000-01
    01-08/08/2014-16:49-027264-000-01
    01-08/08/2014-16:55-064582-000-01
    01-08/08/2014-16:57-034286-000-01
    01-08/08/2014-16:58-032028-000-01
    01-08/08/2014-17:14-056744-000-01
    01-08/08/2014-17:18-013766-000-01
    01-08/08/2014-17:27-025898-000-01
    01-08/08/2014-17:27-007510-000-01
    01-08/08/2014-17:30-050108-000-01
    01-08/08/2014-17:33-059298-000-01
    01-08/08/2014-17:49-045028-000-01
    01-08/08/2014-17:54-034091-000-01
    01-08/08/2014-21:03-047660-000-01
    01-08/08/2014-21:07-050663-000-01
    01-08/08/2014-21:14-064154-000-01
    01-08/08/2014-21:16-059488-000-01
    01-08/08/2014-21:17-058243-000-01
    01-08/08/2014-21:25-059314-000-01
    01-08/08/2014-21:25-053258-000-01
    01-08/08/2014-21:28-018754-000-01
    01-08/08/2014-21:29-049408-000-01
    01-08/08/2014-21:29-049408-000-01
    01-08/08/2014-21:30-014785-000-01
    01-08/08/2014-21:35-060117-000-01
    01-08/08/2014-21:40-000256-000-01
    01-08/08/2014-21:40-000256-000-01
    01-08/08/2014-21:40-000256-000-01
    01-08/08/2014-21:42-048110-000-01
    01-08/08/2014-21:46-055346-000-01
    01-08/08/2014-21:46-051083-000-01
    01-08/08/2014-21:47-008129-000-01
    01-08/08/2014-21:47-008129-000-01
    01-08/08/2014-21:54-002058-000-01
    01-08/08/2014-21:54-050422-000-01
    01-08/08/2014-21:56-013855-000-01
    01-08/08/2014-21:59-052616-000-01
    01-08/08/2014-22:01-006197-000-01
    01-08/08/2014-22:01-060957-000-01
    01-08/08/2014-22:02-031397-000-01
    01-08/08/2014-22:03-054986-000-01
    01-08/08/2014-22:04-056055-000-01
    01-08/08/2014-22:04-045991-000-01
    01-08/08/2014-22:12-064878-000-01
    01-08/08/2014-22:15-032722-000-01
    01-08/08/2014-22:16-063895-000-01
    01-08/08/2014-22:31-058007-000-01
    01-08/08/2014-22:43-017464-000-01
    5/ Sample TIME-OUT Raw data saved by TimeMachine:
    02-08/08/2014-00:02-043073-000-02
    02-08/08/2014-00:02-001497-000-02
    02-08/08/2014-00:03-053573-000-02
    02-08/08/2014-00:05-052929-000-02
    02-08/08/2014-00:07-035301-000-02
    02-08/08/2014-00:07-035301-000-02
    02-08/08/2014-00:11-041278-000-02
    02-08/08/2014-00:16-001699-000-02
    02-08/08/2014-00:21-023272-000-02
    02-08/08/2014-00:29-055867-000-02
    02-08/08/2014-00:33-063678-000-02
    02-08/08/2014-00:34-003052-000-02
    02-08/08/2014-00:34-010054-000-02
    02-08/08/2014-00:34-063760-000-02
    02-08/08/2014-00:53-011094-000-02
    02-08/08/2014-00:58-058424-000-02
    02-08/08/2014-01:15-055921-000-02
    02-08/08/2014-01:19-055651-000-02
    02-08/08/2014-06:17-026526-000-02
    02-08/08/2014-06:23-050663-000-02
    02-08/08/2014-06:25-053258-000-02
    02-08/08/2014-06:31-018008-000-02
    02-08/08/2014-06:34-002058-000-02
    02-08/08/2014-06:40-050422-000-02
    02-08/08/2014-06:40-059314-000-02
    02-08/08/2014-06:40-059314-000-02
    02-08/08/2014-06:48-048110-000-02
    02-08/08/2014-06:48-060117-000-02
    02-08/08/2014-06:51-052005-000-02
    02-08/08/2014-06:54-058243-000-02
    02-08/08/2014-06:54-049408-000-02
    02-08/08/2014-06:59-023134-000-02
    02-08/08/2014-07:08-056055-000-02
    02-08/08/2014-07:30-013855-000-02
    02-08/08/2014-07:31-060957-000-02
    02-08/08/2014-07:33-054986-000-02
    02-08/08/2014-07:33-006197-000-02
    02-08/08/2014-07:34-034788-000-02
    02-08/08/2014-07:39-063895-000-02
    02-08/08/2014-07:39-029825-000-02
    02-08/08/2014-07:40-058007-000-02
    02-08/08/2014-07:41-031397-000-02
    02-08/08/2014-07:41-064878-000-02
    02-08/08/2014-07:42-045991-000-02
    02-08/08/2014-07:43-031053-000-02
    02-08/08/2014-07:47-002308-000-02
    02-08/08/2014-07:52-032722-000-02
    02-08/08/2014-08:40-008660-000-02
    02-08/08/2014-11:17-013766-000-02
    02-08/08/2014-11:50-018354-000-02
    02-08/08/2014-12:33-056754-000-02
    02-08/08/2014-13:32-050108-000-02
    02-08/08/2014-13:33-052597-000-02
    02-08/08/2014-14:02-023631-000-02
    02-08/08/2014-14:03-032028-000-02
    02-08/08/2014-14:05-015077-000-02
    02-08/08/2014-14:11-056744-000-02
    02-08/08/2014-14:11-040728-000-02
    02-08/08/2014-14:12-020359-000-02
    02-08/08/2014-14:14-027757-000-02
    02-08/08/2014-14:15-049989-000-02
    02-08/08/2014-14:16-062433-000-02
    02-08/08/2014-14:18-000150-000-02
    02-08/08/2014-14:20-052784-000-02
    02-08/08/2014-14:21-003081-000-02
    02-08/08/2014-14:23-041943-000-02
    02-08/08/2014-14:26-002768-000-02
    02-08/08/2014-14:27-055203-000-02
    02-08/08/2014-14:32-059076-000-02
    02-08/08/2014-14:32-062392-000-02
    02-08/08/2014-14:32-052972-000-02
    02-08/08/2014-14:33-007510-000-02
    02-08/08/2014-14:33-045028-000-02
    02-08/08/2014-14:33-034091-000-02
    02-08/08/2014-14:34-025898-000-02
    02-08/08/2014-14:34-063456-000-02
    02-08/08/2014-14:34-043041-000-02
    02-08/08/2014-14:34-034286-000-02
    02-08/08/2014-14:35-034091-000-02
    02-08/08/2014-14:35-059298-000-02
    02-08/08/2014-14:42-063289-000-02
    02-08/08/2014-14:42-056876-000-02
    02-08/08/2014-14:42-052484-000-02
    02-08/08/2014-14:44-008897-000-02
    02-08/08/2014-14:45-005604-000-02
    02-08/08/2014-14:46-002286-000-02
    02-08/08/2014-14:46-063167-000-02
    02-08/08/2014-14:46-063167-000-02
    02-08/08/2014-14:47-004425-000-02
    02-08/08/2014-14:47-052824-000-02
    02-08/08/2014-14:48-003793-000-02
    02-08/08/2014-14:48-042905-000-02
    02-08/08/2014-14:48-057669-000-02
    02-08/08/2014-14:50-057113-000-02
    02-08/08/2014-14:50-057113-000-02
    02-08/08/2014-14:51-000623-000-02
    02-08/08/2014-14:52-051997-000-02
    02-08/08/2014-14:52-054936-000-02
    02-08/08/2014-14:54-006167-000-02
    02-08/08/2014-14:55-008412-000-02
    02-08/08/2014-14:59-005446-000-02
    02-08/08/2014-15:01-064275-000-02
    02-08/08/2014-15:01-050486-000-02
    02-08/08/2014-15:03-043165-000-02
    02-08/08/2014-15:04-063110-000-02
    02-08/08/2014-15:05-000102-000-02
    02-08/08/2014-15:05-006385-000-02
    02-08/08/2014-15:05-053258-000-02
    02-08/08/2014-15:07-000425-000-02
    02-08/08/2014-15:08-048489-000-02
    02-08/08/2014-15:10-033507-000-02
    02-08/08/2014-15:13-030404-000-02
    02-08/08/2014-15:14-058050-000-02
    02-08/08/2014-15:15-055981-000-02
    02-08/08/2014-15:15-008554-000-02
    02-08/08/2014-15:16-054015-000-02
    02-08/08/2014-15:16-005730-000-02
    02-08/08/2014-15:16-057709-000-02
    02-08/08/2014-15:16-058131-000-02
    02-08/08/2014-15:17-041020-000-02
    02-08/08/2014-15:17-001304-000-02
    02-08/08/2014-15:18-049546-000-02
    02-08/08/2014-15:18-051505-000-02
    02-08/08/2014-15:18-041655-000-02
    02-08/08/2014-15:19-061295-000-02
    02-08/08/2014-15:19-001798-000-02
    02-08/08/2014-15:20-001798-000-02
    02-08/08/2014-15:20-054198-000-02
    02-08/08/2014-15:20-034760-000-02
    02-08/08/2014-15:21-014041-000-02
    02-08/08/2014-15:21-048227-000-02
    02-08/08/2014-15:21-055311-000-02
    02-08/08/2014-15:21-059140-000-02
    02-08/08/2014-15:21-021545-000-02
    02-08/08/2014-15:22-004848-000-02
    02-08/08/2014-15:22-002451-000-02
    02-08/08/2014-15:27-023272-000-02
    02-08/08/2014-15:29-063839-000-02
    02-08/08/2014-15:32-053475-000-02
    02-08/08/2014-15:33-028859-000-02
    02-08/08/2014-15:34-050279-000-02
    02-08/08/2014-15:36-003774-000-02
    02-08/08/2014-15:36-025179-000-02
    02-08/08/2014-15:36-032925-000-02
    02-08/08/2014-15:36-032838-000-02
    02-08/08/2014-15:37-000009-000-02
    02-08/08/2014-15:37-000009-000-02
    02-08/08/2014-15:37-000009-000-02
    02-08/08/2014-15:37-047387-000-02
    02-08/08/2014-15:38-052903-000-02
    02-08/08/2014-15:39-063839-000-02
    02-08/08/2014-15:42-063094-000-02
    02-08/08/2014-15:47-033243-000-02
    02-08/08/2014-15:47-033243-000-02
    02-08/08/2014-15:49-007016-000-02
    02-08/08/2014-15:56-064937-000-02
    02-08/08/2014-15:57-063172-000-02
    02-08/08/2014-15:59-059036-000-02
    02-08/08/2014-16:02-031229-000-02
    02-08/08/2014-16:07-038200-000-02
    02-08/08/2014-16:10-056763-000-02
    02-08/08/2014-16:13-045060-000-02
    02-08/08/2014-16:20-018613-000-02
    02-08/08/2014-16:20-018613-000-02
    02-08/08/2014-16:28-014569-000-02
    02-08/08/2014-16:28-053394-000-02
    02-08/08/2014-16:28-054787-000-02
    02-08/08/2014-16:30-032678-000-02
    02-08/08/2014-16:30-050347-000-02
    02-08/08/2014-16:36-038671-000-02
    02-08/08/2014-16:41-031901-000-02
    02-08/08/2014-16:42-027477-000-02
    02-08/08/2014-16:44-051587-000-02
    02-08/08/2014-16:45-056653-000-02
    02-08/08/2014-16:45-056653-000-02
    02-08/08/2014-16:46-061645-000-02
    02-08/08/2014-16:54-058615-000-02
    02-08/08/2014-16:56-051497-000-02
    02-08/08/2014-16:59-019547-000-02
    02-08/08/2014-17:00-061067-000-02
    02-08/08/2014-17:01-038222-000-02
    02-08/08/2014-17:01-047332-000-02
    02-08/08/2014-17:02-064745-000-02
    02-08/08/2014-17:02-060240-000-02
    02-08/08/2014-17:02-060240-000-02
    02-08/08/2014-17:02-053350-000-02
    02-08/08/2014-17:03-014524-000-02
    02-08/08/2014-17:04-038821-000-02
    02-08/08/2014-17:04-057240-000-02
    02-08/08/2014-17:05-052475-000-02
    02-08/08/2014-17:05-057662-000-02
    02-08/08/2014-17:05-065152-000-02
    02-08/08/2014-17:05-003076-000-02
    02-08/08/2014-17:06-061436-000-02
    02-08/08/2014-17:06-061436-000-02
    02-08/08/2014-17:06-050474-000-02
    02-08/08/2014-17:06-061966-000-02
    02-08/08/2014-17:07-011222-000-02
    02-08/08/2014-17:07-011222-000-02
    02-08/08/2014-17:07-033425-000-02
    02-08/08/2014-17:07-056000-000-02
    02-08/08/2014-17:07-056000-000-02
    02-08/08/2014-17:07-056000-000-02
    02-08/08/2014-17:07-061648-000-02
    02-08/08/2014-17:08-045822-000-02
    02-08/08/2014-17:09-050955-000-02
    02-08/08/2014-17:11-004748-000-02
    02-08/08/2014-17:11-061195-000-02
    02-08/08/2014-17:13-046872-000-02
    02-08/08/2014-17:13-046872-000-02
    02-08/08/2014-17:13-046872-000-02
    02-08/08/2014-17:13-059372-000-02
    02-08/08/2014-17:13-058405-000-02
    02-08/08/2014-17:13-040996-000-02
    02-08/08/2014-17:13-040996-000-02
    02-08/08/2014-17:14-013749-000-02
    02-08/08/2014-17:14-039297-000-02
    02-08/08/2014-17:14-055873-000-02
    02-08/08/2014-17:14-051753-000-02
    02-08/08/2014-17:14-045246-000-02
    02-08/08/2014-17:14-059724-000-02
    02-08/08/2014-17:15-063120-000-02
    02-08/08/2014-17:15-063120-000-02
    02-08/08/2014-17:16-057270-000-02
    02-08/08/2014-17:16-052044-000-02
    02-08/08/2014-17:17-053924-000-02
    02-08/08/2014-17:17-023918-000-02
    02-08/08/2014-17:18-005220-000-02
    02-08/08/2014-17:18-060981-000-02
    02-08/08/2014-17:18-045137-000-02
    02-08/08/2014-17:19-027282-000-02
    02-08/08/2014-17:19-054996-000-02
    02-08/08/2014-17:21-047975-000-02
    02-08/08/2014-17:21-047975-000-02
    02-08/08/2014-17:22-047112-000-02
    02-08/08/2014-17:22-054460-000-02
    02-08/08/2014-17:23-055622-000-02
    02-08/08/2014-17:25-051129-000-02
    02-08/08/2014-17:25-016590-000-02
    02-08/08/2014-17:25-048403-000-02
    02-08/08/2014-17:26-048454-000-02
    02-08/08/2014-17:26-063698-000-02
    02-08/08/2014-17:28-017684-000-02
    02-08/08/2014-17:29-010054-000-02
    02-08/08/2014-17:29-010054-000-02
    02-08/08/2014-17:29-002712-000-02
    02-08/08/2014-17:31-017731-000-02
    02-08/08/2014-17:31-017731-000-02
    02-08/08/2014-17:31-064639-000-02
    02-08/08/2014-17:32-050857-000-02
    02-08/08/2014-17:33-051481-000-02
    02-08/08/2014-17:34-058460-000-02
    02-08/08/2014-17:34-063867-000-02
    02-08/08/2014-17:35-047985-000-02
    02-08/08/2014-17:35-042237-000-02
    02-08/08/2014-17:38-022890-000-02
    02-08/08/2014-17:42-045677-000-02
    02-08/08/2014-17:43-041931-000-02
    02-08/08/2014-17:44-004555-000-02
    02-08/08/2014-17:48-052703-000-02
    02-08/08/2014-17:49-048695-000-02
    02-08/08/2014-17:50-055981-000-02
    02-08/08/2014-17:50-055981-000-02
    02-08/08/2014-17:56-035073-000-02
    02-08/08/2014-17:56-065214-000-02
    02-08/08/2014-17:57-029877-000-02
    02-08/08/2014-17:58-039497-000-02
    02-08/08/2014-17:58-039497-000-02
    02-08/08/2014-17:59-046651-000-02
    02-08/08/2014-17:59-046651-000-02
    02-08/08/2014-17:59-001166-000-02
    02-08/08/2014-17:59-059403-000-02
    02-08/08/2014-18:00-049712-000-02
    02-08/08/2014-18:02-016390-000-02
    02-08/08/2014-18:04-060519-000-02
    02-08/08/2014-18:05-052521-000-02
    02-08/08/2014-18:05-063944-000-02
    02-08/08/2014-18:05-054737-000-02
    02-08/08/2014-18:05-003033-000-02
    02-08/08/2014-18:18-049662-000-02
    02-08/08/2014-18:19-010926-000-02
    02-08/08/2014-18:25-048704-000-02
    02-08/08/2014-18:25-050532-000-02
    02-08/08/2014-18:31-008631-000-02
    02-08/08/2014-18:31-057759-000-02
    02-08/08/2014-18:31-055300-000-02
    02-08/08/2014-18:32-020059-000-02
    02-08/08/2014-18:34-028800-000-02
    02-08/08/2014-18:36-057517-000-02
    02-08/08/2014-18:40-006906-000-02
    02-08/08/2014-18:45-003595-000-02
    02-08/08/2014-18:46-059774-000-02
    02-08/08/2014-18:53-060644-000-02
    02-08/08/2014-18:59-007651-000-02
    02-08/08/2014-19:05-001324-000-02
    02-08/08/2014-19:06-049233-000-02
    02-08/08/2014-19:12-025212-000-02
    02-08/08/2014-19:13-005905-000-02
    02-08/08/2014-19:18-005286-000-02
    02-08/08/2014-19:40-045334-000-02
    02-08/08/2014-19:40-005557-000-02
    02-08/08/2014-19:40-003634-000-02
    02-08/08/2014-19:56-027498-000-02
    02-08/08/2014-20:06-060406-000-02
    02-08/08/2014-20:12-014852-000-02
    02-08/08/2014-20:22-005590-000-02
    02-08/08/2014-20:29-026640-000-02
    02-08/08/2014-20:29-054784-000-02
    02-08/08/2014-20:45-014515-000-02
    02-08/08/2014-20:46-064359-000-02
    02-08/08/2014-20:47-007078-000-02
    02-08/08/2014-20:47-062044-000-02
    02-08/08/2014-20:50-050863-000-02
    02-08/08/2014-20:57-049413-000-02
    02-08/08/2014-21:01-019507-000-02
    02-08/08/2014-21:06-015077-000-02
    02-08/08/2014-21:07-032028-000-02
    02-08/08/2014-21:09-023631-000-02
    02-08/08/2014-21:09-041278-000-02
    02-08/08/2014-21:10-053289-000-02
    02-08/08/2014-21:10-049989-000-02
    02-08/08/2014-21:11-034286-000-02
    02-08/08/2014-21:16-048103-000-02
    02-08/08/2014-21:24-013766-000-02
    02-08/08/2014-21:40-000256-000-02
    02-08/08/2014-21:45-064582-000-02
    02-08/08/2014-21:50-050108-000-02
    02-08/08/2014-21:57-048433-000-02
    02-08/08/2014-22:00-030586-000-02
    02-08/08/2014-22:01-046322-000-02
    02-08/08/2014-22:03-029842-000-02
    02-08/08/2014-22:03-029842-000-02
    02-08/08/2014-22:04-034091-000-02
    02-08/08/2014-22:04-027757-000-02
    02-08/08/2014-22:04-045028-000-02
    02-08/08/2014-22:04-007510-000-02
    02-08/08/2014-22:04-056744-000-02
    02-08/08/2014-22:05-025898-000-02
    02-08/08/2014-22:09-024016-000-02
    02-08/08/2014-22:11-059298-000-02
    02-08/08/2014-22:11-048406-000-02
    02-08/08/2014-22:11-021256-000-02
    02-08/08/2014-22:14-008027-000-02
    02-08/08/2014-22:15-000687-000-02
    02-08/08/2014-22:16-064865-000-02
    02-08/08/2014-22:17-018685-000-02
    02-08/08/2014-22:17-018685-000-02
    02-08/08/2014-22:17-036761-000-02
    02-08/08/2014-22:19-046377-000-02
    02-08/08/2014-22:19-033454-000-02
    02-08/08/2014-22:20-005443-000-02
    02-08/08/2014-22:23-052499-000-02
    02-08/08/2014-22:31-058536-000-02
    02-08/08/2014-22:31-041270-000-02
    02-08/08/2014-22:31-060938-000-02
    02-08/08/2014-22:35-007973-000-02
    02-08/08/2014-22:38-063564-000-02
    02-08/08/2014-22:39-056544-000-02
    02-08/08/2014-22:42-064443-000-02
    02-08/08/2014-22:42-015629-000-02
    02-08/08/2014-22:42-032226-000-02
    02-08/08/2014-22:42-042140-000-02
    02-08/08/2014-22:42-060865-000-02
    02-08/08/2014-22:44-061113-000-02
    02-08/08/2014-22:45-004271-000-02
    02-08/08/2014-22:48-062012-000-02
    02-08/08/2014-22:48-062012-000-02
    02-08/08/2014-22:52-055690-000-02
    02-08/08/2014-22:52-051446-000-02
    02-08/08/2014-22:54-059973-000-02
    02-08/08/2014-22:55-037241-000-02
    02-08/08/2014-22:56-034102-000-02
    02-08/08/2014-22:56-054056-000-02
    02-08/08/2014-22:56-026113-000-02
    02-08/08/2014-22:58-049452-000-02
    02-08/08/2014-22:58-031836-000-02
    02-08/08/2014-22:58-031836-000-02
    02-08/08/2014-22:58-031836-000-02
    02-08/08/2014-22:59-029901-000-02
    02-08/08/2014-22:59-055587-000-02
    02-08/08/2014-22:59-054056-000-02
    02-08/08/2014-22:59-058606-000-02
    02-08/08/2014-22:59-055236-000-02
    02-08/08/2014-23:00-010440-000-02
    02-08/08/2014-23:00-054780-000-02
    02-08/08/2014-23:00-054780-000-02
    02-08/08/2014-23:01-023683-000-02
    02-08/08/2014-23:02-041915-000-02
    02-08/08/2014-23:03-023550-000-02
    02-08/08/2014-23:03-019945-000-02
    02-08/08/2014-23:04-005746-000-02
    02-08/08/2014-23:04-007854-000-02
    02-08/08/2014-23:04-007854-000-02
    02-08/08/2014-23:04-051288-000-02
    02-08/08/2014-23:05-049727-000-02
    02-08/08/2014-23:06-041655-000-02
    02-08/08/2014-23:06-051505-000-02
    02-08/08/2014-23:06-063106-000-02
    02-08/08/2014-23:07-057269-000-02
    02-08/08/2014-23:10-057966-000-02
    02-08/08/2014-23:11-009055-000-02
    02-08/08/2014-23:11-055094-000-02
    02-08/08/2014-23:12-045659-000-02
    02-08/08/2014-23:14-058884-000-02
    02-08/08/2014-23:17-054010-000-02
    02-08/08/2014-23:20-012158-000-02
    02-08/08/2014-23:21-010322-000-02
    02-08/08/2014-23:23-042137-000-02
    02-08/08/2014-23:23-014674-000-02
    02-08/08/2014-23:23-046112-000-02
    02-08/08/2014-23:23-058519-000-02
    02-08/08/2014-23:23-004670-000-02
    02-08/08/2014-23:23-042960-000-02
    02-08/08/2014-23:24-052273-000-02
    02-08/08/2014-23:28-002798-000-02
    02-08/08/2014-23:28-032273-000-02
    02-08/08/2014-23:28-033137-000-02
    02-08/08/2014-23:28-033137-000-02
    02-08/08/2014-23:31-043073-000-02
    02-08/08/2014-23:31-001497-000-02
    02-08/08/2014-23:34-064434-000-02
    02-08/08/2014-23:39-041976-000-02
    02-08/08/2014-23:39-001699-000-02
    02-08/08/2014-23:46-008824-000-02
    02-08/08/2014-23:46-048181-000-02
    02-08/08/2014-23:52-063760-000-02
    As per Mr. Celko recommend in way of naming table (tbl_xxxx), this is what we be teached in school, cheers.
    And I'm sorry if my info provide is not clear enough for you all to testing. Please treat me like your student, cheers.
    Thank you.

Maybe you are looking for

  • FM HRTRV_IF_GET_TRIP does not return USERDATA

    Hi, it's me, yet again... I'm using the FM "HRTRV_IF_GET_TRIP" in FITE_VC_GENERA_DATA in a post exit of comp-controller method "ON_SHOW" to get the structure/Table USER/PTK99 from the TE Cluster for binding to the context afterwards. At least that's

  • Thunderbolt cable

    Lost the audio to the tv from the cable overnight. There used to be a pause when you plugged in the cable then video and audio went to tv. now only the video is working. Repair guys say my air is fine and so is the cable. Any ideas

  • Can I create sub-categories in events?  e.g. 2011, holidays, America?

    CAn I sub-classify events.  Now have too many events to scroll through?

  • The problem does not open Adobe InDesign CC

    Hello You download a copy of Adobe InDesign CC But unfortunately the program does not open out directly and closes Especially when it starts on the green tag in the picture. Please resolve this problem, I want to test the program.

  • Microsoft Office version X

    I have heard people say that Office 2004 works fine. However, I have not heard of anyone trying Office X. So any word would be appreciated.