Hello All,
Need help in importing CSV files into Mysql. I have tried all the methods which I can think of but im not able to import it. attach is the CSV file which Im trying to import.
Below is my MYSQL table structure:
mysql> show columns from test;
+---------------------+----------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+---------------------+----------+------+-----+---------+----------------+
| id | int(50) | NO | PRI | NULL | auto_increment |
| Date | longtext | NO | | NULL | |
| User | longtext | NO | | NULL | |
| Host | longtext | NO | | NULL | |
| Domain | longtext | NO | | NULL | |
| Activity | longtext | NO | | NULL | |
| Justification | longtext | NO | | NULL | |
| Offline | longtext | NO | | NULL | |
| Destination | longtext | NO | | NULL | |
| Policy_Name | longtext | NO | | NULL | |
| Compliance_Template | longtext | NO | | NULL | |
| Action | longtext | NO | | NULL | |
| Document_Path | longtext | NO | | NULL | |
| Content_Type | longtext | NO | | NULL | |
| Content | longtext | NO | | NULL | |
| Matched_Doc_Path | longtext | NO | | NULL | |
+---------------------+----------+------+-----+---------+----------------+
Regards
BW