SQLinfo.ru - Все о MySQL

Форум пользователей MySQL

Задавайте вопросы, мы ответим

Вы не зашли.

#1 16.03.2010 08:22:23

Liqui
Участник
Зарегистрирован: 16.03.2010
Сообщений: 2

Загрузка в MySQL из .txt

Надо загрузить из файла .txt в MySQL, вопрос, где должен этот файл находится чтобы из него я смог загрузить?

вот этот радосный пример продублировани везде где я был:

mysql> LOAD DATA LOCAL INFILE "pet.txt" INTO TABLE pet;

Благодарю взаранее за ответ на этот ИМХО глупый вопрос.

Неактивен

 

#2 16.03.2010 08:42:35

vasya
Архат
MySQL Authorized Developer
Откуда: Орел
Зарегистрирован: 07.03.2007
Сообщений: 5842

Re: Загрузка в MySQL из .txt

http://dev.mysql.com/doc/refman/5.4/en/load-data.html

    *

      If LOCAL is specified, the file is read by the client program on the client host and sent to the server. The file can be given as a full path name to specify its exact location. If given as a relative path name, the name is interpreted relative to the directory in which the client program was started.
    *

      If LOCAL is not specified, the file must be located on the server host and is read directly by the server. The server uses the following rules to locate the file:
          o

            If the file name is an absolute path name, the server uses it as given.
          o

            If the file name is a relative path name with one or more leading components, the server searches for the file relative to the server's data directory.
          o

            If a file name with no leading components is given, the server looks for the file in the database directory of the default database.

Неактивен

 

#3 16.03.2010 13:44:44

paulus
Администратор
MySQL Authorized Developer and DBA
Зарегистрирован: 22.01.2007
Сообщений: 6757

Re: Загрузка в MySQL из .txt

Или переводя на русский язык — напишите полный путь до файла — тогда
Вам не нужно будет знать текущий каталог сервера smile

Неактивен

 

#4 16.03.2010 21:19:15

Liqui
Участник
Зарегистрирован: 16.03.2010
Сообщений: 2

Re: Загрузка в MySQL из .txt

забил на это дело, и решил всёже использовать phpMyAdmin

Неактивен

 

Board footer

Работает на PunBB
© Copyright 2002–2008 Rickard Andersson