Re: Client does not support authentication protocol requested by server

2006-03-26 Thread Bluejays PC Services
lps Regards Jeremy -- Jeremy Oliver Bluejays PC Repair tel 020 8656 1056 mob 07855833401 www.bluejayspc.co.uk -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

error report using mysql 3.23.49 max

2003-01-15 Thread PC Systems
Dear Sirs. We are programers in Brasil and we are currently conducting tests with MySQL version 3.23.49 Max working with Dephi 6.0. For testing purposes we developed a very simple program that inserts 500 records into a table. The folowing teste has been conducted: With the test program two statio

error report using mysql 3.23.49 max

2003-01-15 Thread PC Systems
Dear Sirs. We are programers in Brasil and we are currently conducting tests with MySQL version 3.23.49 Max working with Dephi 6.0. For testing purposes we developed a very simple program that inserts 500 records into a table. The folowing teste has been conducted: With the test program two statio

Re: How dangerous is OPTIMIZE TABLE?

2002-05-11 Thread Fournier Jocelyn [Presence-PC]
Hi, AFAIK, it may cause problem if used on table for which you are using INSERT DELAYED. http://www.mysql.com/doc/B/u/Bugs.html Regards, Jocelyn Fournier - Original Message - From: "Benjamin Pflugmann" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Mark" <[EMAIL PROTECTED]> Sent: S

Which Index is better ?

2002-04-27 Thread Fournier Jocelyn [Presence-PC]
Hi, I wonder which index will be the most efficient for this query : SELECT numreponse FROM searchhardwarefr7 WHERE pseudo='joce' AND date>'2001-01-01 00:00:00'; I tested a compound index on (pseudo,date,numreponse), and explain return : mysql> EXPLAIN SELECT numreponse FROM searchhardwarefr7

Re: Duplicate Keys

2002-04-26 Thread Fournier Jocelyn [Presence-PC]
Hi, Try ALTER IGNORE TABLE your_table ADD UNIQUE (column_where_you_dont_want_duplicates); Regards, Jocelyn Fournier - Original Message - From: "Oswaldo Castro" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 26, 2002 8:20 PM Subject: Duplicate Keys > Hi List > > Sor

Re: How does DISTINCT really work ?

2002-04-26 Thread Fournier Jocelyn [Presence-PC]
<[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, April 26, 2002 4:45 PM Subject: Re: How does DISTINCT really work ? > Fournier Jocelyn [Presence-PC] writes: > > Hi, > > > > I have the latest

Re: select first or last row

2002-04-20 Thread Fournier Jocelyn [Presence-PC]
Hi, For the first question you can make it in two step : SELECT MIN(id) FROM names; SELECT * FROM names WHERE id = min ; SELECT MAX(id) FROM names; SELECT * FROM names WHERE id = max ; Regards, Jocelyn Fournier PresencePC - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROT

Re: How does DISTINCT really work ?

2002-04-15 Thread Fournier Jocelyn [Presence-PC]
Hi, Sorry finally there is no lock with 'use database', it only takes a huge amont of time because of the number of table in my database :) Regards, Jocelyn - Original Message - From: "Fournier Jocelyn [Presence-PC]" <[EMAIL PROTECTED]> To: <[EMAIL P

Re: How does DISTINCT really work ?

2002-04-15 Thread Fournier Jocelyn [Presence-PC]
Hi, I have the latest 4.0.2 source installed, and the problem is still here AFAIK : mysql> \s -- mysql Ver 12.1 Distrib 4.0.2-alpha, for pc-linux-gnu (i686) -=[root@anedroide]=(/usr/local/mysql-4.0)# bk export -tpatch <(13:29:52) # This is a BitKeeper generated patch f

Re: How does DISTINCT really work ?

2002-04-14 Thread Fournier Jocelyn [Presence-PC]
In fact I couldn't suppress the LIMIT as it would return a lot of rows ;) However the order by doesn't seem to have any effect. - Original Message - From: "DL Neil" <[EMAIL PROTECTED]> To: "Carsten Gehling" <[EMAIL PROTECTED]>; "Fo

Re: How does DISTINCT really work ?

2002-04-14 Thread Fournier Jocelyn [Presence-PC]
Yes but when it's written "DISTINCT is converted to a GROUP BY on all columns", which columns are included in "all columns" ? :) Thanks, Jocelyn - Original Message - From: "Carsten Gehling" <[EMAIL PROTECTED]> To: "Fournier Jocelyn [Presen

Re: How does DISTINCT really work ?

2002-04-14 Thread Fournier Jocelyn [Presence-PC]
---+ 2 rows in set (0.00 sec) Jocelyn - Original Message - From: "DL Neil" <[EMAIL PROTECTED]> To: "Fournier Jocelyn [Presence-PC]" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, April 14, 2002 6:58 PM Subject: Re: How does DISTINCT re

Re: How does DISTINCT really work ?

2002-04-14 Thread Fournier Jocelyn [Presence-PC]
Hi, So why does I obtain duplicates numbers for 'topic' with the first query with DISTINCT ? (perhaps a bug ?) Regards, Jocelyn Fournier - Original Message - From: "DL Neil" <[EMAIL PROTECTED]> To: "Fournier Jocelyn [Presence-PC]" <[EMAIL PROTEC

How does DISTINCT really work ?

2002-04-13 Thread Fournier Jocelyn [Presence-PC]
22 | | 108096 | | 106794 | ++ 20 rows in set (0.10 sec) Does DISTINCT implicitely check columns included in the WHERE clause ? Thanks you. Regards, Jocelyn Fournier Presence-PC - Before posting, please check: ht

Re: Attachments & Variables....

2002-04-05 Thread Fournier Jocelyn [Presence-PC]
Hi, > 5:40 a.m. > > MYSQL SQL MYSQL SQL MYSQL SQL MYSQL SQL MYSQL SQL MYSQL SQL MYSQL SQL MYSQL SQL > MYSQL SQL MYSQL SQL MYSQL SQL MYSQL SQL MYSQL SQL MYSQL SQL MYSQL SQL MYSQL SQL > > (is that enough, to get past the filter ?) > (sent this via the website, & got a reply re the filter...) > Pe

Re: Group by?

2002-04-04 Thread Fournier Jocelyn [Presence-PC]
> +-++---+ > |0001 | A | 3.45 | > |0002 | A | 10.99 | > |0003 | B | 1.45 | > |0004 | D | 19.95 | > +-++---+ > 4 rows in set (0.00 sec) > > QUESTION: I had expected 7 rows - where did the rest go? Tr

Myisamchk question

2002-04-01 Thread Fournier Jocelyn [Presence-PC]
ookie' Data records: 95289 [root@forum] /home/mirror/mysql/Hardwarefr> ls -la cookie.MYI -rw-r--r--1 root root 1577984 Mar 12 01:56 cookie.MYI Why does the MYI is know nearly twice as big as the old cookie.MYI fil

Re: Optimizing tables

2002-03-22 Thread Fournier Jocelyn [Presence-PC]
Hi, What about taking a look at the manuel before ? ;) http://www.mysql.com/doc/ Regards, Jocelyn Fournier - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 22, 2002 12:14 PM Subject: Optimizing tables > >

Re: MySQL - check for existing data

2002-03-16 Thread Fournier Jocelyn [Presence-PC]
Hi, Just set a unique index on the right column and you won't have anymore duplicate in your table :) ALTER TABLE yourtable ADD UNIQUE(your_column); Regards, Jocelyn Fournier Presence-PC - Original Message - From: "Craig Westerman" <[EMAIL PROTECTED]> To:

Myisamchk question

2002-03-11 Thread Fournier Jocelyn [Presence-PC]
] /home/mirror/mysql/Hardwarefr> ls -la cookie.MYI -rw-r--r--1 root root 1577984 Mar 12 01:56 cookie.MYI Why does the MYI is know nearly twice as big as the old cookie.MYI file ? Thanks you ! Jocelyn Fournier Presence-PC -

Re: Changing datatypes "on the fly"?

2002-03-09 Thread Fournier Jocelyn [Presence-PC]
Hi, Take a look here : http://www.mysql.com/doc/A/L/ALTER_TABLE.html Regards, Jocelyn Fournier - Original Message - From: "Jarkko Toivonen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 09, 2002 9:59 PM Subject: Changing datatypes "on the fly"? > I have a column d

Re: Bug with heap table ??

2002-03-02 Thread Fournier Jocelyn [Presence-PC]
al Message - From: "Sinisa Milivojevic" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Saturday, March 02, 2002 3:31 PM Subject: Re: Bug with heap table ?? > Fournier Jocelyn [Presence-PC] writes: > > Hi, > > > > I en

Re: Bug with heap table ??

2002-03-02 Thread Fournier Jocelyn [Presence-PC]
. Regards, Jocelyn Fournier - Original Message - From: "Sinisa Milivojevic" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Saturday, March 02, 2002 3:31 PM Subject: Re: Bug with heap table ?? > Fournier Jocelyn [Presence-PC] writes:

Bug with heap table ??

2002-03-01 Thread Fournier Jocelyn [Presence-PC]
| 1 | 0 | +-++-+---++ 2 rows in set (0.00 sec) How could this be possible with a heap table ?? Thank you :) Regards, Jocelyn Fournier Presence-PC - Before posting, please check: htt

Re: myismchk messages (too small length)

2002-03-01 Thread Fournier Jocelyn [Presence-PC]
Hi, Perhaps try to suppress -e and -f switch ? Regards, Jocelyn Fournier - Original Message - From: "Eric Mayers" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 02, 2002 12:27 AM Subject: myismchk messages (too small length) I'm running myisamchk (when the database

Re: Please Help! MySql 4.01/PhP 4.06 looking for Libmysqlclient.so.10?

2002-03-01 Thread Fournier Jocelyn [Presence-PC]
Hi, Try to upgrade PHP to the latest version (4.1.2) , it should run fine. Regards, Jocelyn Fournier - Original Message - From: "Ronald Arenas" <[EMAIL PROTECTED]> To: "Mysql" <[EMAIL PROTECTED]> Sent: Friday, March 01, 2002 9:18 PM Subject: Please Help! MySql 4.01/PhP 4.06 looking for

Re: Indexing fails, myisamchk cannot repair, no error msg.

2002-02-28 Thread Fournier Jocelyn [Presence-PC]
ttp://www.mysql.com/doc/N/e/News-4.0.2.html) Regards, Jocelyn Fournier Presence-PC - Original Message - From: "Steve Rapaport" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 01, 2002 12:19 AM Subject: Indexing fails, myisamchk cannot repair, no error

Re: [PHP] Next and Preview Row

2002-02-22 Thread Fournier Jocelyn [Presence-PC]
ELECT * FROM table WHERE field>'ID00025' ORDER BY field ASC LIMIT 1 - Original Message - From: "Chris Boget" <[EMAIL PROTECTED]> To: "Fournier Jocelyn [Presence-PC]" <[EMAIL PROTECTED]>; "Raymond Gubala" <[EMAIL PROTECTED]>; "

Re: [PHP] Next and Preview Row

2002-02-22 Thread Fournier Jocelyn [Presence-PC]
Hi, It seems worst to me because in your case mysql has to retrieve all the rows. If it's a table with 1 million records or more, this should hurt ;) Regards, Jocelyn Fournier Presence-PC - Original Message - From: "Chris Boget" <[EMAIL PROTECTED]> To: &qu

Re: Got error 124 from table handler.

2002-02-22 Thread Fournier Jocelyn [Presence-PC]
Hi, Yes, just write : perror 124 >perror 124 >Error code 124: Wrong medium type >124 = Wrong index given to function Regards, Jocelyn Fournier Presence-PC - Original Message - From: "Christian M. Stamgren" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>

Re: SELECT and UPDATE in one query?

2002-02-20 Thread Fournier Jocelyn [Presence-PC]
Hi, I think you can try to use REPLACE INTO table (a,b,c,d) SELECT e,f,g,h FROM table2 WHERE field=what_you_want. Best Regards, Jocelyn Fournier Presence-PC - Original Message - From: "Felix Richter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, Feb

Re: Warning, Found xxx parts Should be: 0 parts

2002-02-17 Thread Fournier Jocelyn [Presence-PC]
Hi, This is a bug in myisamchk. The problem is already fixed in mysql-4.0.2 : http://www.mysql.com/doc/N/e/News-4.0.2.html "Fixed new bug in myisamchk where it didn't correctly update number of ``parts'' in the MyISAM index file. " Best Regards, Jocelyn Fournier Pr

Re: information on mysql 4.0.2

2002-02-15 Thread Fournier Jocelyn [Presence-PC]
Hi, No problem so far with mysql 4.0.x, no crash at all on a production server with a really high load. If you want to use mysql 4.0.2, take a look here : http://www.mysql.com/doc/I/n/Installing_source_tree.html Best Regards, Jocelyn Fournier Presence-PC - Original Message - From

Re: Request for help in testing new replication code in 4.0.2

2002-02-12 Thread Fournier Jocelyn [Presence-PC]
} else { DBUG_PUSH(argument ? argument : "d:t:o,/tmp/myisamchk.trace"); } Like this it works perfectly for me :) Regards, Jocelyn Fournier Presence-PC - Original Message - From: "Jeremy Zawodny" <[EMAIL PROTECTED]> To: "Sasha Pachev&q

Re: Duplicate Records

2002-02-12 Thread Fournier Jocelyn [Presence-PC]
Hi, You can try to use ALTER IGNORE TABLE syntax : ALTER IGNORE TABLE your_table ADD UNIQUE(Id); Regards, Jocelyn Fournier - Original Message - From: "Rich" <[EMAIL PROTECTED]> To: "MySql" <[EMAIL PROTECTED]> Sent: Sunday, February 10, 2002 5:31 PM Subject: Duplicate Records > How do

Re: Request for help in testing new replication code in 4.0.2

2002-02-12 Thread Fournier Jocelyn [Presence-PC]
} else { DBUG_PUSH(argument ? argument : "d:t:o,/tmp/myisamchk.trace"); } Like this it works perfectly for me :) Regards, Jocelyn Fournier Presence-PC - Original Message - From: "Jeremy Zawodny" <[EMAIL PROTECTED]> To: "Sasha Pachev&q

Re: Request for help in testing new replication code in 4.0.2

2002-02-10 Thread Fournier Jocelyn [Presence-PC]
} else { DBUG_PUSH(argument ? argument : "d:t:o,/tmp/myisamchk.trace"); } Like this it works perfectly for me :) Regards, Jocelyn Fournier Presence-PC - Original Message - From: "Jeremy Zawodny" <[EMAIL PROTECTED]> To: "Sasha Pachev&q

Re: Duplicate Records

2002-02-10 Thread Fournier Jocelyn [Presence-PC]
Hi, You can try to use ALTER IGNORE TABLE syntax : ALTER IGNORE TABLE your_table ADD UNIQUE(Id); Regards, Jocelyn Fournier - Original Message - From: "Rich" <[EMAIL PROTECTED]> To: "MySql" <[EMAIL PROTECTED]> Sent: Sunday, February 10, 2002 5:31 PM Subject: Duplicate Records > How do

Re: Strange MyISAMCHK warning

2002-01-24 Thread Fournier Jocelyn [Presence-PC]
Of course not ;) I only run myisamchk -a on several table, and I noticed sometime a similar message (although the tables seem to work perfectly) Jocelyn - Original Message - From: "Gerald Clark" <[EMAIL PROTECTED]> To: "Fournier Jocelyn [Presence-PC]" <[

Strange MyISAMCHK warning

2002-01-23 Thread Fournier Jocelyn [Presence-PC]
see only myisamchk -o can fixed this in my case) Thank you :) Best Regards, Jocelyn Fournier Presence-PC - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the

Re: Version number after '!' : what is the good syntax ?

2002-01-19 Thread Fournier Jocelyn [Presence-PC]
Hi, Ok, it's 40001 according to #define MYSQL_VERSION_ID 40001 ;) Regards, Jocelyn - Original Message - From: "Fournier Jocelyn [Presence-PC]" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, January 19, 2002 3:03 PM Subject: Version number a

Version number after '!' : what is the good syntax ?

2002-01-19 Thread Fournier Jocelyn [Presence-PC]
Hi, I'm wondering what is the good syntax with version number after '!' with MySQL 4 : Should I use : /*!40001 SQL_CALC_FOUND_ROWS */ or /*!401 SQL_CALC_FOUND_ROWS */ Thank you ! Regards, Jocelyn Fourn

Re: Column Alias Bug??

2002-01-18 Thread Fournier Jocelyn [Presence-PC]
Hi, Try : SELECT a,COUNT(*) AS z FROM aa GROUP BY a HAVING z>1; Regards, Jocelyn - Original Message - From: "Rick Emery" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, January 18, 2002 10:30 PM Subject: Column Alias Bug?? > Is this a bug? I can't find an answer to this qu

Re: Why does DISTINCT take so long time ??

2002-01-18 Thread Fournier Jocelyn [Presence-PC]
ssage - From: "Sinisa Milivojevic" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, January 18, 2002 4:27 PM Subject: Re: Why does DISTINCT take so long time ?? > Fournier Jocelyn [Presence-PC] writes: > > Hi, > > >

Re: Why does DISTINCT take so long time ??

2002-01-18 Thread Fournier Jocelyn [Presence-PC]
(it should be really fast in this case) Regards, Jocelyn - Original Message - From: "Sinisa Milivojevic" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, January 18, 2002 3:57 PM Subject: Re: Why does DISTINCT take so long time

Why does DISTINCT take so long time ??

2002-01-17 Thread Fournier Jocelyn [Presence-PC]
ULL | 2026032 | Using index; Using temporary | +---+---+---+-+-+--+ -+--+ 1 row in set (0.00 sec) Why does it take so much time to remove duplicates in only 58 rows ?? Thank you :) Regards, Jocelyn Fournier Presence-PC ---

Re: Optimization

2002-01-17 Thread Fournier Jocelyn [Presence-PC]
Hi, It's already done since MySQL 4.0.1. Take a look here : http://www.mysql.com/doc/Q/u/Query_Cache.html Regards, Jocelyn - Original Message - From: "Ioakim Spyros" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 17, 2002 6:52 PM Subject: FW: Optimization Hello all

Re: "Too Many Connections" error

2002-01-16 Thread Fournier Jocelyn [Presence-PC]
I agree with you, sometimes my server experiences some DoS and because MySQL cannot handle all that connections, the load goes really high and we can't do anything :( - Original Message - From: "Dave Dyer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 16, 2002 11:17

Re: Stability problems on 4-way server

2002-01-09 Thread Fournier Jocelyn [Presence-PC]
z2 ) Best Regards, Jocelyn Fournier Presence-PC www.presence-pc.com - Original Message - From: "Sinisa Milivojevic" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, Januar

Re: How to make use of mysql++ with gcc 2.96

2001-12-25 Thread Fournier Jocelyn [Presence-PC]
it failed : checking return type of sprintf... configure: error: can not run test program while cross compiling Any idea of what I have to do to run the compilation successfully ? Thank you in advance, Regards, Jocelyn Fournier Presence-PC - Original Message - From: "Sinisa Milivo

Re: 4.0.1?

2001-12-13 Thread Fournier Jocelyn [Presence-PC]
Hi, It should be really soon, Monty wrote me today he was building a distribution with the current 4.0.1 code... Best Regards, Jocelyn Fournier Presence-PC - Original Message - From: "Franklin Schmidt" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, Dec

Re: [PHP] Performance

2001-12-13 Thread Fournier Jocelyn [Presence-PC]
AIL PROTECTED]> To: "Fournier Jocelyn [Presence-PC]" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, December 13, 2001 11:15 PM Subject: Re: [PHP] Performance > On Thu, 2001-12-13 at 23:56, Fournier Jocelyn [Presence-PC] wrote: > > Hi, > > > >

Re: [PHP] Performance

2001-12-13 Thread Fournier Jocelyn [Presence-PC]
Hi, You absolutely don't have to reconnect to the database each time a PHP-block ends ! (it would be completely awfull !!). Don't you forget to specify the mysql link in you 'mysql_query' ?? Regards, Jocelyn Fournier Presence-PC - Original Message - From: &qu

Status information in .err file ?

2001-12-13 Thread Fournier Jocelyn [Presence-PC]
hanks in advance, Jocelyn Fournier Presence-PC - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL P

Re: Problem with bk://work.mysql.com ?

2001-12-12 Thread Fournier Jocelyn [Presence-PC]
Hi, Take a look here : http://www.mysql.com/doc/I/n/Installing_source_tree.html Best Regards, Jocelyn Fournier - Original Message - From: "Alexander Skwar" <[EMAIL PROTECTED]> To: "Fournier Jocelyn [Presence-PC]" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTE

Re: High load problem with 3.23.45

2001-12-12 Thread Fournier Jocelyn [Presence-PC]
is problem... Thanks in advance :) Jocelyn Fournier Presence-PC - Original Message - From: "Arndt Jenssen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 12, 2001 8:27 PM Subject: High load problem with 3.23.45 > Maybe some coding/mysql maste

Problem with bk://work.mysql.com ?

2001-12-12 Thread Fournier Jocelyn [Presence-PC]
Hi, When I try to do a "bk pull", I have the following unexpected message : >bk pull bk://work.mysql.com:7001: No route to host What's wrong ? Best Regards, Jocelyn Fournier Presence-PC - Before pos

Re: Using UNION and UNION ALL on a database running 4.0

2001-11-03 Thread Fournier Jocelyn [Presence-PC]
Hi, Try : SELECT * FROM tbl1 UNION ALL SELECT * FROM tbl2 UNION SELECT * FROM tbl3 UNION SELECT * FROM tbl15 WHERE title LIKE 'something' ORDER BY date_created DESC Regards, Jocelyn Fournier Presence-PC - Original Message - From: "Deryck Henson" <[EMAIL

Bug with Insert Delayed in MySQL 4.0 ?

2001-10-28 Thread Fournier Jocelyn [Presence-PC]
| | NULL | | 40939 | mysql | localhost | Hardwarefr | Sleep | 0| | NULL | | 40940 | mysql | localhost | Hardwarefr | Sleep | 0| | NULL | | 40941 | mysql | localhost | Hardwarefr | Sleep | 0| | NULL | +---+-+---+----

Re: Indexing Problem

2001-10-26 Thread Fournier Jocelyn [Presence-PC]
Hi, Your record_buffer and sort_buffer seem far too high. Don't forget MySQL could eat up ((sort_buffer + record_buffer) * max_connections + key_buffer) Mo of memory. Even with a max_connections set to 1, MySQL could eat in your case up to 7 Go of memory =) - Original Message - From: "

Problem compiling MySQL 4.0 with GCC 3.0.1

2001-10-23 Thread Fournier Jocelyn [Presence-PC]
SQL compile ? Thank you ! Jocelyn Fournier Presence-PC - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail &l

Re: Mysql 4.0.0-alpha and php-4.0.6 and Apache

2001-10-20 Thread Fournier Jocelyn [Presence-PC]
er Jocelyn [Presence-PC]" <[EMAIL PROTECTED]> To: "Willem Scholten" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, October 21, 2001 12:31 AM Subject: Re: Mysql 4.0.0-alpha and php-4.0.6 and Apache > Hi, > > I have the solution for this problem. >

Re: Mysql 4.0.0-alpha and php-4.0.6 and Apache

2001-10-20 Thread Fournier Jocelyn [Presence-PC]
, Jocelyn Fournier Presence-PC - Original Message - From: "Willem Scholten" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 17, 2001 9:20 PM Subject: Mysql 4.0.0-alpha and php-4.0.6 and Apache > After I have build Mysql-4.0.0-alpha from sou

Strings between HTML, PHP and MySQL

2001-09-27 Thread Mon PC
I'm sending variables in an HTML request such as http://localhost/connexion.php?ID1=&ID2= When the variable ID2 is numeric, everything is OK and the query made by PHP (such as SELECT my_table WHERE ident1 = $id1, ident2=$id2;) works very well. The column ident2 in mySQL is defined as a VARCHAR(

Re: Features in 4.0

2001-09-26 Thread Fournier Jocelyn [Presence-PC]
we > have been able to write our own complex code to do this, but it is far from > the level of automation that we want. > > Could someone from the MySQL team please give us some details on subselects > and the new load table functionality? > > Best, > Kyle > > On Tuesday 25 Sep

Re: Features in 4.0

2001-09-25 Thread Fournier Jocelyn [Presence-PC]
Take a look at this :) http://www.mysql.com/doc/N/e/News-4.0.0.html I'm currently using MySQL 4.0 on two servers, and it works great :) Union seems also to work really fine now although it remains some features to be added before beeing perfect. Jocelyn Fournier Presence-PC - Ori

Threads problem on a new server :(

2001-09-16 Thread Fournier Jocelyn [Presence-PC]
! Jocelyn Fournier Presence-PC - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To u

Many locked thread with MySQL-4.0 ?

2001-09-09 Thread Fournier Jocelyn [Presence-PC]
ql | localhost | Hardwarefr | Sleep | 15 | | NULL | | 42298 | mysql | localhost | Hardwarefr | Sleep | 2| | NULL | +---+---+---++-+--+--+-- ---- + 204 rows in set (0.00 sec) Any idea ?? Thank you :) Jocelyn Fournier Presence-PC -

Re: limit and order by issuse

2001-09-05 Thread Fournier Jocelyn [Presence-PC]
This is fixed in PhpMyAdmin 2.2.0 - Original Message - From: "Henning Schroeder" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 06, 2001 12:23 AM Subject: RE: limit and order by issuse > > >sh> Here is my query: > > > >sh> SELECT > >sh> articleId,arttitle,artsourc

Re: Problem while compiling mysql-4.0

2001-09-01 Thread Fournier Jocelyn [Presence-PC]
Sorry, I've just seen the problem has been already fixed by tonu in the mysql-4.0 tree. - Original Message - From: "Fournier Jocelyn [Presence-PC]" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, September 02, 2001 1:00 AM

Problem while compiling mysql-4.0

2001-09-01 Thread Fournier Jocelyn [Presence-PC]
- Original Message - From: "Fournier Jocelyn [Presence-PC]" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, September 01, 2001 11:46 PM Subject: problem while compiling mysql-4.0 > Hi, > > I've just encoutered an error while compiling MySQL-4.0 : >

problem while compiling mysql-4.0

2001-09-01 Thread Fournier Jocelyn [Presence-PC]
e] Error 1 make[1]: Leaving directory `/usr/local/mysql-4.0' make: *** [all-recursive-am] Error 2 ./BUILD/compile-pentium 372.92s user 97.04s system 146% cpu 5:20.54 total I'm using bk pull / bk -r edit / ./BUILD/compile-pentium standard procedure. I'v

Formatting the DATE field on a web page

2001-08-20 Thread pc
Hi people I am using mySQL and PHP for my web page database management thingy. I've managed to get my date field from my Table into my page ($myDate). I was wondering, how would I format the date from -MM-DD format to something a bit nicer like DD/MM/YY ? Is this meant to be a SQL side thing

Re: CHAR transformed to VARCHAR in CREATE TABLE

2001-08-18 Thread Fournier Jocelyn [Presence-PC]
at : http://www.mysql.com/doc/D/y/Dynamic_format.html http://www.mysql.com/doc/S/t/Static_format.html Jocelyn Fournier Presence-PC - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, August 19, 2001 12:23 AM Subject: CHAR transformed to V

Formatting Price Field in my Table so 0.20 does not become 0.2....

2001-08-17 Thread pc
Hi people, Anyone know how to get a field in one of my table in a form that any number that I want to be displayed as 0.20 doesn't round off as 0.2? So 0.20 for the cost instead of 0.2? Or do I have to do this with the Server Side Language I'm using to format the value? Or some extra SQL command

Re: MySQL-MAX 3.23.41 download link is dead... (need a download)

2001-08-16 Thread Fournier Jocelyn [Presence-PC]
Hi, Try : http://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-Max- 3.23/ http://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-Max- 3.23/mysql-max-3.23.41-pc-linux-gnu-i686.tar.gz Jocelyn Fournier Presence-PC - Original Message - From: "J

Table corruption at MySQL 4.0.0 shutdown ?

2001-08-16 Thread Fournier Jocelyn [Presence-PC]
inst new record at 30946868 Duplicate key 1 for record at 30978024 against new record at 30946900 Data records: 977538 myisamchk: warning: 11 records have been removed Any idea ? (hardware related or mysql related ?) Thank you :) Jocelyn Fournier Presence-PC

Annoying Too Many Connection error...

2001-08-10 Thread Fournier Jocelyn [Presence-PC]
ections, even if the maximum connection ratio is reached. What do you think about it ? Jocelyn Fournier Presence-PC www.presence-pc.com

Fw: Bug with not_flushed_delayed_rows in mysql-4.0 ?

2001-07-31 Thread Fournier Jocelyn [Presence-PC]
- Original Message - From: Fournier Jocelyn [Presence-PC] To: [EMAIL PROTECTED] Sent: Tuesday, July 31, 2001 10:42 AM Subject: Bug with not_flushed_delayed_rows in mysql-4.0 ? Hi, I have more than 200 Delayed_insert running at the same time on my database (waiting on cond state

Bug with not_flushed_delayed_rows in mysql-4.0 ?

2001-07-31 Thread Fournier Jocelyn [Presence-PC]
27;ve not inserted so many rows :D Is there anything wrong with it ? (I unfortunately don't succeed in reproducing this bug on my second server) Thank you. Jocelyn Fournier Presence-PC www.presence-pc.com

Re: Bug report: FULLTEXT index corrupts the index with too many TEXT fields

2001-07-20 Thread Fournier Jocelyn [Presence-PC]
Take a look at : http://www.mysql.com/doc/I/n/Installing_source_tree.html - Original Message - From: "Simon Green" <[EMAIL PROTECTED]> To: "'Fournier Jocelyn [Presence-PC]'" <[EMAIL PROTECTED]>; "Carsten Gehling" <[EMAIL PROTECTE

Re: Bug report: FULLTEXT index corrupts the index with too many TEXT fields

2001-07-20 Thread Fournier Jocelyn [Presence-PC]
0 |0 |0 | 0 || ||| ++-+---+---+-++-+-+---+- -+-+-+---+--+--+-+-- --++++ Regards, Jocelyn Fournier Presence-PC - Original Message - From: "Carsten Gehling" <[EMAIL PROTECTED]> To: "Sergei Golubchik" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, July 20, 2001 12:06 PM

Strange behaviour (bug ?) when closing MySQL.

2001-07-16 Thread Fournier Jocelyn [Presence-PC]
veral times to reproduce the bug, no way :( The server is perfectly stable and was running for days MySQL without a glitch, it's why I don't think the hardware could be involved in this issue. Do you have any idea of how it could have been happened ? Thank you, Jocelyn Fournier Presence-PC

Error while trying to compile MySQL 4.0

2001-07-16 Thread Fournier Jocelyn [Presence-PC]
e le répertoire `/usr/local/mysql-4.0' make: *** [all-recursive-am] Erreur 2 What should I do to fix the error ? Thank you, Jocelyn Fournier Presence-PC

HELP ! Myisamchk doesn't seem to see error in my table :(

2001-07-14 Thread Fournier Jocelyn [Presence-PC]
Thanks a lot ! Jocelyn Fournier Presence-PC

Urgent problem : recovering a table with no MYI file ?

2001-07-13 Thread Fournier Jocelyn [Presence-PC]
dwarefr1 | repair | error| Can't find file: |'threadhardwarefr1.MYD' (errno: 2) | +--++--+-+ 1 row in set (0.00 sec) MYD file is here, but MYI is missing... Thank you ! Jocelyn Fournier Presence-PC

Fw: Annoying "Aborting Connection" in .err file

2001-07-06 Thread Fournier Jocelyn [Presence-PC]
- Original Message - From: "Fournier Jocelyn [Presence-PC]" <[EMAIL PROTECTED]> To: "Tonu Samuel" <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 6:16 PM Subject: Re: Annoying "Aborting Connection" in .err file > In fact pconnect aren&#x

Annoying "Aborting Connection" in .err file

2001-07-06 Thread Fournier Jocelyn [Presence-PC]
Hi, Is there any mean to not log the "Aborting Connection" line in the .err file ? Thank you Jocelyn Fournier Presence-PC www.presence-pc.com

Question about DELETE and Index.

2001-07-03 Thread Fournier Jocelyn [Presence-PC]
Hi, Does DELETE take advantage of index to locate more quickly row to be deleted ? Thank you :) Jocelyn Fournier Presence-PC

OPTIMIZE TABLE / ANALYZE TABLE behaviour ?

2001-06-04 Thread Fournier Jocelyn [Presence-PC]
| NULL | | +--++---+--+-+---+-+--++-+ 3 rows in set (0.00 sec) Is this behaviour OK ?? (I was assuming OPTIMIZE TABLE request wasn't resetting the cardinality information) Thanks, Jocelyn Fournier Presence-PC www.presence-pc.com