Re: mysql data into CSV file. / (Errcode: 13)

2007-01-11 Thread Dwight E Chadbourne
ECTED]> cc: MySql bcc: Subject:Re: mysql data into CSV file. / (Errcode: 13) Thank you , that is working with /tmp/ directory. actually what is the issue behind writing that files into user defined folder , like /home/test/ ? have you find any soluti

Re: mysql data into CSV file. / (Errcode: 13)

2007-01-11 Thread Shain Lee
Thank you , that is working with /tmp/ directory. actually what is the issue behind writing that files into user defined folder , like /home/test/ ? have you find any solution for that ? Thank you, Shaine. Nils Meyer <[EMAIL PROTECTED]> wrote: Hi Shain, Shain Lee wrote: > ERROR 1 (HY000): Can

Re: mysql data into CSV file. / (Errcode: 13)

2007-01-11 Thread Nils Meyer
Hi Shain, Shain Lee wrote: ERROR 1 (HY000): Can't create/write to file '/home/shaine/Music_Details.csv' (Errcode: 13) I faced a problem as mentioned above. really got stucked. how can i solve that problem ? is it a bug ? Error 13 is Permission Denied. The MySQL daemon cannot write to your

Re: mysql data into CSV file. / (Errcode: 13)

2007-01-11 Thread Shain Lee
MySql - server version: 4.1.7 OS - RedHat Linux AS 4 mysql> use Music; mysql> SELECT * INTO OUTFILE '/home/shaine/Music.csv' FROM Music_Details; ERROR 1 (HY000): Can't create/write to file '/home/shaine/Music_Details.csv' (Errcode: 13) I faced a problem as mentioned above. really got stucked.

Re: mysql data into CSV file.

2007-01-04 Thread ViSolve DB Team
ED]> To: "MySql" Sent: Friday, January 05, 2007 11:05 AM Subject: mysql data into CSV file. Hi For example , suppose i have a database - Music, and a table in it is mp3. under mp3 there is more fields , like, id, artist, name , mp3_file...etc. I wanted to get that info which ha

Fwd: mysql data into CSV file.

2007-01-04 Thread Jake Peavy
-- Forwarded message -- From: Jake Peavy <[EMAIL PROTECTED]> Date: Jan 4, 2007 10:48 PM Subject: Re: mysql data into CSV file. To: Shain Lee <[EMAIL PROTECTED]> On 1/4/07, Shain Lee <[EMAIL PROTECTED]> wrote: I wanted to get that info which has stored in rela

mysql data into CSV file.

2007-01-04 Thread Shain Lee
Hi For example , suppose i have a database - Music, and a table in it is mp3. under mp3 there is more fields , like, id, artist, name , mp3_file...etc. I wanted to get that info which has stored in relavent fields into a CSV fle . Can somebody help me to do that please ? Can i do it mysql co