Tagged Questions

1
vote
1answer
126 views

Input LOG file information into MySQL using Python

I need to take a linux log file and enter the data into a mysql table, and separate each field into columns. I have been trying to use the LOAD DATA INFILE command. Only problem is, the data is not ...
1
vote
2answers
982 views

Mysql - LOAD DATA INFILE Error Code : 13

Can anyone please shed some light to my problem. I did searched in google and still cant sort it out. In my remote mysql, when I try to execute this query, I am getting the Mysql Error Code : 13. ...
1
vote
2answers
526 views

SAS - Reading a File Backwards?

I need SAS to read many large log files, which are set up to have the most recent activities at the bottom. All I need is the most recent time a particular activity occurred, and I was wondering if ...
0
votes
2answers
129 views

load data infile problem

I need my program to have two enclosed characters. My strings in my file can be enclosed by either single quotes or double quotes. How may I manage that?
0
votes
1answer
616 views

LOAD DATA INFILE select columns

I have a text file that has all it's columns separated by \t (tab). There are 34 columns in total, but I only need to read and insert the first two columns, namely ID and name. The table structure is ...