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

Subject: mysql restore db error ?

hello am a myql newbie i am trying to restore a mysql database using phpmyadmin but i keep on getting this error Error SQL query TRUNCATE TABLE jamroom_band_fan_invites MySQL said #11

Subject: Re: Problem creating a Trigger

Hi > However I have another problem which I need your ideas. It 's better to create a new thread when you want to discuss a new problem. > I have a table where prices for a few stock tickers are in

Subject: Re: Problem creating a Trigger

Hi Thank you so much for the prompt response. Those comments were good to be kept in mind always. I actually realised the mistake I was making as soon as I posted the problem here. So I managed the

Subject: Re: Problem creating a Trigger

Did you remember to switch your SQL delimiter ? MySQL default delimter for SQL is the semicolon ( ) MySQL 's stored procedure language also uses the semicolon to delimter statements. Th

Subject: RE: changes in tables (developemnt - > production)

> what steps do you recommend to do the tables update on the production > database? When I work on our site DB I follow the following steps 1. Trash the existing dev DB and replace with the curre

Subject: changes in tables (developemnt - > production)

hi on production server while developing I did some changes on some tables (I added few new columns on several tables). now after the new web app is finished and tested I have to upgrade (php)

Subject: Problem creating a Trigger

Hi all When I am trying to create a trigger I get an error message which I am unable to comprehend. create trigger updatepricech after insert on tbl_prices for each row BEGIN DECLARE closep INT

Subject: Query timeouts on Solaris

I 'm using MySQL++ as a wrapper around the MySQL C API. When I suspend the database using kill -SIGSTOP the executing write query does not timeout as expected. The read/write timeout has been s

Subject: Re: Delete query question

IN() subqueries in MySQL are badly optimized. It 's usually better to use a JOIN even though it 's non-standard DELETE geno_260k.* FROM geno_260k INNER JOIN ( SELECT ident FROM geno_260k

Subject: Re: Delete query question

Thanks baron I will try this just for test purposes as I already wrote a script which is slow but not as bad as using IN() Olaf On 9/5/07 3 29 PM "Baron Schwartz " <baron@(protected) > wrote > IN

transaction problem

Hi jidntt@(protected) wrote > Hi list! > I 've a problem with transaction > I initiate a transaction with "start transaction ". Soon i execute > following query > * update t1 set t 12 and by I co

transaction problem

Hi list I am going to change the type of table to InnoDB Thank!! Pablo -- MySQL General Mailing List For list archives http //lists.mysql.com/mysql To unsubscribe http //lists.mysql.com/mys

Subject: Re: How to debug a mysqldump dropped connection error?

The wait_timeout and interactive_timeout global variables are set to 172800 and max_allowed_packet is set to 30M and I am still getting the problem > I am having debugging a problem I am seeing wit

Simple questio SQL

On Wed September 5 2007 7 17 Jay Blanchard said > [snip] > I have a Table and want to know the most visited products. > Products > > - Id > > - Name > > - Visited > [/sn

Simple questio SQL

select * from Products order by Visited desc limit 10 should give you the top 10 products. On 9/5/07 Tomas Abad <informatica@(protected) > wrote > > HI All > > > > I have a Table and wan

Subject: RE: Error in mysql slave server

Things to check * Packet bigger than my.cnf settings allow. * Memory available to running process happened to be hit (FreeBSD has "memdsiz "). * Network glitch. > -----Original Message----- > From

Left join problem

Hi > two tables gi_t and gi > > gi_t holds 5 records. gi holds ca. 1500. > > I need all from gi for each in gi_t ie LEFT JOIN!!! > but this > SELECT gi.id AS id overskrift gidata FROM gi_t LEFT

transaction problem

Hi > I 've a problem with transaction > I initiate a transaction with "start transaction ". Soon i execute > following query > * update t1 set t 12 and by I complete I execute rollback but when I d

Left join problem

Which table is bladref in? Regards Jerry Schwartz The Infoshop by Global Information Incorporated 195 Farmington Ave. Farmington CT 06032 860.674.8796 / FAX 860.674.8341 www.the-infoshop.com ww

transaction problem

Hi list! I 've a problem with transaction I initiate a transaction with "start transaction ". Soon i execute following query * update t1 set t 12 and by I complete I execute rollback but when I do i

Subject: Re: recovering from 'disk full ' mysql error

Ya I did that. I read elsewhere that this was recommended for 4.1.9+. I did stop slave change master to master_log_file '{Relay_Master_Log_File} ' master_log_pos {Exec_master_log_pos} start slave

Subject: Re: Delete query question

Thanks This seems to work but that IN seems to be really slow... On 9/5/07 9 41 AM "Justin " <mysql@(protected) > wrote > try > > SELECT * from geno_260k WHERE ident IN (SELECT ident FROM geno_2

Subject: Re: Delete query question

reply inline On 9/5/07 Olaf Stein <steino@(protected) > wrote > > delete from geno_260k where ident (select ident from geno_260k where a1 0 > group by ident having count(a1) >250000) When a sub query

Subject: Re: recovering from 'disk full ' mysql error

stop slave change master to master_log_file 'Relay_Master_Log_File ' master_log_pos Exec_master_log_pos #Get the values for the above command from your show slave status output. start slave Th

Left join problem

Hi two tables gi_t and gi gi_t holds 5 records. gi holds ca. 1500. I need all from gi for each in gi_t ie LEFT JOIN!!! but this SELECT gi.id AS id overskrift gidata FROM gi_t LEFT JOIN gi ON gi_

Simple questio SQL

[snip] I have a Table and want to know the most visited products. Products - Id - Name - Visited [/snip] SELECT Id Name count(Visited) AS Total_Visits FROM product GRO

Simple questio SQL

> I have a Table and want to know the most visited products. > > > > Products > > - Id > > - Name > > - Visited > > > > Visited is numeric. How about select * from Produc

Subject: Re: Database page corruption on disk occurring during mysqldump on a fresh d

The checksum errors might be due to various reasons. We had similar issue where we restored the database multiple times replaced the ram sticks nothing helped. Finally we drilled down the issue to th

Simple questio SQL

HI All I have a Table and want to know the most visited products. Products - Id - Name - Visited Visited is numeric.

Subject: AW: Delete query question

Perhaps not the most elegant way - Create a temporary table - Select-insert into the temp-table - Use the temp-table for a delete-join or a 'NOT IN '-statement or something like that
Page 16 of 508 Previous 10   11   12   13   14   15   16   17   18   19   20   Next 10   Next 100