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 18 of 508 Previous 10   11   12   13   14   15   16   17   18   19   20   Next 10   Next 100  

Subject: Memory Issue would someone confirm

alright.. after some testing this afternoon I 'm beginning to wonder if this is a memory issue.. here 's what the test was.. I did a insert select from a table that has approx 500 000 rows and the ta

Subject: utf8 problem in index

Hello I have a table like this CREATE TABLE `places` ( `name` varchar(256) collate utf8_unicode_ci NOT NULL PRIMARY KEY (`name`) ) ENGINE MyISAM DEFAULT CHARSET utf8 COLLATE utf8_unicode_ci |

Subject: Re: finding count of spaces in a string

> dpgirago@(protected) wrote > > We have numerous identical tables with a varchar column that holds data > > like this "0 0 0 1 0 1 0 25 7 0 139 0 9 ". Essentially there are a bunch > > of intege

Subject: Re: finding count of spaces in a string

dpgirago@(protected) ha scritto > We have numerous identical tables with a varchar column that holds data > like this "0 0 0 1 0 1 0 25 7 0 139 0 9 ". Essentially there are a bunch > of integers

Subject: Re: finding count of spaces in a string

Try this mysql > SELECT LENGTH( '0 0 0 1 0 1 0 25 7 0 139 0 9 ') - LENGTH(REPLACE( '0 0 0 1 0 1 0 25 7 0 139 0 9 ' ' ' ' ')) + 1 +

Subject: Re: finding count of spaces in a string

dpgirago@(protected) wrote > We have numerous identical tables with a varchar column that holds data > like this "0 0 0 1 0 1 0 25 7 0 139 0 9 ". Essentially there are a bunch > of integers with

Subject: Re: finding count of spaces in a string

Hi dpgirago@(protected) wrote > We have numerous identical tables with a varchar column that holds data > like this "0 0 0 1 0 1 0 25 7 0 139 0 9 ". Essentially there are a bunch > of integers

Subject: finding count of spaces in a string

We have numerous identical tables with a varchar column that holds data like this "0 0 0 1 0 1 0 25 7 0 139 0 9 ". Essentially there are a bunch of integers with a single space as a separator. There

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

Figure it out at 3am this morning while I was sleeping I remembered there was an rsync on the databases every 10 mins to replicate the files across the network. I killed the rsync.. and all has bee

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

On Tue 4 Sep 2007 Lucio Chiappetti wrote > I 'll do some experimenting and report back. In lack of better ways of doing a tie-break I 've done the following tests (with the linemode client) chec

Subject: Re: mysqldump with single rows per dataset

Hello thanks. I just wonder why this isn 't actually documented in the --help output of mysqldump. Regards Marten -- MySQL General Mailing List For list archives http //lists.mysql.com/mysql To

Subject: SSL Problem with outdated zertificates

Hey This morning the default timespan of ssl certificates took my servers down... Everything was running fine but this morning the SSL encrypted MySQL connections stopped working! Then I realized

Subject: RE: Two/more seperately unique columns in a table?

Baron Just feedback - worked perfectly. Thanks again! -----Original Message----- From Esbach Brandon Sent 31 August 2007 14 46 To Baron Schwartz Cc MySQL User Group Subject RE Two/more seper

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

On Mon 3 Sep 2007 Shawn Green wrote > What I hope to do is to help you to make you queries work better by > applying hints modifiers and limits to the optimizer. Many thanks Shawn. > "STRAIG

Subject: mysqldump of huge innodb database

Hello list members Since a few days I get this error message when making a backup of my database mysqldump Error 2013 Lost connection to MySQL server during query when dumping table `dbmail_me

Subject: Error in mysql slave server

Hi All I 'm using Mysql 5 (with replication) on CentOS 4.4 OS with 2 CPU and 8GB of RAM. Master & Slave servers have same hardware configration. Yesterday my master server suddenly not established

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

Justin wrote > lockup just happened again.. here 's a innodb status. InnoDB status will be basically useless as full-text is only applicable to MyISAM and indeed your status output shows only one

Subject: Re: thread_concurrency in linux

Andrew Braithwaite wrote > Does anyone know if thread_concurrency works in linux or is it just > limited to Solaris and Windows? Hi! That variable only affects Solaris as the Solaris threading li

Subject: Re: mysqldump with single rows per dataset

In the last episode (Sep 03) Marten Lehmann said > I couldn 't find an option within mysql 5.0.x to get a dump of all > rows of a table with one line per row/record. I always get insert > statements

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

lockup just happened again.. here 's a innodb status. mysql > show innodb status |

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

Hello Lucio Thank you for the excellent description of you problem. I believe I completely understand both the data you are handling and the problems you are facing. I would not ask you to change y

Subject: mysqldump with single rows per dataset

Hello I couldn 't find an option within mysql 5.0.x to get a dump of all rows of a table with one line per row/record. I always get insert statements with all rows at once. Has that option been rem

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

As I 'm new on this list and can 't find a "policy statement " I assume it is OK to reply to the list in "discussion list " fashion. If instead it is preferred to reply to each sender privately and lat

Subject: RE: Lengtht of TEXT data types

> Hello list > > I have doubt on TEXT data types... Checking my notes I see these ones > > TINYTEXT/TINYBLOB (2^8) 255 chars > TEXT/BLOB (2^16) 64K chars > MEDIUMTEXT/MEDIUMBLOB (2^24) 16M chars > LO

Subject: Lengtht of TEXT data types

Hello list I have doubt on TEXT data types... Checking my notes I see these ones TINYTEXT/TINYBLOB (2^8) 255 chars TEXT/BLOB (2^16) 64K chars MEDIUMTEXT/MEDIUMBLOB (2^24) 16M chars LONGTEXT/LONGBLO

Subject: Re: Access denied for GRANT using root yet manual user insertion is fine

With assistance from a friend this issue has been rectified. The current GRANT was not sufficient. After executing the new GRANT with 'ALL PRIVILEGES ' (using the --init-file switch) the root user can

Subject: Access denied for GRANT using root yet manual user insertion is fine

The grant flag is enabled on the root account mysql > SELECT Grant_priv FROM user WHERE User 'root ' AND Host 'localhost ' +------------+ | Grant_priv | +------------+ | Y | +------------+ 1

Subject: Access denied for GRANT using root yet manual user insertion is fine

The grant flag is enabled on the root account mysql > SELECT Grant_priv FROM user WHERE User 'root ' AND Host 'localhost ' +------------+ | Grant_priv | +------------+ | Y | +------------+ 1

Subject: MySQL Magazine Issue Two released

Just wanted to let everyone know that the second issue of the MySQL magazine has been uploaded. It is available from http //www.paragon-cs.com/mag/mysqlmag.html Our featured articles include MyS

Subject: Re: Server hangs on get_lock

The application is supposed to disregard any failure to acquire the lock. The return value isn 't even checked inside the application. There is no loop in which we attempt the acquire the lock. The onl
Page 18 of 508 Previous 10   11   12   13   14   15   16   17   18   19   20   Next 10   Next 100