Re: mysqldump running out out of memory

2007-05-23 Thread fredrik
> Fredrik Carlsson: >> >> Hi, >> >> Yes I'm using the -q option with mysqldump, but the result is the same. >> >> This is a replicated environment and the master is running FreeBSD and >> the slave NetBSD and on the master which only has InnoDB ta

Re: mysqldump running out out of memory

2007-05-01 Thread Fredrik Carlsson
n not afford to run the dump there. The tables on the slave is mostly Myisam, maybe there is some kind of memory buffer that I'm missing to tune on NetBSD but i can't figure out what it can be, I've already increased the ulimit values for the session running the dump. // Fredr

mysqldump running out out of memory

2007-04-29 Thread Fredrik Carlsson
owing command: /usr/pkg/bin/mysqldump -h localhost -B theDatabase --skip-opt --max_allowed_packet=1024M -q Any tips on how to get the dump running? the dump should be about 15-20GB in size the fully dumped, but I never seems to get there. // Fredrik Carlsson -- MySQL General Mailing List For

Performance

2006-10-09 Thread Fredrik Carlsson
ormal? // Fredrik Carlsson -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

mysqld refuses to run on boot

2006-06-21 Thread Fredrik Andersson
Hi all I have problems getting MySQL autoboot on my RedHat installation. I have tried to add the mysql.server start script from the install dir to the system with chkconfig --add mysql (I copied it to /etc/init.d/) and then trying to add mysql to the default boot order with chkconfig mysql on but

Question about innodb, ibdata1

2005-10-10 Thread Fredrik Carlsson
ng to do with it? I'm using MySQL 4.1.11 // Fredrik Carlsson -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Max connections being used every 10-12 day.

2005-01-05 Thread Fredrik Carlsson
Hi, My original query was a UNION query :) and that one is really fast. The problem i had was that every 8-12 day mysql sad that all of my max_connections was in use. I think i will stick with my UNION query it seems faster. // Fredrik. Bill Easton wrote: Fredrik, I haven't read a

Re: Max connections being used every 10-12 day.

2005-01-03 Thread Fredrik Carlsson
L | NULL | 542437 | Using filesort | | B | eq_ref | PRIMARY,parent | PRIMARY | 4 | mail_archive.A.id | 1 | Using where| +---+++-+-+---+++ 2 rows in set (0.00 sec) // Fredrik Donny Simon

Re: Max connections being used every 10-12 day.

2005-01-03 Thread Fredrik Carlsson
ing index | +---++--+-+-+---+--+--+ 2 rows in set (0.00 sec) The table and index structure are from the production database but the query was executed on my test database (same structure but not the same amount of rows) // Fredrik Donny Simonton w

Re: Max connections being used every 10-12 day.

2005-01-02 Thread Fredrik Carlsson
a couple of days ago and when i checked the server 14 hours later (16:00) it still said that max_connections was full and mysqld was idling using 0% of the CPU, if the queries was queued up would'nt mysql at least show some activity? // Fredrik Donny Simonton wrote: Frederick, What exactl

Re: Max connections being used every 10-12 day.

2005-01-02 Thread Fredrik Carlsson
nst |1 | | | art | ref | parent | parent | 5 | const |2 | Using where; Using filesort | ++---+--+-+-+---+--+-+ // Fredrik Carlsson Donny Simonton w

Re: Max connections being used every 10-12 day.

2005-01-01 Thread Fredrik Carlsson
mysql has about 50GB of temp space to work with so thats not the problem. Its strange because the server is not that loaded and around 12-04 at night no cronjobs that affects mysql or general server performance are being run. Is is possible to se how many queued up questions mysql has at the mom

Max connections being used every 10-12 day.

2005-01-01 Thread Fredrik Carlsson
ating upp all the connections. // Fredrik Carlsson # The MySQL server [mysqld] port= 3306 socket= /tmp/mysql.sock skip-locking key_buffer = 280M max_allowed_packet = 32M table_cache = 512 sort_buffer_size = 2M read_buf

Re: converting to Innodb.

2004-12-01 Thread Fredrik Carlsson
Roger Baklund wrote: Fredrik Carlsson wrote: Hi list, I have a question regarding mysql and innodb. My current setup uses myisam and the db size is about 1.6 GB with two table that each have about 500k rows. I perform alot of fulltext search on these tables and they can sometimes take along time

converting to Innodb.

2004-12-01 Thread Fredrik Carlsson
during the fulltext search everything else stops working. I read at dev.mysql.com that myisam uses per table lock and innodb per row lock so my question is if i convert my tables to innodb will i be able to use the tables during a fulltext search? // Fredrik Carlsson -- MySQL General Mailing List

mysqld segfaults.

2004-11-08 Thread Fredrik Carlsson
ing NetBSD 1.6.2 and mysql 4.0.21 What can cause these segfaults? and is there anything i can tune to get rid of them? // Fredrik Carlsson -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

CHECK TABLE looks up all databases.

2004-08-31 Thread Fredrik Carlsson
Hi, I have some questions regarding CHECK TABLE, OPTIMIZE TABLE. When i run these commands on table1 mysql seems to lock up all other databases, is it possible to run these things in the "background" so that other databases can be accessible. // Fredrik Carlsson. -- MySQL General Ma

Fulltext performance problem.

2004-08-20 Thread Fredrik Carlsson
NetBSD 1.6.3, mysql 4.0.20. The database contains about 300 000 rows and the size is ~1GB. // Fredrik Carlsson -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Random relation

2004-05-22 Thread Fredrik Haugbergsmyr
I have two tables one is the gallery and the other one is table for events so I can categorise the images. Now I wan't to get all the rows from events (id, event, date) in cronological order by date. But I also wan't a random row (id, , ext, *_nail) from the gallery where gallery.event is equal

MySQL takes 8Sek, MySQLcc takes 0.1Sek to run the same query. WHY???

2004-03-13 Thread Fredrik Högberg
hy i'm seeing it. Any thoughts Cheers Fredrik Högberg

Re: Fetch data and search on different tables.

2004-02-26 Thread Fredrik Carlsson
This query was pretty fast avg. 1-3 s / search SELECT m1.id FROM table1 AS t1 JOIN table AS t2 ON m1.textid=m2.id WHERE match(t2.text) AGAINST('$searchString' IN BOOLEAN MODE); I also added an index on table1.textid and table2.id. Is there a way to optimize this query even more?

Re: Fetch data and search on different tables.

2004-02-26 Thread Fredrik Carlsson
this query? // Fredrik Carlsson Egor Egorov <[EMAIL PROTECTED]> wrote: >Something like: > >SELECT ... FROM one, two WHERE textid=two.id AND MATCH(text) AGAINST() .. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Fetch data and search on different tables.

2004-02-25 Thread Fredrik Carlsson
x27; IN BOOLEAN MODE) having relevance > 0.9 order by relevance DESC But due to the split of the table i cant really figure out how to make the question. I want to search with fulltext on table2(text) and fetch all the corresponding data from table1 where textid=(table2.id). Any tips? Best regar

[MYSQL] Licens problems.

2003-10-09 Thread Thomas Fredrik Holm
Hello I am developing a small program for a small computer firm. Now I wonder when I have to buy the corporate licens? And when to use the free GPL-licens one. My application ´saves some data in the database and I have done NO change in the cource code of the free version of MySQL. Should I or

'Disappearance of the mysql.sock when the computer is shut down and restarted'

2003-02-18 Thread Fredrik Lundgren
sock after reboot and Before I restart the computer MySQL works very OK both with rpm install and binary install What to do? What do I do wrong? Fredrik Lundgren Norrköping - Before posting, please check: http:/

Compile time error

2002-08-04 Thread Fredrik Tolf
vely new to MySQL, I don't know what to do about this. Does anyone know? Fredrik Tolf - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive)

Installing on Win (XP): InstallShield errors in _ins5176._mp

2002-07-24 Thread Fredrik Dettner
've tried all this; even tried to install MySQL in "Safe mode" with an absolute minimum of processes running. Same result. I'm using an English version of Microsoft Windows XP [Version 5.1.2600] with all available updates. It's a Dell laptop with 1,2GHz PIII and 512 MB. Th

Upgraded server, MySql Crashes with old databases

2001-12-04 Thread Fredrik Lunde
is no download available. Is there a NT version of MySql 3.21? Does anybody know where to get this? Is there any other ways to read these databases? Thanks - Fredrik Lunde /Webutvikler/webdesigner Norwegiandesigne

(securtity) number in a where query

2001-07-23 Thread Fredrik Kristiansen
or, and OR operator. Is the best way to include ' in queries, or should I precheck the number to verify that they really are number? - Fredrik - Before posting, please check: http://www.mysql.com/manual.php (the

[mysql.server stop fails under OpenBSD 2.9]

2001-07-22 Thread fredrik . viklund
and mySQL to attempt any more organized fixes... >Submitter-Id: >Originator:Fredrik Viklund >Organization: >MySQL support: [none] >Synopsis: mysql.server stop fails to stop mysqld and safe_mysqld >Severity: >Priority: >Category: mysql &

VB: Recordset with ASP

2001-07-05 Thread Fredrik Petersson
Hi There! I have some trouble with a webaplication. I used to run it with an Access dbase but have changed to a nice MySQL dbase and then i got problems with the commands Addnew,Update,MoveFirst I use the samt locks and cursors as I did earlyer. Any good solution? Are there any parameters to s

MySQL replication

2001-02-20 Thread Fredrik Kristiansen
must replicate themself with all the other servers. Can this be done with mysql, or do I have to use Oracle? And what about PostgreSQL? - Fredrik - Before posting, please check: http://www.mysql.com/manual.php (the manual