Hello All, 
I am trying to fill some tables in my database with information from some CSV files. Previously I was doing this with the import option.
I'd like to use the SQL console to speed up the process, but when I try entering the code manually I receive a password error.
The user it lists is just "da_sso_" followed by a random string of letters and numbers, "@localhost" so it is different each time.
I do have a user for this database that has all privilleges enabled, but that doesn't seem to be the user info the system is using.
Additionally, the files I am trying to import are also hosted on my domain. I tried using different file paths, (domains/mydomain/public_html/... or home/public_html/...), but that doesn't seem to change the outcome at all.
Here's my code:
	
	
	
		
Here's the error text:
	
	
	
		
Any help you can give is appreciated. I tried searching online, but could only find information regarding to people running mySQL on their PCs and not from anyone using phpMyAdmin.
			
			I am trying to fill some tables in my database with information from some CSV files. Previously I was doing this with the import option.
I'd like to use the SQL console to speed up the process, but when I try entering the code manually I receive a password error.
The user it lists is just "da_sso_" followed by a random string of letters and numbers, "@localhost" so it is different each time.
I do have a user for this database that has all privilleges enabled, but that doesn't seem to be the user info the system is using.
Additionally, the files I am trying to import are also hosted on my domain. I tried using different file paths, (domains/mydomain/public_html/... or home/public_html/...), but that doesn't seem to change the outcome at all.
Here's my code:
		Code:
	
	LOAD DATA INFILE 'public_html/directory/table_info.txt' INTO TABLE `table_name`
FIELDS TERMINATED BY ';' 
ENCLOSED BY '\"' 
ESCAPED BY '\\' 
LINES TERMINATED BY '\n'Here's the error text:
		Code:
	
	#1045 - Access denied for user 'da_sso_123abc'@'localhost' (using password: YES)Any help you can give is appreciated. I tried searching online, but could only find information regarding to people running mySQL on their PCs and not from anyone using phpMyAdmin.
 
				 
 
		