Changes between Version 12 and Version 13 of DatabaseBasedAnalysis/table2sql
- Timestamp:
- 08/12/18 15:45:45 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DatabaseBasedAnalysis/table2sql
v12 v13 160 160 161 161 Usually 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 165 To 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`) 162 166 163 167