pradeep sharma
Active Member
Dear @twisted19
I Have a huge list of Email Blacklist around 265K Records as import via Backend was very slow then i tried to upload it to directly into table myprefix_email_blacklist(i made my table empty to avoid any confilct)
i have a csv file with all fields set and with no error..
I tried to upload in via MYSQL Consol in command line ...
	
	
	
		
I got This error
	
	
	
		
How can i upload it directly to email blacklist table?? or any Command line Utility of call Import Command in CLI mode. or any best way to upload it in speedy manner..????
Does 'Queue Import' also Work in Importing to Email Blacklist..I find that it dont works!!
I recommend
if you can add this feature(Email-Blacklist Import via Command Line-queue-import) to next release!
My Support Pack is Expired.
We ll Upgrade our Support pack by this weekend as my Company Credit Card is Fully Exhausted and will be recharged by today evening or tomorrow morning.
Regards
				
			I Have a huge list of Email Blacklist around 265K Records as import via Backend was very slow then i tried to upload it to directly into table myprefix_email_blacklist(i made my table empty to avoid any confilct)
i have a csv file with all fields set and with no error..
I tried to upload in via MYSQL Consol in command line ...
		Code:
	
	mysql> LOAD DATA LOCAL INFILE '/home/mailapp_email_blacklist.csv' INTO TABLE mailapp_email_blacklist FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\n' (email_id, subscriber_id, email, reason, date_added, last_updated);I got This error
		Code:
	
	ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (`dashboard01_zoikmail`.` mailapp_email_blacklist`, CONSTRAINT `fk_email_blacklist1` FOREIGN KEY (`subscriber_id`) REFERENCES `mailapp_l ist_subscriber` (`subscriber_id`) ON DELETE SET NULL ON UP)How can i upload it directly to email blacklist table?? or any Command line Utility of call Import Command in CLI mode. or any best way to upload it in speedy manner..????
Does 'Queue Import' also Work in Importing to Email Blacklist..I find that it dont works!!
I recommend
if you can add this feature(Email-Blacklist Import via Command Line-queue-import) to next release!
My Support Pack is Expired.
We ll Upgrade our Support pack by this weekend as my Company Credit Card is Fully Exhausted and will be recharged by today evening or tomorrow morning.
Regards
 
	 
 
		 
 
		 no inverted quotes(" ") as it creates a problem in CSV import..
 no inverted quotes(" ") as it creates a problem in CSV import..