Any ideas?

SELECT * INTO OUTFILE '/home/myacnt/docs/mysqlCSVtest.csv'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '*'
LINES TERMINATED BY '\n'
FROM tbl_property 
WHERE managerGroupID = {$managerGroupID}

Error:

Access denied for user 'asdfsdf'@'localhost' (using password: YES)
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Try executing this SQL command:

> grant all privileges 
  on YOUR_DATABASE.* 
  to 'asdfsdf'@'localhost' 
  identified by 'your_password';
> flush privileges; 

It seems that you are having issues with connecting to the database and not writing to the folder you're mentioning.

Also, make sure you have granted FILE to user 'asdfsdf'@'localhost'.

> GRANT FILE ON *.* TO 'asdfsdf'@'localhost';
link|improve this answer
Everything looks good with that, even in cpanel EVERYTHING is checked – Shackrock May 22 '11 at 23:38
@Shackrock: check out updated answer. Make sure you've granted FILE to the user. – Pablo Santa Cruz May 22 '11 at 23:41
feedback

Seems that the password you're using to connect the MySQL server is wrong, not a permission problem.

link|improve this answer
Password is correct, all select/update/insert queries work flawlessly... – Shackrock May 22 '11 at 23:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.