The following command:
select *
INTO OUTFILE '\home\user1\NetBeansProjects\project1\dumps\theData.csv'
FIELDS TERMINATED by ','
LINES TERMINATED BY '\n'
from database1
Does not write a file called theData.csv to the specified directory.
- How do I get this file to be written to the specified directory?