Re: Strange problem with mysqldump / automysqlbackup (ERROR 1300)

2009-11-23 Thread René Fournier
So, as a followup, I ran mysqldump on the actual server (with the output directed over AFP to another machine on the network) -- as opposed to running mysqldump on the destination server and connecting to the databases over TCP/IP (both are running 5.1.39 PPC 64-bit). *That* dump file imported O

Re: Strange problem with mysqldump / automysqlbackup (ERROR 1300)

2009-11-21 Thread René Fournier
Except that, in my case, both machines are running 5.1.39. Mac "OS X" PPC 64-bit. I tried importing another, different dump file of the same database, and this time mysql returned a different error: Sat Nov 21 13:16:20 -- Minas-Tirith :: mysql -u root -p < dump_file.sql Enter password: ERROR

Re: Strange problem with mysqldump / automysqlbackup (ERROR 1300)

2009-11-21 Thread Claudio Nanni
There is a bug in mysqldump that prevents mysql from version 5.0.80 from importing dumps from a old version of mysqldump. I had this verified by MySQL support. You can have a look at this bug: http://bugs.mysql.com/bug.php?id=41486 Cheers Claudio 2009/11/21 René Fournier > It's just odd, bec

Re: Strange problem with mysqldump / automysqlbackup (ERROR 1300)

2009-11-21 Thread René Fournier
It's just odd, because that error was on 5.0. I'm running 5.1.39 -- surely enough time for the MySQL devs to fix it right? Could it be with extended inserts that the max statement length is greater than the default 16MB max allowed packet? I'm increasing that value to 256 MB and going to try ag

Re: Strange problem with mysqldump / automysqlbackup (ERROR 1300)

2009-11-20 Thread René Fournier
> From: René Fournier [mailto:m...@renefournier.com] > Sent: Friday, November 20, 2009 8:31 AM > To: mysql > Subject: Strange problem with mysqldump / automysqlbackup (ERROR 1300) > > I've been using automysqlbackup 2.5 for years on a particular database, and > it's

RE: Strange problem with mysqldump / automysqlbackup (ERROR 1300)

2009-11-20 Thread Gavin Towey
range problem with mysqldump / automysqlbackup (ERROR 1300) I've been using automysqlbackup 2.5 for years on a particular database, and it's always performed great. Recently, however, I've become encountering problems when trying to re-import one of its dumped sql files. (Not sure

Strange problem with mysqldump / automysqlbackup (ERROR 1300)

2009-11-20 Thread René Fournier
I've been using automysqlbackup 2.5 for years on a particular database, and it's always performed great. Recently, however, I've become encountering problems when trying to re-import one of its dumped sql files. (Not sure if it matters, but the database file in question is large and growing -- a

Re: Problem with mysqldump and local-infile

2007-04-16 Thread Ding Deng
Mark van Herpen <[EMAIL PROTECTED]> writes: > Hi, > > I want to backup my databases with mysqldump, but mysqldump won't run > because I use the 'local-infile=1' option in the my.cnf file: > > [client] > port= 3306 > socket = /tmp/mysql.sock > local-infile= 1 > > This is be

Re: Problem with mysqldump and local-infile

2007-04-16 Thread Mogens Melander
It looks to me that local-infile is a command-line parameter to mysql client mysql --local-infile -u user dbname I've not been able to find this option elsewhere. -- Later Mogens Melander +45 40 85 71 38 +66 870 133 224 On Mon, April 16, 2007 12:14, Mark van Herpen wrote: > Hi, > > I want to

Problem with mysqldump and local-infile

2007-04-16 Thread Mark van Herpen
Hi, I want to backup my databases with mysqldump, but mysqldump won't run because I use the 'local-infile=1' option in the my.cnf file: [client] port= 3306 socket = /tmp/mysql.sock local-infile= 1 This is because I want php and other clients to use local-infile. This

Re: problem with mysqldump when there is a merge table

2005-06-25 Thread Mathias
Hi, Have you tried '\\' ? Mathias Selon nyem <[EMAIL PROTECTED]>: > Hello, > > I have a database (on Win2k) with merge table. Mysqldump output includes > some path information on the merged tables such as DATA DIRECTORY and > INDEX DIRECTORY > > DROP TABLE IF EXISTS `rptpricing1996`; > CREATE TA

problem with mysqldump when there is a merge table

2005-06-24 Thread nyem
Hello, I have a database (on Win2k) with merge table. Mysqldump output includes some path information on the merged tables such as DATA DIRECTORY and INDEX DIRECTORY DROP TABLE IF EXISTS `rptpricing1996`; CREATE TABLE `rptpricing1996` ( `PricingId` int(11) NOT NULL default '0', `commodity`

Re: Problem with mysqldump

2004-10-28 Thread Jennifer Goodie
-- Original message -- From: Tom Crimmins <[EMAIL PROTECTED]> > > $ mysqldump -u root -p govern > test.sql > Enter password: > mysqldump: Got error: 1017: Can't find file: './govern/VT_SY_LANGUAGE.frm' > (errno: 24) when using LOCK TABLES > perror says 24 is too m

Re: Problem with mysqldump

2004-10-28 Thread Michael Stassen
perror 24 Error code 24: Too many open files Looks like you've hit a system limit. Michael Tom Crimmins wrote: In mysql version 4.1.7 running on Redhat 3ES I get the following error from mysql dump. $ mysqldump -u root -p govern > test.sql Enter password: mysqldump: Got error: 1017: Can't find f

Problem with mysqldump

2004-10-28 Thread Tom Crimmins
In mysql version 4.1.7 running on Redhat 3ES I get the following error from mysql dump. $ mysqldump -u root -p govern > test.sql Enter password: mysqldump: Got error: 1017: Can't find file: './govern/VT_SY_LANGUAGE.frm' (errno: 24) when using LOCK TABLES This file does in fact exist and mysql h

Problem with mysqldump between two servers

2004-08-31 Thread Eugene van den Hurk
Hello, I did a mysql dump of a database between two servers we have using the following command: mysqldump --opt -u --password= | mysql --host= -C -u --password= This command seemed to run ok as it transferred all the structure and data from the original server to the new server database.

Re: problem with mysqldump, ustf8 with mysql 4.1

2004-03-10 Thread Victoria Reznichenko
"neal" <[EMAIL PROTECTED]> wrote: > I need to backup a mysql 4.1 database with UTF8 characters using InnoDB > and then restore the backup on another machine > > I tried the following (same machine - Windows XP) > mysqldump.exe -u root stp2 city > d1.sql# backup > stp2.city > mysql.e

problem with mysqldump, ustf8 with mysql 4.1

2004-03-09 Thread neal
I need to backup a mysql 4.1 database with UTF8 characters using InnoDB and then restore the backup on another machine I tried the following (same machine - Windows XP) mysqldump.exe -u root stp2 city > d1.sql# backup stp2.city mysql.exe -u root t1 < d1.sql

Re: problem with mysqldump

2002-08-14 Thread Mikhail Entaltsev
query. Mikhail. - Original Message - From: "Victoria Reznichenko" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 14, 2002 4:32 PM Subject: Re: problem with mysqldump > jan, > Tuesday, August 13, 2002, 12:34:23 PM, you wrote: > > jb>

Re: problem with mysqldump

2002-08-14 Thread Victoria Reznichenko
jan, Tuesday, August 13, 2002, 12:34:23 PM, you wrote: jb> Hello i got a problem with mysqldump, jb> i'm forced to dump it to to place the database on a new laptop jb> mysql -u root -p hardwaredb < hardwaredbbackup.sql jb> Enter password: jb> ERROR 1065 at line 25: Qu

problem with mysqldump

2002-08-13 Thread jan behrens
Hello i got a problem with mysqldump, i'm forced to dump it to to place the database on a new laptop mysql -u root -p hardwaredb < hardwaredbbackup.sql Enter password: ERROR 1065 at line 25: Query was empty and the corresponding line: ) TYPE=MyISAM; 25: /*!4 ALTER TABLE mo

Re: Problem with mysqldump when using query caching

2002-04-11 Thread Egor Egorov
Nick, Wednesday, April 10, 2002, 7:27:20 PM, you wrote: NP> I'm using Mysql 4.0.1 with query caching: NP> set-variable = query_cache_limit=10M NP> set-variable = query_cache_size=10M NP> set-variable = query_cache_startup_type=1 N

Re: Problem with mysqldump when using query caching (4.01)

2002-04-10 Thread Nick Pasich
roduce this reliably maybe we could get a fix! Can you > do this everytime? > Ken > > - Original Message - > From: "Nick Pasich" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, April 10, 2002 12:27 PM > Subject: Problem with mysqldump when using

Re: Problem with mysqldump when using query caching

2002-04-10 Thread Ken Menzel
pril 10, 2002 12:27 PM Subject: Problem with mysqldump when using query caching > > >Description: > I'm using Mysql 4.0.1 with query caching: > > set-variable = query_cache_limit=10M > set-variable = query_cache_size=10M > set-variable = query_cache_startup

Problem with mysqldump when using query caching

2002-04-10 Thread Nick Pasich
t;How-To-Repeat: Execute a mysqldump command more than once. >Fix: >Submitter-Id: >Originator:Nick Pasich >Organization: >MySQL support: email support >Synopsis: Problem with mysqldump when using query caching >Severity: serious >Priority:

Re: problem with mysqldump

2001-08-05 Thread Stefan Hinz
tung) iConnect e-commerce solutions GmbH www.iConnect.de - www.js-webShop.de TEL +49 30 46307-382 - FAX -388 --- - Original Message - From: Agent Smith <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, August 05, 2001 4:28 AM Subject: problem with mysqldump > Hi everybody, &

Re: problem with mysqldump

2001-08-05 Thread joseph . bueno
Hi, Agent Smith wrote: > > Hi everybody, > > I got a problem with the "mysqldump" function. > > I connect to mySql trough phpMyAdmin, select the database "xyz", which > is the only database on the server. > Then I enter the following string into the text field "Run SQL > query/queries on datab

problem with mysqldump

2001-08-04 Thread Agent Smith
Hi everybody, I got a problem with the "mysqldump" function. I connect to mySql trough phpMyAdmin, select the database "xyz", which is the only database on the server. Then I enter the following string into the text field "Run SQL query/queries on database xyz:": mysqldump xyz | mysql --host=XX

Re: Problem with mysqldump....

2001-05-02 Thread ryc
To import you should do cat filename | mysql -uusername -ppassword databasename ryan - Original Message - From: "Rachel-MY" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 01, 2001 9:38 PM Subject: Problem with mysqldump Hi everyone,

Re: Problem with mysqldump....

2001-05-01 Thread Vigile
-3341 - Original Message - From: "Rachel-MY" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 01, 2001 10:38 PM Subject: Problem with mysqldump Hi everyone, I'm trying to backup all the databases from Server_A to Server_B. I'd issue "mysq

Problem with mysqldump....

2001-05-01 Thread Rachel-MY
Hi everyone, I'm trying to backup all the databases from Server_A to Server_B. I'd issue "mysqldump" command in server_A to backup every single database, as below :- > mysqldump -uusername -ppassword databases_name > file_name In server_B, i create a new database using the command b

Problem with mysqldump and importing the data.

2001-03-28 Thread Andreas Tyrosvoutis
I used mysqldump to backup a database before I ran a structure change script on it. Well, things didnt work right, so I deleted the database, recreated it, and tried to import the data again. No luck. I am getting this error message.. [root@fg tep_catalog-pr2.1]# mysql -p catalog/ < /root/tep_c

Problem with mysqldump - Segmentation Fault

2001-02-14 Thread Rodolfo Sikora
cerveja:/var/lib/mysql# mysqldump -e -l -F -h champagne velop > champagne.velop.20010214.dump Segmentation fault cerveja:/var/lib/mysql# :/ --- Tenha uma conta de email Grátis no ACBusca! ---