tags:

views:

33

answers:

1

When i use this it works fine

C:\Program Files\MySQL\MySQL Server 5.0\bin mysqldump.exe 
    --user=dinesh 
    --password=accounting 
    --host=dinesh 
    -C 
    --routines 
    --default-character-set=utf8 
    --Opt inventory 
    > C:\\R14122009_12469.Sql

But when t pass Path like

"C:\Documents and Settings\Wild\Desktop\f report\New Folder\R14122009_12469.Sql"

It show an error table not found

Is there any way where I can save the backup at any place at runtime selection?

+1  A: 

How about using --result-file= parameter to mysqldump? It is anyway recommended on Windows to avoid problems with newlines.

Michal Čihař