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

Subject: Conflicting server IDs on slaves

Hi all What do you know about the effect of conflicting slave server IDs on the master in general? And specifically are you aware of any issues with MySQL 5.0.27? Your help is very much appre

Subject: Re: Copying InnoDB files to remote server - > remote server won 't start

Whil Hentzen wrote > Baron Schwartz wrote > > Whil Hentzen wrote > > > Michael Dykman wrote > > > > if you see no errors check your config... are you sure InnoDB is > > > > enabled ? > > > > > > I can creat

ordering dates

I suspect that your problem is that you are converting your date field to a string before sorting. You shouldn 't use the same name for the alias as you do for the field. Try $result mysql_query( "SEL

ordering dates

> $result mysql_query( "SELECT date_format(date '%d/%m/%Y ') as date title > id display FROM news ORDER BY date DESC ") > > I have the query above the problem is oders them like so > > 30/05/2007

ordering dates

May I suggest SELECT date_format(date '%d/%m/%Y ') as mydate title id display FROM news ORDER BY date DESC changing the alias of your formatted date to mydate the raw value of date is now avail

ordering dates

$result mysql_query( "SELECT date_format(date '%d/%m/%Y ') as date title id display FROM news ORDER BY date DESC ") I have the query above the problem is oders them like so 30/05/2007 29/07/200

Subject: Is bad hardware confusing MySQL and InnoDB?

Some processes on a server (64-bit Gentoo Linux with MySQL 5.0.44) which seemed to be related to I/O on LVM volumes hung and it was necessary to force reboot it. The mysql data was not on an LVM vo

Subject: Re: Question related to INSERT statement into table1 and SELECT statement fr

> > I have a table with a PRIMARY KEY on id field whos > > evalue is populated usin auto_increment. > > > > > > CREATE TABLE `key` ( > > `id` int(10) unsigned NOT NULL AUTO_INCREMENT > > `sid` sm

Subject: Re: Question related to INSERT statement into table1 and SELECT statement fr

Hi > I have a table with a PRIMARY KEY on id field whos > evalue is populated usin auto_increment. > > > CREATE TABLE `key` ( > `id` int(10) unsigned NOT NULL AUTO_INCREMENT > `sid` smallint(4)

Subject: Question related to INSERT statement into table1 and SELECT statement from t

Hi All I have a table with a PRIMARY KEY on id field whos evalue is populated usin auto_increment. CREATE TABLE `key` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT `sid` smallint(4) unsigned

Subject: Re: Question related to MySQL 5.1.21 and enabling pbxt engine, please

Vladimir I have tried to recompile MySQL 5.1.21 as you suggested but unfortunately I got the same error. Is it possible that some other define needs to be set ? Thanks in advance for your help

Subject: Question related to MySQL 5.1.21 and enabling pbxt engine, please

Hi All I would like to be able to use MySQL 5.1.21 with the PBXT engine. I have compiled MySQL 5.1.21 64 bits on Debian 4.0 with linux 2.6 with the options specified in the README that comes with th

Subject: Suggested tools to benchmark configuration changes

I have a server that has several hundred table in a few different databases comprising almost a gig of data all running on a rather old (3.23) version of mysql. I have used the slow query log to ide

Subject: Re: Question: table schema optimization

Hailiang Ji wrote > Folks > > A help needed. My manager 's pushed me to optimize the tables that I > created in distributed in several DBs. I have tried best to explain to him > that I have followed

Subject: Re: Question: table schema optimization

You should read up on the "show status " and "show variables " output. That will give you a start as to perhaps some obvious issues. For instances your opened_tables and threads_created should not

Subject: Mail not being accepted

When I try to email to this list my email is reject with the following message? Error 552 Mail with no Date header not accepted here My Mail has a date header in it...?

Subject: Re: Copying InnoDB files to remote server - > remote server won 't start

Baron Schwartz wrote > Whil Hentzen wrote > > Michael Dykman wrote > > > if you see no errors check your config... are you sure InnoDB is > > > enabled ? > > > > I can create a new database and add Inn

Subject: Re: Copying InnoDB files to remote server - > remote server won 't start

Whil Hentzen wrote > Michael Dykman wrote > > if you see no errors check your config... are you sure InnoDB is > > enabled ? > > I can create a new database and add InnoDB tables to it without pro

Subject: Re: Copying InnoDB files to remote server - > remote server won 't start

Michael Dykman wrote > if you see no errors check your config... are you sure InnoDB is enabled ? I can create a new database and add InnoDB tables to it without problems. Ack I lied. No error i

Subject: Copying InnoDB files to remote server - > remote server won 't start

Hi gang After reading through two years of 'how do I back up my database ' threads I 'm trying out the various backup mechanisms offered up. I 've read through these steps http //dev.mysql.com/d

Subject: Re: archive engine potential bug

also when it hits a dupl. and i skip the record and continue slave it hits another duplicate entry almost instantly when i then drop the table on the slave and recreate it manually and set it to my

Subject: Re: Really strange index/speed issues

Baron Schwartz wrote > Chris Hemmings wrote > > Chris Hemmings wrote > > > Baron Schwartz wrote > > > > Hi Chris > > > > > > > > Chris Hemmings wrote > > > > > Dan Buettner wrote > > > > > > Chris a couple of thou

Subject: Re: Really strange index/speed issues

The results of an EXPLAIN have a lot to do with the data which is actually on the system. In this case it seems to hinge on the distribution of your 'price ' attribute.. how many records on your sy

Subject: Re: Really strange index/speed issues

Chris Hemmings wrote > Chris Hemmings wrote > > Baron Schwartz wrote > > > Hi Chris > > > > > > Chris Hemmings wrote > > > > Dan Buettner wrote > > > > > Chris a couple of thoughts - > > > > > > > > > > First your

Subject: Re: Really strange index/speed issues

Chris Hemmings wrote > Baron Schwartz wrote > > Hi Chris > > > > Chris Hemmings wrote > > > Dan Buettner wrote > > > > Chris a couple of thoughts - > > > > > > > > First your index on the section is doing yo

Subject: Re: Implement a logging table; avoiding conflicting inserts

Fan Wellington wrote > > > Given MySQL 4.0.12 I need to implement a pageview log with a > > > resolution of 1 day. If you want to brute-force it I think I would go this route create table hits

Subject: RE: Implement a logging table; avoiding conflicting inserts

> > Given MySQL 4.0.12 I need to implement a pageview log with a > > resolution of 1 day. ...... > > Would the "REPLACE " method work? > > David Hmmm...as I read the docs the "LOCK IN SHARED MODE

help with ORDER BY

Thing 1 your auto_increment key MUST be your primary key. Thing 2 the timestamp field will be updated with the current epochal timestamp which only increments every second.. as you have a timest

Subject: archive engine potential bug

W00ps forgot to update subject of my email WiNK / Rob wrote > Hi > > I think i might have hit a bug posted on forums.mysql.com but > apparently nobody really reads that i think. > > my table >

help with ORDER BY

Hi I think i might have hit a bug posted on forums.mysql.com but apparently nobody really reads that i think. my table CREATE TABLE `clog` ( `cID` int(20) NOT NULL auto_increment `lID` int(1
Page 13 of 508 Previous 10   11   12   13   14   15   16   17   18   19   20   Next 10   Next 100