Changes between Version 12 and Version 13 of DatabaseBasedAnalysis/table2sql


Ignore:
Timestamp:
08/12/18 15:45:45 (6 years ago)
Author:
tbretz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DatabaseBasedAnalysis/table2sql

    v12 v13  
    160160
    161161Usually the previously defined constant values are helpful to create an index which relates unambiguously the inserted data to the file. It might be useful to delete all data which belongs to this particular file before new data is entered. This can be achieved with the `--delete` directive. It deletes all data from the table before inserting new data which fulfills the condition defined by the `--const` directives.
     162
     163== Corresponding Index ==
     164
     165To do the pre-deleting efficiently, it makes sense to have an INDEX created for a fast access. This can be achieved with the `--index` directive which adds the corresponding statement to the table creation (`CREATE TABLE`)
    162166
    163167