I'm trying to write some data from a MySQL select statement to a file on a Mac running Snow Leopard.
select date_base, fractile_v2, gics, count(gvkey_iid)
from master
where fractile_v2 <= 15 and
fractile_v2 != 0
group by date_base, gics, fractile_v2
order by date_base, fractile_v2
limit 100000
INTO OUTFILE '/User/my-name/Desktop/gics_v2.csv'
FIELDS TERMINATED BY ',';
Unfortunately this generates the following error:
Error Code: 1. Can't create/write to file '/Users/andrew/Desktop/gics_v2.csv' (Errcode: 13)
which I'm assuming is a permissions issue.
When I replace the full file path '/User/my-name/Desktop/gics_v2.csv'
with simply gics_v2.csv
the statements seems to run. However I have no idea where the file is saved and I can't find it.
Does anyone know? And can anyone also suggest how I can solve the initial write error? I'm running MySQL as the root user.
find / -name "gics_v2.csv"
as root should locate the file on your computer – Podium