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 6 of 508 1   2   3   4   5   6   7   8   9   10   Next 10   Next 100  

Subject: Error 1064 on a basic UPDATE query

Hi List We have a transactions table (~600k records). I 'm trying a simple update query it fails. I thought this could be due to a reserved word problem but all names have been escaped. mysql > UPD

Subject: Limiting the text size on text fields

Is there a way to restrict the length of text field in MySQL. For example it is of 65K limit and could hold more than 20000 characters. Is there a way to restrict that to 4000 characters at table/fi

Subject: Re: MySQL Server not running

When i do this he say MySL package is not installed but when i reinstall the same thing is happen so thats what i told you he dont realy instal mysql and i dont know why........ Datum Fri 12

Subject: Re: MySQL Server not running

Nothing the server is definetively not running You get the bug script from me...... regards Daniel Datum Fri 12 Oct 2007 15 44 29 +0530 Von "Ananda Kumar " <anandkl@(protected) > An "Daniel Bau "

Subject: Re: Are transactions atomic?

Hi Douglas Douglas Pearson wrote > Sorry if this is a dumb question but are SQL transactions in MySQL atomic? > I 'm using InnoDB tables in MySQL5. > > Clearly transactions have the property that

Subject: Are transactions atomic?

Sorry if this is a dumb question but are SQL transactions in MySQL atomic? I 'm using InnoDB tables in MySQL5. Clearly transactions have the property that either all updates occur or none do. By at

Subject: SV: Help with query...

> Hello > where is the FROM for f1 table? > Martin-- Why would there be any "FROM " for the f1 table? It 's not needed in the result. Anyway I 've come up with a query that actually seems to do what

Subject: Re: DOCUMENTATION ABOUT SHOW PROFILE

Wagner SHOW PROFILE[S] is documented at http //dev.mysql.com/doc/refman/5.0/en/show-profiles.html. 5.0 Community edition only. Perhaps it will appear in 5.1 Community? They do not say so. PB Wa

Subject: DOCUMENTATION ABOUT SHOW PROFILE

Hi friends Somebody here in this list have or knows where i get or read about the PROFILE of MySQL (SHOW PROFILE) ? I see this article of Schummi but is most superficial. (http //dev.mysql.com/tech

Help with query...

Anders Norrbring wrote > I 'm trying to set up a query but I don 't really get the result I > expected so can someone please help me out here? > > The query I 've built is this > > SELECT a1.usern

Help with query...

I 'm trying to set up a query but I don 't really get the result I expected so can someone please help me out here? The query I 've built is this SELECT a1.username FROM accountuser AS a1 LEFT JOIN

Subject: RE: MySQL only listens on localhost

Thanks to all > Check for bind-address in your my.cnf file That solved the problem. -- MySQL General Mailing List For list archives http //lists.mysql.com/mysql To unsubscribe http //lists

Subject: Re: MySQL only listens on localhost

Check your my.cf file a /etc/my.cf. To add the "bind-address <ip > " at the end of the file. Restart your mysql. And grant the access to the user who you want to connect your database from where yo

Subject: Re: MySQL only listens on localhost

Franz Did you setup user access permissions outside of 127.0.0.1 and is port 3306 open on your firewall/router? Jim Ginn http //www.Tenant.com > Hello > > Can anyone please give me a hint what I

Not In join query.

Hi Chris Chris W wrote > I have 2 queries to give me a list of names. > > Q1 > SELECT DISTINCT FName LName > FROM user u > JOIN userprofile p > USING ( UserID ) > JOIN trainingstatus t > USING (

Subject: Res: MySQL only listens on localhost

After check the my.cnf how said by friend Patricio give the GRANT ALL ON *.* TO root@ '% ' for thet user do the remote connections. For some doubts keep on list! Bye! Wagner Bianchi Diretor de

Subject: Re: MySQL only listens on localhost

Check for bind-address in your my.cnf file ----- "Franz Edler " <franz.edler@(protected) > escribi?? > Hello > > Can anyone please give me a hint what I can do that MySQL also listens > to > the physica

Subject: MySQL only listens on localhost

Hello Can anyone please give me a hint what I can do that MySQL also listens to the physical address of the host. I see that MySQL listen only to 127.0.0.1 3306 and therefore every connection via th

Subject: CONCEPTS ABOUT PRIVILEGES!

Hi friends This is the first time i post in this list and send a "hello " 4 all. I 'm from Brazil. So I have a doubt about the moment when u creat a new user. In my high-school course

Subject: Re: Query not returning Data

That is a string comparison so they will never be equal. You don 't have to put quotes around field names unless you are using reserved words which you shouldn 't. If you do use "quotes " around fi

Subject: Re: Need help with a "natural sort order " for version numbers and release co

Oh and here 's the output (Sorry) +-----------+

Subject: Re: Need help with a "natural sort order " for version numbers and release co

Here 's my full test solution use test drop table if exists releases create temporary table releases ( releaseid int(10) unsigned not null auto_increment primary key name varchar(255) )engine m

Subject: RE: Need help with a "natural sort order " for version numbers and release co

> -----Original Message----- > From Jay Pipes [mailto jay@(protected)] > Sent Friday October 12 2007 2 07 PM > To Daevid Vincent > Cc mysql@(protected) > Subject Re Need help with a "nat

Subject: Re: LEFT JOIN (SELECT ...) -- no joy

Andrew Carlson wrote > Is there a purchase order (10002) with no orders in the order_details table? No PO 10002 is related to the order_id 2 here > >mysql > SELECT order_id SUM(quantity * unit_p

Subject: Re: Need help with a "natural sort order " for version numbers and release co

Daevid Vincent wrote > > I 'm trying to get some 'release/version numbers ' to sort properly. > > mysql > SELECT ReleaseID Name FROM releases ORDER BY Name DESC > +-----------+-------------

Not In join query.

I have 2 queries to give me a list of names. Q1 SELECT DISTINCT FName LName FROM user u JOIN userprofile p USING ( UserID ) JOIN trainingstatus t USING ( UserID ) WHERE ProgramID 12 ORDER BY LName

Subject: Need help with a "natural sort order " for version numbers and release code n

I 'm trying to get some 'release/version numbers ' to sort properly. mysql > SELECT ReleaseID Name FROM releases ORDER BY Name DESC +-----------+

Subject: LEFT JOIN (SELECT ...) -- no joy

using 5.0.24 mysql > describe order_details +------------+

Subject: Re: open_files_limit problem.

Paul Take a look at the ulimit command. We had a similar issue and it turns out there are OS level per-process limits as well. We have now configured the /etc/init.d/mysql file set the ulimit to w

Trigger

>Mostly because use 2 field to represent the same data is a waste of storage i think. Oh ok. So you 're sending a non-date value and you want to transform it into an actual character presentation of
Page 6 of 508 1   2   3   4   5   6   7   8   9   10   Next 10   Next 100