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 108 of 508 Previous 100   Previous 10   101   102   103   104   105   106   107   108   109   110   Next 10   Next 100  

Tuning High Loads MySQL Server

Cover the basics first by looking at the SHOW STATUS results. You shold make yourself familiar with what these variables are telling you. It 'll help in determining your bottleneck. http //dev.mysql.c

Subject: datetime issue on MySQL 4.x

Willy wrote > Hello > I have a MyISAM table > > CREATE TABLE `dlr` ( > `msisdn` varchar(20) NOT NULL default ' ' > `source` varchar(20) NOT NULL default ' ' > `operator_id` varchar(20) NOT N

Subject: Self Join Performance

Interesting setup. You 're using one more join than you need to. Your query should look like this SELECT DISTINCT(fvr.DocumentID) FROM FieldValueRelation fvr INNER JOIN FieldValueRelation fvr2 ON

Views can 't refer to temporary tables

Greetings. Continuing on from my previous question I 've discovered that I *can 't* create views which refer to temporary tables. Is there any plan to drop this requirement? -- Daniel Kasak IT Devel

I don 't understand why SCSI is preferred.

At 06 18 PM 7/11/2006 you wrote >My understanding is that SCSI has a faster transfer rate for >transferring large files. A busy database needs really fast access >for making numerous fast calls al

Mysql-workbench 1.0.6beta not working on reverse-engineer

rturnbull wrote > Hello to all > I 'm having some problems with the linux copy of mysql-workbench. > Great features and all if I could get them to work. > > What I 'm trying to do is reverse-

Trying to understand why Select running out of memory if table not used

It 's your MySQL client that 's run out of memory not the server. I don 't know how many rows MySQL is trying to return. Probably an enormous amount since you 're not sepcifying a join criteria on the d

mysterious speedup after doing "FLUSH TABLES "

Hello list we use MySQL 4.1.13 / InnoDB on Xeon em64t running Debian kernel 2.6.8. After a while queries run slower and slower although the CPU is >70% idle and diskio is nearly zero. A simple s

log

Just a shot in the dark... how about \T /home/karl/sql_log_$$ I believe in bash $$ will give you the pid of the process so you should get a unique (somewhat) file name every time > > >-----Ori

Manually enabling root access from remote machine

On 7/11/06 John Doolan <Johnd@(protected) > wrote > Hi > > I have just installed mySQL version 5 and want to enable root access > from remote machines. However the configuration tool fails w

Subject: Speedup of database changes

Changes to the database structure should be few a far between. If you are finding you need to change the structure regularly you should probably look at a redesign. MyISAM locks the table when an i

Subject: UPDATE silently fails

We have two networks which are very far apart in separate data centres over 1 000 miles apart. Web servers are in both locations but our MySQL db servers are in one. All web servers talk to those se

How to log the execution time of each query

Saha Mukul (Cognizant) schrieb > Hi > > I would like to log the execution time for each query in my MySQL server > .Is there any possible way? > > Please not that the - log-slow-queries option w

Subject: mysql - multimedia database

On 7/10/06 Shain Lee <gsm_linux@(protected) > wrote > Hi > > I 'm just behind a mulimedia database that wanted to be online with WAP contents. So i decided to go ahead with mysql and i insta

Question on views, stored procedures & temporary tables

Hi all. I have a long and complicated chain of queries in MS Access that I want to port to using stored procedures & views. What I 'd like to do is something like 1) stored procedures grabs origina

mysqldump with single-transaction with high-concurrency DB

Hi folks I 've recently tried to do a database backup on a database server that has a fairly high concurrency rate (1000+ queries/sec) and have noticed that the backup process seemed to deadlock t

Subject: Where is release 5.0.23

The documentation shows MySQL 5.0.23 as released on July 4 - but I do not see it on any mirror anywhere? Does anyone know where MySQL 5.0.23 is? Is it released as the doc says? Is it being held u

MAX_JOIN_SIZE

Try issuing select @@(protected) And also make a product from the number of rows from all the tables involved in the join (with WHERE clause applied) and if it exceeds the number given from th

queue select

Hi! Vittorio Zuccal? wrote > Hello > i 've two tables and they have the same field. > I 'd like to make a select which take records in a table and after it > shows record in the other table Read her

Please solve immediately Error found in migration from MS SQL 2000 to My sql

On 7/10/06 Kishore Kumar Barik <kishore.k.barik.26@(protected) > wrote > > < snip > > Please send me solution immediately. > anything else your highness? -- -jp Chuck Norris got in touch with his

Subject: File (xls, csv, txt) to MySQL

[snip] If I have a file that is in a spreadsheet format how can I dump that into a MySQL database using PHP MyAdmin? [/snip] Using a LOAD DATA INFILE query. http //www.google.com/search?hl en&lr &

vCard to MySQL

Is there a standard MySQL structure to represent vCards? If so are there programs to install vCard address lists in a MySQL database? I 'm running Fedora-5 Linux with KDE and am interested in trans

mysql DB server outage and crazy dentunusd figures reported by sar

Hi We had an outage on our Mysql DB yesterday. Basically the Db was unusable and we couldn 't get a shell onto the host ( 'could not fork process '). OS Red Hat Linux Advanced Server release 2.1AS/\

Subject: EINTR in my_connect()

Hi all Is there any reason to abort connection when error code is EINTR? I tried to patch it as below --- [batara@(protected) ~/src/mysql-5.0.22/libmysqld]$ diff -c client.c client.c.patch *** client

Subject: Benchmarking GUI tool

Hello Does anybody know a Benchmarking GUI tool for MySQL under windows? Thanks Mic

May I create more than 200 databases for one mysqld?

May I create more than 200 databases for one mysqld? And is there any disadvantage when there 're many databases on one mysqld? Thanks. Regards Gu Lei

How does one speed up delete-Again

I 've had to delete large amounts of records from tables with over 200 millions records. You are correct in that you want to do it in chunks. How you divide the deletes is up to you to decide. You wou

very basic questions

SQL files are just text files that has sql commands in. If you want to load a sql file from mysql prompt you can do like this. mysql -u root -p mysql mysql > load file.sql It 's better to remember

How to look for balanced parenthesis?

I have a complicated SQL statement with around a dozen "if(this val1 val2) " embedded in it and there are even nested If clauses. I 'm getting syntax errors because I 'm not balancing the "( ) " properl

Subject: a lil sql help please.

Hi I have the following Query and Im a lil lost on this one.... SELECT DISTINCT tbe_orders.order_id tbe_orders.order_date tbe_orders.order_piececount FROM tbe_orders The query produces the fol
Page 108 of 508 Previous 100   Previous 10   101   102   103   104   105   106   107   108   109   110   Next 10   Next 100