 
			
				16/08/2010, 09:34
			
			
			     |  
      |    |    |    Fecha de Ingreso: enero-2010  
						Mensajes: 239
					  Antigüedad: 15 años, 9 meses Puntos: 0     |        |  
  |      Respuesta: Ayuda, error al cargar fichero.        Búsqueda ilegal    mysql> use menagerie 
Database changed 
mysql> select * from pet; 
Empty set (0.00 sec)   
mysql> load data infile 'pet.txt' into table pet fields terminated by ',' lines terminated by '\n'; 
ERROR 29 (HY000): File '/var/lib/mysql/menagerie/pet.txt' not found (Errcode: 2)   
mysql> load data infile 'pet.txt?' into table pet fields terminated by ',' lines terminated by '\n'; 
ERROR 29 (HY000): File '/var/lib/mysql/menagerie/pet.txt?' not found (Errcode: 2)    mysql> load data infile "pet.txt" into table pet fields terminated by "," lines terminated by "\n"; 
ERROR 29 (HY000): File '/var/lib/mysql/menagerie/pet.txt' not found (Errcode: 2)           
					
						Última edición por alex760125; 16/08/2010 a las 09:39           |