On Wed, 2002-03-13 at 01:48, Abi wrote:
> Hi,
> I have this following error when back up table :
> 
> mysql> lock tables mytable read;
> Query OK, 0 rows affected (0.02 sec)
> 
> mysql> select * into outfile
> '/home/myhome/dump/mytable.txt' from mytable;
> 
> ERROR 1: Can't create/write to file
> '/home/myhome/dump/mytable.txt' (Errcode: 13)
> 
> what does errcode:13 mean ?

Use perror utility to see what an error means.
# perror 13
Error code  13:  Permission denied

So, you (the user who runs mysqld) don't have permissions to write to
/home/myhome/dump/.

> -pgl-
> 
-- 
dsoares
(sql)

---------------------------------------------------------------------
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