Mysql Windows "mysqldump -t" restore
Posted
by Glide
on Stack Overflow
See other posts from Stack Overflow
or by Glide
Published on 2010-05-25T15:01:28Z
Indexed on
2010/05/25
15:51 UTC
Read the original article
Hit count: 156
Yes it's Windows sorry.
I'm using mysqldump with the option -T which creates a sql and a txt file per table.
mysqldump -u user -ppass db -T path
I use that option to be able to restore easily one table.
Now I'd like to restore all the tables.
mysql -u user -ppass db < path/*.sql
Obvously doesn't work
Also, I don't know where do my funcs/procs go.
Thx
© Stack Overflow or respective owner