Re: Can I undelete a dropped MyISAM table?

2007-06-17 Thread Geoffroy Cogniaux

2007/6/16, mos [EMAIL PROTECTED]:

At 09:39 AM 6/16/2007, Stanley wrote:
Is it possible to undelete a dropped MyISAM table?

Nope, not from within MySQL. Your operating system might allow you to
undelete the file then you might have a chance of importing the data to a
new table.

Mike



If your have a backup of your file system, you have only to restore
those file in the mysql datadir : yourtable.FRM, yourtable.MYD,
yourtable.MYI.
No need to importing data to a new table. MySQL will see it as it were
before dropping it.
This is a notable difference between myisam and innodb for instance.

Regards,
Geoffroy.

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Installation problems with MySql 5.0.41 (source distribution)

2007-06-17 Thread Geoffroy Cogniaux

Hi,

You're running MySQL with a mysql linux user, verify that he have
write access on mysql datadir. You should specify it with --datadir=
at command line invoking mysql_install_db too.

2007/6/16, [EMAIL PROTECTED] [EMAIL PROTECTED]:


Hi everybody,

I am trying to compile/configure MySQl 5.0.41 on a Mandrake 10 linux box.

In doing so, I am getting some errors with mysql_install_db (ERROR: 1049
Unknown database 'mysql', Installation of system tables failed!)

Please let me know how to solve the problem.

Thanks in advance for your time and help.

Anand

Here are the details pertaining to my problem:

I used this as a guide:
http://dev.mysql.com/doc/refman/5.0/en/quick-install.html:

and followed all the steps. The following error(s) comes when I try using
mysql_install_db

/usr/local/mysql/bin/mysql_install_db --user=mysql
Installing MySQL system tables...
ERROR: 1049  Unknown database 'mysql'
070616  1:24:38 [ERROR] Aborting
070616  1:24:38 [Note] /usr/local/mysql/libexec/mysqld: Shutdown complete
Installation of system tables failed!

Examine the logs in /usr/local/mysql/var for more information.
You can try to start the mysqld daemon with:
/usr/local/mysql/libexec/mysqld --skip-grant 
and use the command line tool
/usr/local/mysql/bin/mysql to connect to the mysql
database and look at the grant tables:

shell /usr/local/mysql/bin/mysql -u root mysql
mysql show tables

Try 'mysqld --help' if you have problems with paths. Using --log
gives you a log in /usr/local/mysql/var that may be helpful.
---

And then, when I do /usr/local/mysql/libexec/mysqld --skip-grant  as
suggested in the above error message, it just aborts.

Here is the architecture info. from mysqlbug
--
Release:   mysql-5.0.41 (Source distribution)
C compiler:gcc (GCC) 3.3.2 (Mandrake Linux 10.0 3.3.2-6mdk)
C++ compiler:  g++ (GCC) 3.3.2 (Mandrake Linux 10.0 3.3.2-6mdk)
Environment:
machine, os, target, libraries (multiple lines)
System: Linux 2.6.3-7mdk #1 Wed Mar 17 15:56:42 CET 2004 i686 unknown
unknown GNU/Linux
Architecture: i686

Some paths:  /usr/bin/perl /usr/bin/make /usr/bin/gmake /usr/bin/gcc
/usr/bin/cc
GCC: Reading specs from /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/specs
Configured with: ../configure --prefix=/usr --libdir=/usr/lib
--with-slibdir=/lib --mandir=/usr/share/man --infodir=/usr/share/info
--enable-shared --enable-threads=posix --disable-checking
--enable-long-long --enable-__cxa_atexit --enable-clocale=gnu
--enable-languages=c,c++,ada,f77,objc,java,pascal
--host=i586-mandrake-linux-gnu --with-system-zlib
Thread model: posix
gcc version 3.3.2 (Mandrake Linux 10.0 3.3.2-6mdk)
Compilation info: CC='gcc'  CFLAGS=''  CXX='g++'  CXXFLAGS=''  LDFLAGS=''
ASFLAGS=''
LIBC:
lrwxrwxrwx  1 root root 13 Sep 13  2004 /lib/libc.so.6 - libc-2.3.3.so
-rwxr-xr-x  1 root root 1281788 Feb 16  2004 /lib/libc-2.3.3.so
-rw-r--r--  1 root root 204 Feb 16  2004 /usr/lib/libc.so
Configure command: ./configure '--prefix=/usr/local/mysql' '--with-unix\
-socket-path=/usr/local/mysql/tmp/mysql.sock'
--


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]




--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: mysqldump for myisam tables.

2007-06-17 Thread Geoffroy Cogniaux

2007/6/16, ViSolve DB Team [EMAIL PROTECTED]:

-- this itself takes consistent backup. mysqldump utility by default locks
the table.

yes with --lock-tables option which do a FLUSH TABLES WITH READ LOCK
and is a good consistent way for myisam tables.

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Help with AVG query

2007-06-17 Thread Reynier Perez Mira
Hi every:

I have this table:

 

smp_evaluacion

---

id_evaluacion

eval1

eval2

eval3

eval4

eval5

 

This is for a rating system. I need to build a query for retrieve the best 
rating files. Normally with PHP I add every field, I mean (eval1, eval2, eval3, 
eval4, eval5) and then divide this result by 5, like a average. I know that SQL 
can do this directly using AVG function but I don't know how. Can any help me?

 

Cheers and thanks in advance



 

Reynier Pérez Mira

5to. año Ing. Informática

Universidad de las Ciencias Informáticas

 



Re: Help with AVG query

2007-06-17 Thread Peter Brawley

Reynier,

Normally with PHP I add every field, I mean (eval1, eval2, 
eval3, eval4, eval5) and then divide this result by 5, like 
a average. I know that SQL can do this directly using AVG 
function but I don't know how. Can any help me?


AVG computes an average across rows. If I understand you correctly, you 
want the average of five columns within each row? That would be ...


SELECT (eval1+eval2+eval3+eval4+eval5)/5 as mean FROM ...

and if you want the average of that ...

SELECT AVG( (eval1+eval2+eval3+eval4+eval5)/5 ) AS superavg FROM ...

PB

-

Reynier Perez Mira wrote:

Hi every:

I have this table:

 


smp_evaluacion

---

id_evaluacion

eval1

eval2

eval3

eval4

eval5

 


This is for a rating system. I need to build a query for retrieve the best 
rating files. Normally with PHP I add every field, I mean (eval1, eval2, eval3, 
eval4, eval5) and then divide this result by 5, like a average. I know that SQL 
can do this directly using AVG function but I don't know how. Can any help me?

 


Cheers and thanks in advance



 


Reynier Pérez Mira

5to. año Ing. Informática

Universidad de las Ciencias Informáticas

 



  



No virus found in this incoming message.
Checked by AVG Free Edition. 
Version: 7.5.472 / Virus Database: 269.9.0/852 - Release Date: 6/17/2007 8:23 AM
  


mysql-server-5.1.19 path variable error set on compile

2007-06-17 Thread David Southwell

# uname -a
 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun May  7 04:15:57 UTC 2006 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/SMP  amd64
#
Just upgraded mysql to include:

# pkg_info |grep mysql
mysql-client-5.1.19 Multithreaded SQL database (client)
mysql-server-5.1.19 Multithreaded SQL database (server)
p5-DBD-mysql51-4.005 MySQL 5.1 driver for the Perl5 Database Interface (DBI)
php5-mysql-5.2.3The mysql shared extension for php
#

Seems we have an oddity here after compiling:
Extract from show variables:
show variables;
+-+---+
| Variable_name   | Value |
+-+---+
| basedir | /usr/local/  
| character_sets_dir  | /usr/local/share/mysql/charsets/  |
   
| datadir | /usr2/datadb/ |

| general_log_file| /usr2/datadb/dns1.log |

| language| /usr/local/share/mysql/english/   |

| pid_file| /usr2/datadb//dns1.vizion2000.net.pid |

 ^^Why '//'

| plugin_dir  | /usr/local/lib/mysql  |

| slow_query_log_file | /usr2/datadb/dns1-slow.log|
| socket  | /tmp/mysql.sock   |

So I thought I would:
(a) RESET the variable

mysql set pid_file = /usr2/datadb/dns1.vizion2000.net.pid ;
ERROR 1193 (HY000): Unknown system variable 'pid_file'
mysql set GLOBAL pid_file = /usr2/datadb/dns1.vizion2000.net.pid ;
ERROR 1193 (HY000): Unknown system variable 'pid_file'
mysql set GLOBAL pid_file = '/usr2/datadb/dns1.vizion2000.net.pid' ;
ERROR 1193 (HY000): Unknown system variable 'pid_file'
mysql set @@GLOBAL pid_file = '/usr2/datadb/dns1.vizion2000.net.pid' ;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual 
that corresponds to your MySQL server version for the right syntax to use 
near 'pid_file = '/usr2/datadb/dns1.vizion2000.net.pid'' at line 1
mysql set @@GLOBAL.pid_file = '/usr2/datadb/dns1.vizion2000.net.pid' ;
ERROR 1193 (HY000): Unknown system variable 'pid_file'
mysql  

But I cannot seem to get the Syntax right - can someone please point me in the 
right direction.

(b) Ask why this might be happening.

It might be worth recording that /usr2/ is a seperate physical device and 
emphasize that the base-dir is /usr/local/.

Thanks in advance

David 


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



mysqldump problem with large innodb tables...

2007-06-17 Thread Hartleigh Burton

Hi All,

I have a database which is currently at ~10GB in it's test phase. It  
is containing uncompressed audio and is expected to reach 1.5TB in no  
time at all. I am just running some backup tests and I have been  
having lots of problems creating an accurate backup.


I have tried both MySQL Administrator  mysqldump, both applications  
drop out on the same table, the table `trackdata` which contains ~9GB  
worth of data. There is no single row any larger than 50MB, most  
average around 40MB. Windows 2000 Server, MySQL v5.0.37-community-nt  
and all tables are InnoDB.


If anyone can help me out with this problem the assistance is greatly  
appreciated. I have scoured google and various other sources and not  
found much information that has been useful to me. I hope I have  
enough info below... if more is required let me know.


mysqldump example

P:\mysqldump -u username -p mraentertainment  mraentertainment.sql  
--opt

--verbose --max_allowed_packet=500M --hex-blob --single_transaction
--net_buffer_length=100M
Enter password: **
-- Connecting to localhost...
-- Retrieving table structure for table albums...
-- Sending SELECT query...

...

-- Retrieving rows...
-- Retrieving table structure for table trackdata...
-- Sending SELECT query...
-- Retrieving rows...
mysqldump: Error 2013: Lost connection to MySQL server during query  
when dumping

 table `trackdata` at row: 1


my.ini configuration file

[client]

port=3306

[mysql]

default-character-set=latin1

[mysqld]

log-bin=itd002-bin
server-id=1

port=3306

wait_timeout=86400

max_allowed_packet=100M


basedir=C:/Program Files/MySQL/MySQL Server 5.0/

datadir=C:/Program Files/MySQL/MySQL Server 5.0/Data/

default-character-set=latin1

default-storage-engine=INNODB

sql- 
mode=STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION


max_connections=100

query_cache_size=0

table_cache=256

tmp_table_size=77M

thread_cache_size=8

#*** MyISAM Specific options

myisam_max_sort_file_size=100G

myisam_max_extra_sort_file_size=100G

myisam_sort_buffer_size=154M

key_buffer_size=130M

read_buffer_size=64K
read_rnd_buffer_size=256K

sort_buffer_size=256K

#skip-innodb

innodb_additional_mem_pool_size=6M

innodb_flush_log_at_trx_commit=1

innodb_log_buffer_size=3M

innodb_buffer_pool_size=252M

innodb_log_file_size=126M

innodb_thread_concurrency=8





Regards,
Hartleigh Burton
Resident Geek

MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978

www.mraentertainment.com



Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!




Re: mysqldump problem with large innodb tables...

2007-06-17 Thread Baron Schwartz

Hi Hartleigh,

Hartleigh Burton wrote:

Hi All,

I have a database which is currently at ~10GB in it's test phase. It is 
containing uncompressed audio and is expected to reach 1.5TB in no time 
at all. I am just running some backup tests and I have been having lots 
of problems creating an accurate backup.


I have tried both MySQL Administrator  mysqldump, both applications 
drop out on the same table, the table `trackdata` which contains ~9GB 
worth of data. There is no single row any larger than 50MB, most average 
around 40MB. Windows 2000 Server, MySQL v5.0.37-community-nt and all 
tables are InnoDB.

[snip]

-- Retrieving rows...
-- Retrieving table structure for table trackdata...
-- Sending SELECT query...
-- Retrieving rows...
mysqldump: Error 2013: Lost connection to MySQL server during query when 
dumping

 table `trackdata` at row: 1


You might be able to find more information about the precise error in the 
server's error logs.  That will give us a better idea what might be wrong, if 
there is an error server-side, which seems likely to me.


Baron

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: mysqldump problem with large innodb tables...

2007-06-17 Thread Hartleigh Burton

Hi Baron,

There are no MySQL errors in the event viewer.

On 18/06/2007, at 10:36 AM, Baron Schwartz wrote:


Hi Hartleigh,

Hartleigh Burton wrote:

Hi All,
I have a database which is currently at ~10GB in it's test phase.  
It is containing uncompressed audio and is expected to reach 1.5TB  
in no time at all. I am just running some backup tests and I have  
been having lots of problems creating an accurate backup.
I have tried both MySQL Administrator  mysqldump, both  
applications drop out on the same table, the table `trackdata`  
which contains ~9GB worth of data. There is no single row any  
larger than 50MB, most average around 40MB. Windows 2000 Server,  
MySQL v5.0.37-community-nt and all tables are InnoDB.

[snip]

-- Retrieving rows...
-- Retrieving table structure for table trackdata...
-- Sending SELECT query...
-- Retrieving rows...
mysqldump: Error 2013: Lost connection to MySQL server during  
query when dumping

 table `trackdata` at row: 1


You might be able to find more information about the precise error  
in the server's error logs.  That will give us a better idea what  
might be wrong, if there is an error server-side, which seems  
likely to me.


Baron






Regards,
Hartleigh Burton
Resident Geek

MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978

www.mraentertainment.com



Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!




Re: mysqldump problem with large innodb tables...

2007-06-17 Thread Baron Schwartz

How about in c:\Program Files\MySQL\MySQL Server 5.0\data\hostname.err?

Cheers
Baron

Hartleigh Burton wrote:

Hi Baron,

There are no MySQL errors in the event viewer.

On 18/06/2007, at 10:36 AM, Baron Schwartz wrote:


Hi Hartleigh,

Hartleigh Burton wrote:

Hi All,
I have a database which is currently at ~10GB in it's test phase. It 
is containing uncompressed audio and is expected to reach 1.5TB in no 
time at all. I am just running some backup tests and I have been 
having lots of problems creating an accurate backup.
I have tried both MySQL Administrator  mysqldump, both applications 
drop out on the same table, the table `trackdata` which contains ~9GB 
worth of data. There is no single row any larger than 50MB, most 
average around 40MB. Windows 2000 Server, MySQL v5.0.37-community-nt 
and all tables are InnoDB.

[snip]

-- Retrieving rows...
-- Retrieving table structure for table trackdata...
-- Sending SELECT query...
-- Retrieving rows...
mysqldump: Error 2013: Lost connection to MySQL server during query 
when dumping

 table `trackdata` at row: 1


You might be able to find more information about the precise error in 
the server's error logs.  That will give us a better idea what might 
be wrong, if there is an error server-side, which seems likely to me.


Baron






Regards,
Hartleigh Burton
Resident Geek

MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978

www.mraentertainment.com



Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!





--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: mysqldump problem with large innodb tables...

2007-06-17 Thread Hartleigh Burton
H no there are no new errors in there. Nothing out of the  
ordinary thats for sure. Just notifications that MySQL has started  
and is accepting connections etc. :|



On 18/06/2007, at 11:06 AM, Baron Schwartz wrote:

How about in c:\Program Files\MySQL\MySQL Server 5.0\data 
\hostname.err?


Cheers
Baron

Hartleigh Burton wrote:

Hi Baron,
There are no MySQL errors in the event viewer.
On 18/06/2007, at 10:36 AM, Baron Schwartz wrote:

Hi Hartleigh,

Hartleigh Burton wrote:

Hi All,
I have a database which is currently at ~10GB in it's test  
phase. It is containing uncompressed audio and is expected to  
reach 1.5TB in no time at all. I am just running some backup  
tests and I have been having lots of problems creating an  
accurate backup.
I have tried both MySQL Administrator  mysqldump, both  
applications drop out on the same table, the table `trackdata`  
which contains ~9GB worth of data. There is no single row any  
larger than 50MB, most average around 40MB. Windows 2000 Server,  
MySQL v5.0.37-community-nt and all tables are InnoDB.

[snip]

-- Retrieving rows...
-- Retrieving table structure for table trackdata...
-- Sending SELECT query...
-- Retrieving rows...
mysqldump: Error 2013: Lost connection to MySQL server during  
query when dumping

 table `trackdata` at row: 1


You might be able to find more information about the precise  
error in the server's error logs.  That will give us a better  
idea what might be wrong, if there is an error server-side, which  
seems likely to me.


Baron

Regards,
Hartleigh Burton
Resident Geek
MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978
www.mraentertainment.com
Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql? 
[EMAIL PROTECTED]








Regards,
Hartleigh Burton
Resident Geek

MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978

www.mraentertainment.com



Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!




Re: mysqldump problem with large innodb tables...

2007-06-17 Thread Baron Schwartz
Is there any indication that the mysqldump crash is killing the server and 
causing it to restart?  For example, ready for connections notifications just 
after you try a mysqldump?


Hartleigh Burton wrote:
H no there are no new errors in there. Nothing out of the ordinary 
thats for sure. Just notifications that MySQL has started and is 
accepting connections etc. :|



On 18/06/2007, at 11:06 AM, Baron Schwartz wrote:


How about in c:\Program Files\MySQL\MySQL Server 5.0\data\hostname.err?

Cheers
Baron

Hartleigh Burton wrote:

Hi Baron,
There are no MySQL errors in the event viewer.
On 18/06/2007, at 10:36 AM, Baron Schwartz wrote:

Hi Hartleigh,

Hartleigh Burton wrote:

Hi All,
I have a database which is currently at ~10GB in it's test phase. 
It is containing uncompressed audio and is expected to reach 1.5TB 
in no time at all. I am just running some backup tests and I have 
been having lots of problems creating an accurate backup.
I have tried both MySQL Administrator  mysqldump, both 
applications drop out on the same table, the table `trackdata` 
which contains ~9GB worth of data. There is no single row any 
larger than 50MB, most average around 40MB. Windows 2000 Server, 
MySQL v5.0.37-community-nt and all tables are InnoDB.

[snip]

-- Retrieving rows...
-- Retrieving table structure for table trackdata...
-- Sending SELECT query...
-- Retrieving rows...
mysqldump: Error 2013: Lost connection to MySQL server during query 
when dumping

 table `trackdata` at row: 1


You might be able to find more information about the precise error 
in the server's error logs.  That will give us a better idea what 
might be wrong, if there is an error server-side, which seems likely 
to me.


Baron

Regards,
Hartleigh Burton
Resident Geek
MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978
www.mraentertainment.com
Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!


--MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:
http://lists.mysql.com/[EMAIL PROTECTED]








Regards,
Hartleigh Burton
Resident Geek

MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978

www.mraentertainment.com



Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!





--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: mysqldump problem with large innodb tables...

2007-06-17 Thread Hartleigh Burton
No there is no indication of that at all. The server service appears  
to be in perfect order, does not drop/restart and my other  
applications continue to function without any interruption.


It appears as if the mysqldump connection to the server is  
interrupted or maybe there is something in row 1 of `trackdata` that  
it does not like. This table contains a long blob field which at  
present does not contain any more than ~80MB per row. I also use the  
--hex-blob flag for mysqldump to try and get around any possible  
problems with exporting this data... I have no descriptive error  
messages anywhere and it is driving me nuts :|


On 18/06/2007, at 11:27 AM, Baron Schwartz wrote:

Is there any indication that the mysqldump crash is killing the  
server and causing it to restart?  For example, ready for  
connections notifications just after you try a mysqldump?


Hartleigh Burton wrote:
H no there are no new errors in there. Nothing out of the  
ordinary thats for sure. Just notifications that MySQL has started  
and is accepting connections etc. :|

On 18/06/2007, at 11:06 AM, Baron Schwartz wrote:
How about in c:\Program Files\MySQL\MySQL Server 5.0\data 
\hostname.err?


Cheers
Baron

Hartleigh Burton wrote:

Hi Baron,
There are no MySQL errors in the event viewer.
On 18/06/2007, at 10:36 AM, Baron Schwartz wrote:

Hi Hartleigh,

Hartleigh Burton wrote:

Hi All,
I have a database which is currently at ~10GB in it's test  
phase. It is containing uncompressed audio and is expected to  
reach 1.5TB in no time at all. I am just running some backup  
tests and I have been having lots of problems creating an  
accurate backup.
I have tried both MySQL Administrator  mysqldump, both  
applications drop out on the same table, the table `trackdata`  
which contains ~9GB worth of data. There is no single row any  
larger than 50MB, most average around 40MB. Windows 2000  
Server, MySQL v5.0.37-community-nt and all tables are InnoDB.

[snip]

-- Retrieving rows...
-- Retrieving table structure for table trackdata...
-- Sending SELECT query...
-- Retrieving rows...
mysqldump: Error 2013: Lost connection to MySQL server during  
query when dumping

 table `trackdata` at row: 1


You might be able to find more information about the precise  
error in the server's error logs.  That will give us a better  
idea what might be wrong, if there is an error server-side,  
which seems likely to me.


Baron

Regards,
Hartleigh Burton
Resident Geek
MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978
www.mraentertainment.com
Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!


--MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql? 
[EMAIL PROTECTED]



Regards,
Hartleigh Burton
Resident Geek
MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978
www.mraentertainment.com
Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!






Regards,
Hartleigh Burton
Resident Geek

MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978

www.mraentertainment.com



Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!




Re: mysqldump problem with large innodb tables...

2007-06-17 Thread Baron Schwartz
I'm out of ideas right now.  I don't actually use mysqldump that much and have 
never had this happen.  Hopefully someone else on the mailing list can help, or 
perhaps you can try #mysql on Freenode IRC.


Baron

Hartleigh Burton wrote:
No there is no indication of that at all. The server service appears to 
be in perfect order, does not drop/restart and my other applications 
continue to function without any interruption.


It appears as if the mysqldump connection to the server is interrupted 
or maybe there is something in row 1 of `trackdata` that it does not 
like. This table contains a long blob field which at present does not 
contain any more than ~80MB per row. I also use the --hex-blob flag for 
mysqldump to try and get around any possible problems with exporting 
this data... I have no descriptive error messages anywhere and it is 
driving me nuts :|


On 18/06/2007, at 11:27 AM, Baron Schwartz wrote:

Is there any indication that the mysqldump crash is killing the server 
and causing it to restart?  For example, ready for connections 
notifications just after you try a mysqldump?


Hartleigh Burton wrote:
H no there are no new errors in there. Nothing out of the 
ordinary thats for sure. Just notifications that MySQL has started 
and is accepting connections etc. :|

On 18/06/2007, at 11:06 AM, Baron Schwartz wrote:
How about in c:\Program Files\MySQL\MySQL Server 
5.0\data\hostname.err?


Cheers
Baron

Hartleigh Burton wrote:

Hi Baron,
There are no MySQL errors in the event viewer.
On 18/06/2007, at 10:36 AM, Baron Schwartz wrote:

Hi Hartleigh,

Hartleigh Burton wrote:

Hi All,
I have a database which is currently at ~10GB in it's test phase. 
It is containing uncompressed audio and is expected to reach 
1.5TB in no time at all. I am just running some backup tests and 
I have been having lots of problems creating an accurate backup.
I have tried both MySQL Administrator  mysqldump, both 
applications drop out on the same table, the table `trackdata` 
which contains ~9GB worth of data. There is no single row any 
larger than 50MB, most average around 40MB. Windows 2000 Server, 
MySQL v5.0.37-community-nt and all tables are InnoDB.

[snip]

-- Retrieving rows...
-- Retrieving table structure for table trackdata...
-- Sending SELECT query...
-- Retrieving rows...
mysqldump: Error 2013: Lost connection to MySQL server during 
query when dumping

 table `trackdata` at row: 1


You might be able to find more information about the precise error 
in the server's error logs.  That will give us a better idea what 
might be wrong, if there is an error server-side, which seems 
likely to me.


Baron

Regards,
Hartleigh Burton
Resident Geek
MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978
www.mraentertainment.com
Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!


--MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:
http://lists.mysql.com/[EMAIL PROTECTED]



Regards,
Hartleigh Burton
Resident Geek
MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978
www.mraentertainment.com
Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!






Regards,
Hartleigh Burton
Resident Geek

MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978

www.mraentertainment.com



Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!





--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Limitation of DRBD For MySQL

2007-06-17 Thread Mohd Irwan Jamaluddin

Good day,

Someone gives me several limitations of DRBD For MySQL? Here is the list,

1. Idle resource – secondary host sits idle, wasted investment
2. Failover is not instant, nor transparent
   -Cold standby failover
3. Recovery requires time to start / recover database
4. Recovery process can fail – requires reload
5. Requires database journal capability
   -MySQL MyISAM does not work
6. Operation not continuous: planned downtime required
   -Active-passive does not cover DB maintenance
   -Anything that requires mounted disk
7. Does not address scaling or performance
8. OS Limitations – Some only run on Linux

May someone elaborate or disprove those points?
Thanks.

--
Regards,
Mohd Irwan Jamaluddin
Web: http://www.irwan.name/
Blog: http://blog.irwan.name/


Re: mysqldump problem with large innodb tables...

2007-06-17 Thread Hartleigh Burton

Ok... this error has just started popping up in my .err log file...

070618 14:31:10  InnoDB: ERROR: the age of the last checkpoint is  
237821842,

InnoDB: which exceeds the log group capacity 237813351.
InnoDB: If you are using big BLOB or TEXT rows, you must set the
InnoDB: combined size of log files at least 10 times bigger than the
InnoDB: largest such row.
070618 14:39:17  InnoDB: ERROR: the age of the last checkpoint is  
237829009,

InnoDB: which exceeds the log group capacity 237813351.
InnoDB: If you are using big BLOB or TEXT rows, you must set the
InnoDB: combined size of log files at least 10 times bigger than the
InnoDB: largest such row.


On 18/06/2007, at 12:09 PM, Baron Schwartz wrote:

I'm out of ideas right now.  I don't actually use mysqldump that  
much and have never had this happen.  Hopefully someone else on the  
mailing list can help, or perhaps you can try #mysql on Freenode IRC.


Baron

Hartleigh Burton wrote:
No there is no indication of that at all. The server service  
appears to be in perfect order, does not drop/restart and my other  
applications continue to function without any interruption.
It appears as if the mysqldump connection to the server is  
interrupted or maybe there is something in row 1 of `trackdata`  
that it does not like. This table contains a long blob field which  
at present does not contain any more than ~80MB per row. I also  
use the --hex-blob flag for mysqldump to try and get around any  
possible problems with exporting this data... I have no  
descriptive error messages anywhere and it is driving me nuts :|

On 18/06/2007, at 11:27 AM, Baron Schwartz wrote:
Is there any indication that the mysqldump crash is killing the  
server and causing it to restart?  For example, ready for  
connections notifications just after you try a mysqldump?


Hartleigh Burton wrote:
H no there are no new errors in there. Nothing out of the  
ordinary thats for sure. Just notifications that MySQL has  
started and is accepting connections etc. :|

On 18/06/2007, at 11:06 AM, Baron Schwartz wrote:
How about in c:\Program Files\MySQL\MySQL Server 5.0\data 
\hostname.err?


Cheers
Baron

Hartleigh Burton wrote:

Hi Baron,
There are no MySQL errors in the event viewer.
On 18/06/2007, at 10:36 AM, Baron Schwartz wrote:

Hi Hartleigh,

Hartleigh Burton wrote:

Hi All,
I have a database which is currently at ~10GB in it's test  
phase. It is containing uncompressed audio and is expected  
to reach 1.5TB in no time at all. I am just running some  
backup tests and I have been having lots of problems  
creating an accurate backup.
I have tried both MySQL Administrator  mysqldump, both  
applications drop out on the same table, the table  
`trackdata` which contains ~9GB worth of data. There is no  
single row any larger than 50MB, most average around 40MB.  
Windows 2000 Server, MySQL v5.0.37-community-nt and all  
tables are InnoDB.

[snip]

-- Retrieving rows...
-- Retrieving table structure for table trackdata...
-- Sending SELECT query...
-- Retrieving rows...
mysqldump: Error 2013: Lost connection to MySQL server  
during query when dumping

 table `trackdata` at row: 1


You might be able to find more information about the precise  
error in the server's error logs.  That will give us a better  
idea what might be wrong, if there is an error server-side,  
which seems likely to me.


Baron

Regards,
Hartleigh Burton
Resident Geek
MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978
www.mraentertainment.com
Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!


--MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql? 
[EMAIL PROTECTED]



Regards,
Hartleigh Burton
Resident Geek
MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978
www.mraentertainment.com
Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!

Regards,
Hartleigh Burton
Resident Geek
MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978
www.mraentertainment.com
Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql? 
[EMAIL PROTECTED]








Regards,
Hartleigh Burton
Resident Geek

MRA Entertainment Pty Ltd
5 Dividend St | Mansfield | QLD 4122 | Australia
Phone: (07) 3457 5041
Fax: (07) 3349 8806
Mobile: 0421 646 978

www.mraentertainment.com



Internal Virus Database was built: Never
Checked by MAC OSX... we don't get viruses!