Mailing List
Home
Forum Home
MySQL General - General MySQL discussion
MySQL++ - Programming with the C++ API to MySQL
MaxDB - Everything about MaxDB, formerly known as SAP DB
ODBC - ODBC with the MySQL Connector/ODBC driver
MySQL on Win32 - Runing MySQL on Windows 9x/Me/NT/2000/XP
Java Help - Mostly related to the MySQL Connector/J driver
Perl - Perl support for MySQL with DBI and DBD::mysql
GUI - MySQL GUI Tools
Announcement
Subjects
Subject: mysql openssl Question
ERROR 1045: Access denied for user: 'root@localhost ' (Using
password: NO)
Update one field with more fields from another table
Subject: Getting Identity after INSERT
ERROR 2002: Can 't connect to local MySQL server through socket
mysql test 4 1 fails with the gis test
Subject: MySQL Cluster Software
Downgrade Mysql from 4 to 3 23
Mysql 4 0 Oracle Stored Procedure Trigger Conversion
Can 't access mysql after kernel upgrade
Executing MySQL Commands From Within C Program
Comparing and writing out BLOBS
Subject: Re: Preventing Duplicate Entries
FULLTEXT query format question
Strange behavior, Table Level Permission
Does the binary log enabling affect the MySQL performances?
mysql:it 's a db not a dbms how it 's possible?!
mysql have same function mthod as Oracle decode()
 
MySQL General
Page 19 of 508 Previous 10   11   12   13   14   15   16   17   18   19   20   Next 10   Next 100  

Subject: Re: excessive time spent in "statistics " status

Hello Lucio (reply below) Lucio Chiappetti wrote > I have some queries involving a largish number of JOIN which > are apparently very slow or even take forever (a mysqladmin processlist > shows

Subject: Re: Open Source Application Server

Spamming for maximum exposure? http //www.dbforums.com/showthread.php?t 1622017 http //www.orafaq.com/forum/t/88505/74940/ On 9/1/07 john_sm <john_smith3853@(protected) > wrote > > > > Hey Guys can

Subject: Open Source Application Server

Hey Guys can you suggest any Open Source Application Server for SOA deployments. Also wondering if our needs are somewhat lightweight is there some lightweight open source Application Server yo

Subject: Re: servers full potential / FT searches locking tables

Alright.. I think I see what 's is happening after this latest lockup.. here 's what I think is happening.. When a replace into query locks a table for a few seconds there are a boot load of connecti

Subject: RE: BUG: DATE_ADD 99999 fails, but 9999 works.

So I found out why we had to switch all of our datetimes to timestamps http //dev.mysql.com/doc/refman/5.0/en/time-zone-support.html "The current time zone setting does not affect values in DATE

Subject: ANN: DBForms from MS Access to PHP + MySQL v.2.1.1 released

DBConvert.com announces DBForms from MS Access to PHP + MySQL v.2.1.1 release. Our application allows you to convert mdb (Microsoft Access databases) and MS Access forms to AJAX based WEB page usin

Subject: Re: Recreate Table With Sorted Data

> >Question 2 If not what would the Insert/Select statement look like that > would copy the records over in sorted order? > > > Tables aren 't sorted. Period. > > > > Only result-sets can be sorted.

Subject: Re: Recreate Table With Sorted Data

In the last episode (Aug 15) Martijn Tonies said > >I have a table with 1600 student locks in random order. I would like > >them permanently sorted by the locker number they are assigned to. I > >as

Subject: Re: Recreate Table With Sorted Data

John >I have a table with 1600 student locks in random order. I would like them permanently sorted by the locker number they are >assigned to. I assumed that ... > >~ I would copy the table under a

Subject: Re: Recreate Table With Sorted Data

On Wed August 15 2007 13 09 Kebbel John said > I have a table with 1600 student locks in random order. I would like them > permanently sorted by the locker number they are assigned to. I assumed

Subject: Recreate Table With Sorted Data

I have a table with 1600 student locks in random order. I would like them permanently sorted by the locker number they are assigned to. I assumed that ... ~ I would copy the table under a different

pl subscribe me

-- Manivannan.Palanichamy (@) Oracle.com http //mani.gw.googlepages.com/index.html

Subject: Re: Problem with a complex query

Hi I 've done some indexes in my tables and I solved my problem. But I still confused with indexes. I created one multiple index with the main 4 columns for mensagenspara 's table. But it doesn 't work

run out of memory

So I stand corrected ) Sorry for the mis-information. Thanks Mark!! Keith ----- Original Message ----- From "Mark Leith " <mleith@(protected) > To "Baron Schwartz " <baron@(protected) > Cc "Michae

run out of memory

Baron Schwartz wrote > Mark Leith wrote > > And in practice a 32bit binary is actually limited to around ~2.5-2.7G > > rather than a full 4G. > > What are the practical memory limits for 64-bit bina

run out of memory

I have had the same type of problems as this user when unknowing using 32-bit code. That was why I was asking about what distro he was using. As for your question Baron - I don 't think that limit is t

run out of memory

Baron Schwartz wrote > Mark Leith wrote > > And in practice a 32bit binary is actually limited to around ~2.5-2.7G > > rather than a full 4G. > > What are the practical memory limits for 64-bit bina

run out of memory

Mark Leith wrote > And in practice a 32bit binary is actually limited to around ~2.5-2.7G > rather than a full 4G. What are the practical memory limits for 64-bit binaries? I have heard that MyS

run out of memory

Michael Dykman wrote > As most 64 bit libraries declare their 64-bitness clearly int heir > names I think that there is a very high chance that you have built > yourself a 32-bit database in which c

Subject: Re: Problem with a complex query

A word of caution before you just throw FORCE INDEX at it study your explains very carefully.. Most of the answers to your specific questions are in there.. run it on a server with lots of data

Subject: Re: Can someone get help here????

It sounds like you are having an issue with collations.. have you read this? http //dev.mysql.com/doc/refman/5.1/en/charset-collations.html As for optimizing a column for LIKE a normal index for a

run out of memory

As most 64 bit libraries declare their 64-bitness clearly int heir names I think that there is a very high chance that you have built yourself a 32-bit database in which case 4G is the limit of the k

Subject: Re: Slow query involving ORDER BY

Bob Pisani wrote > On another note you should really change all of those ip address columns > from varchar to int with the ip encoded as 4 bytes. You will save A LOT of > space in both your index an

Subject: RE: Slow query involving ORDER BY

Couple of things to read that may help http //dev.mysql.com/doc/refman/5.0/en/order-by-optimization.html http //hackmysql.com/case3 On another note you should really change all of those ip addres

Subject: RE: Problem with a complex query

Does the other user_id have a lot of messages. I think MySQL will choose to table ignore the index if the retrieved rows are above 30% of the table total. Have you tried FORCE INDEX? -----Original M

Subject: Re: Problem with a complex query

I found something weird. This is my query now

Subject: RE: Problem with a complex query

I solved a similar problem with a messaging system that was very slow because it was doing full table scan each time the query ran. I didn 't have the chance to change the schema so this is what I came

Scheduled events

Beauford wrote > Is there a way to run the following command via cron. $ man mysql -- MySQL General Mailing List For list archives http //lists.mysql.com/mysql To unsubscribe http //lists.mys

Subject: Can someone get help here????

Hello there I have a problem. When I try to select some names starting with extra alphabets (? ? ? ? etc) I simply don 't get required results i.e. if I give a select command like select * from e

run out of memory

try uname -a to see if your OS is 64bit or not. Gu Lei -----????----- ??? Jen mlists [mailto practicalperl@(protected)] ???? 2007?8?15? 9 46 ??? mysql@(protected) ?? Re run out of
Page 19 of 508 Previous 10   11   12   13   14   15   16   17   18   19   20   Next 10   Next 100