Matthias Redl wrote:
>
> Hi!
>
> I've got an external file containing the command for creating a rather
> complex table.
>
> How do I launch this batch file in "mysql", not from the command line
> (before I started mysql) but from within mysql.
>
> in SQL*Plus this is achieved with the @ smybol or the start command, what's
> the corresponding command in mysql?
>
> is it possible to launch a local file or do i have to transfer the file via
> ftp to the server first?
>
> thanks,
> Matthias
Hi Matthias
Just do:
mysql databaseToUse <fileWithCreate.sql
Tschau
Christian