Argh. What am I doing wrong? I uploaded a .txt dump from my old database, and am trying to insert it into my new database. The table in question has already been created. The .txt file is uploaded to my /tmp directory. I get into my server using SSH, and type the following command:
mysql> LOAD DATA INFILE "/tmp/journal_entries.txt" INTO TABLE council_council.journal_entries FIELDS TERMINATED BY '\t'
And nothing happens. It acts like all I did was hit enter or something; no data is inserted. So what am I doing wrong?