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

Subject: Re: Delete query question

try SELECT * from geno_260k WHERE ident IN (SELECT ident FROM geno_260k WHERE a1 0 GROUP BY ident HAVING count(a1) >250000) This will give you what you 're deleting first.. then if that is good. d

Subject: Delete query question

Hey all I am stuck here (thinking wise) and need some ideas I have this table CREATE TABLE `geno_260k` ( `genotype_id` int(10) unsigned NOT NULL auto_increment `ident` int(10) unsigned NOT N

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

Hi This might be happening due to two reasons 1 The system date might not be correct. 2. Some things wrong with log postion (Incorrect log position) Regards Krishna Chandra Prajapati On 8/31/07 M

Subject: Re: Editing fields in bulk

> I have a column where I need to replace all instances of the text "US- > Complete " (contained within a long sentence) with "US Complete ". > There are probably 50 or 100 of them. I 'm really scar

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

On Tue 4 Sep 2007 Shawn Green wrote > > On Tue 4 Sep 2007 Lucio Chiappetti wrote > > For each I tested 3 cases (total 16*3 48) > > > > a) the query on the "virtual " table correlated with the

Subject: Re: SSL Problem with outdated zertificates

Actually I fixed the problem by generating a whole new set of SSL certificates! Thanks for the help! Regards Samy samy-delux@(protected) schrieb > Hey > > This morning the default timespan of ssl cer

Subject: Re: utf8 problem in index

Marten Lehmann napsal(a) > Hello > > I have a table like this > > CREATE TABLE `places` ( > `name` varchar(256) collate utf8_unicode_ci NOT NULL > PRIMARY KEY (`name`) > ) ENGINE MyISAM DEFAU

Subject: Re: Editing fields in bulk

Brian Dunning wrote > I have a column where I need to replace all instances of the text > "US-Complete " (contained within a long sentence) with "US Complete ". > There are probably 50 or 100 of them

Subject: Re: Editing fields in bulk

Brian Dunning wrote > I have a column where I need to replace all instances of the text > "US-Complete " (contained within a long sentence) with "US Complete ". > There are probably 50 or 100 of them

Subject: RE: Editing fields in bulk

I could use the same thing... just looking through the documentation there is a replace() function. Maybe do a backup/restore to a test database before doing this on your live system... UPDATE `table

Subject: Editing fields in bulk

I have a column where I need to replace all instances of the text "US- Complete " (contained within a long sentence) with "US Complete ". There are probably 50 or 100 of them. I 'm really scared to do

Subject: RE: mysqldump of huge innodb database

Hiya I was backing up a 95GB InnoDB database and forever had problems. It ended up working and I never really worked out exactly what the cause was... but try using the following --opt (does --qui

Subject: How to debug a mysqldump dropped connection error?

I am having debugging a problem I am seeing with mysqldump. While using mysqldump to make backups of my database I will intermitently get the following error mysqldump Error 2013 Lost connectio

SQL injection?

Hi Fletcher Mattox wrote > We were recently the target of an SQL injection so I am trying to > determine if they were successful. I have recovered the SQL commands > from mysqld.log but the code

Subject: Re: timestamp for update and insert

If you decide to use the trigger here is the syntax http //dev.mysql.com/doc/refman/5.0/en/triggers.html And that table structure looks ok to me As far as the backup goes just dump the mysql datab

Subject: Re: timestamp for update and insert

so if trigger is used then create table temp ( id int not null primary key auto_increment data varchar(100) inserted timestamp lastupdated timestamp) is good enough right? trigger will use now

SQL injection?

It looks to me that they are trying to plant a query into your queries file. What type is column 'id '? I am guessing that they (think they) have found a vulnerability where running a web app (prob l

Subject: RE: timestamp for update and insert

Just do this... create table temp ( id int not null primary key auto_increment data varchar(100) inserted timestamp default 0 lastupdated default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP

Subject: Re: timestamp for update and insert

There is nothing terribly wrong with the approach documented in 'http //sql-info.de/mysql/examples/CREATE-TABLE-examples.html ' but as you no doubt have read it does mean that you have to make sure t

SQL injection?

We were recently the target of an SQL injection so I am trying to determine if they were successful. I have recovered the SQL commands from mysqld.log but the code has me stumped. INSERT INTO quer

Subject: Re: timestamp for update and insert

is it possible to do without trigger? i google and found this link http //sql-info.de/mysql/examples/CREATE-TABLE-examples.html but when i tried to combine two examples into one CREATE statement an

Subject: Re: timestamp for update and insert

Agreed... Also for consistency 's sake On 9/4/07 3 15 PM "Michael Dykman " <mdykman@(protected) > wrote > Triggers are a fine idea but I would use a trigger for both cases.. > no point putting that l

Subject: Re: timestamp for update and insert

Triggers are a fine idea but I would use a trigger for both cases.. no point putting that level of housekeeping on the application when you can set rules in the database and more or less forget about

Subject: Re: timestamp for update and insert

I would use a trigger (at least for the update).... The first insert should work with now() and you can leave lastupdateted empty Olaf On 9/4/07 3 01 PM "Hiep Nguyen " <hiep@(protected) > wrote >

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

Lucio Chiappetti wrote > 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 > tes

Subject: timestamp for update and insert

Hi list i tried to create a table with inserted & lastupdated timestamp fields create table temp ( id int not null primary ke auto_increment data varchar(100) inserted timestamp default now() l

Subject: Upgrade from 4.0 to 4.1 Character problems

Hi We 've recently upgrade from MySQL 4.0.18 to 4.1.20 and our applications (Websphere) its not displaying the character as its supposed to do. But when i do a "select... " from comand the results

Subject: recovering from 'disk full ' mysql error

I had a disk full error on the master MySQL (4.1.22) which was replicating to a slave (4.1.22). My question is how do I recover a slave replica when the master had a disk full error space was free

Subject: Memory Issue would someone confirm

Perhaps if you show us the table structure and exactly what operations you are using we might be able to provide some insight.. as it is your report is too vague to make much sense of it. - micha

Subject: Re: Memory Issue would someone confirm

I just changed to these values [mysqld] datadir /var/lib/mysql socket /var/lib/mysql/mysql.sock wait_timeout 30 default-character-set utf8 max_allowed_packet 14M (lowered from 3000MB) max_connect
Page 17 of 508 Previous 10   11   12   13   14   15   16   17   18   19   20   Next 10   Next 100