diff options
| author | Andreas Brachold <vdr07@deltab.de> | 2007-08-13 18:41:27 +0000 |
|---|---|---|
| committer | Andreas Brachold <vdr07@deltab.de> | 2007-08-13 18:41:27 +0000 |
| commit | bcbf441e09fb502cf64924ff2530fa144bdf52c5 (patch) | |
| tree | f377707a2dac078db8cd0c7d7abfe69ac1006d71 /contrib/import-data.sql | |
| download | xxv-bcbf441e09fb502cf64924ff2530fa144bdf52c5.tar.gz xxv-bcbf441e09fb502cf64924ff2530fa144bdf52c5.tar.bz2 | |
* Move files to trunk
Diffstat (limited to 'contrib/import-data.sql')
| -rw-r--r-- | contrib/import-data.sql | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/import-data.sql b/contrib/import-data.sql new file mode 100644 index 0000000..fbad5e8 --- /dev/null +++ b/contrib/import-data.sql @@ -0,0 +1,17 @@ +-- +-- Load files to Database xxv +-- + +DELETE from AUTOTIMER; +DELETE from CHRONICLE; +DELETE from USER; +DELETE from MEDIALIB_ACTORS; +DELETE from MEDIALIB_VIDEODATA; +DELETE from MEDIALIB_VIDEOGENRE; + +load data infile '/tmp/autotimer.sav' into table AUTOTIMER; +load data infile '/tmp/user.sav' into table USER; +load data infile '/tmp/chronicle.sav' into table CHRONICLE; +load data infile '/tmp/medialib_actors.sav' into table MEDIALIB_ACTORS; +load data infile '/tmp/medialib_videodata.sav' into table MEDIALIB_VIDEODATA; +load data infile '/tmp/medialib_videogenre.sav' into table MEDIALIB_VIDEOGENRE; |
