Example

If you have installed the software as described in Notes Installation, then you could install the scripts as follows for a mysql database:

$ for el in tables.sql indexes.sql history.sql constraints.sql; do \
    mysql -u user -p password db-name < $el
    done;

replacing db-name, user and password with the correct values for your database.