Thread: export csv file on XP
I want to know how to export csv file.
Command:
copy test to 'c:/test.csv'
delimiters ',' ;
but the error ERROR: could not open file "c:/test.csv" for writing: Permission denied
Command:
copy test to 'c:/test.csv'
delimiters ',' ;
but the error ERROR: could not open file "c:/test.csv" for writing: Permission denied
On 31/07/2009 16:57, Wang Kuo-Ying wrote: > Command: > copy test to 'c:/test.csv' > delimiters ',' ; > > but the error ERROR: could not open file "c:/test.csv" for writing: > Permission denied Looks like a permissions problem - check that the user as which the server is running has read permissions on that file. Ray. ------------------------------------------------------------------ Raymond O'Donnell, Director of Music, Galway Cathedral, Ireland rod@iol.ie Galway Cathedral Recitals: http://www.galwaycathedral.org/recitals ------------------------------------------------------------------
Raymond O'Donnell wrote on 31.07.2009 18:12: > On 31/07/2009 16:57, Wang Kuo-Ying wrote: > >> Command: >> copy test to 'c:/test.csv' >> delimiters ',' ; >> >> but the error ERROR: could not open file "c:/test.csv" for writing: >> Permission denied > > Looks like a permissions problem - check that the user as which the > server is running has read permissions on that file. I think *write* permission is the approriate ;) Thomas
On 31/07/2009 17:23, Thomas Kellerer wrote: >> Looks like a permissions problem - check that the user as which the >> server is running has read permissions on that file. > > I think *write* permission is the approriate ;) Whoops - my mistake - you're absolutely write! :-P Ray. ------------------------------------------------------------------ Raymond O'Donnell, Director of Music, Galway Cathedral, Ireland rod@iol.ie Galway Cathedral Recitals: http://www.galwaycathedral.org/recitals ------------------------------------------------------------------