I tried to run this command in shell:
mysql> source /path/*.sql
But I did not have any results. Do you have any suggestions what is wrong?
You can try to use Bash like this:
cat *.sql | mysql
or
cat script*.sql | mysql -u root -pmypassword yourdatabase
;