Hi,

> I have a databse on the server. It os called ads. I want to make
> copy of it on my PC. I have Win32, Apache with PHP and
> MySQL. And I also have phpMyAdmin on that server.
> I'm writing this:
> 
>   mysqldump -A ads > /home/myaccount/www/backup.sql
> 
>   But it says that i'm making a mistake.

-A stands for "all databases". probably there are some databases
on the server that you don't have access to and that is causing the
error message.

a better commandline would be:

  mysqldump --opt -uUSERNAME -p ads > /path/backup.sql


Rgds,
Indrek

-- 
For technical support contracts, goto https://order.mysql.com/
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Indrek Siitan <[EMAIL PROTECTED]>
 / /|_/ / // /\ \/ /_/ / /__   MySQL AB, The Web Guru
/_/  /_/\_, /___/\___\_\___/   Tallinn, Estonia
       <___/   www.mysql.com


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to