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

Subject: Re: DROP TRIGGER IF EXISTS throws error??

> Are you sure that 's the exact query and error message? The query has a > backtick the error message has none which is unusual for a purely > syntactic error. It makes me suspicious that the er

Subject: do I need two tables or one will do just fine?

hi I have a employees table (first name last_name address city state zip phone ...). though I got a requested to add additional info about people like phone_extension zip+4 nick DOB... t

Subject: Re: Debugging batch sql statements

On Friday 05 October 2007 16 50 Arun wrote > Baron > I am sourcing it. I do not know if that is the best way though.. I am > running the insert statement from a mysql prompt in a linux/windows > m

Subject: Re: Debugging batch sql statements

Baron I am sourcing it. I do not know if that is the best way though.. I am running the insert statement from a mysql prompt in a linux/windows machine. My script has a single build script which sou

Subject: MySQL 4.0, max_allowed_packet and blob insert

Hello all I 'm running MySQL 4.0.24 on Debian Linux and have a problem with a very large blob insert query - it always fails with "#2020 Got packet bigger than 'max_allowed_packet ' ". I searched the

Subject: Re: LIMIT within GROUP BY

I tried. Then I get ############### person_id points 1 34 2 49 2 46 2 37 3 42 3 35 3

Subject: Re: Debugging batch sql statements

Arun wrote > I have a large batch of insert sql statements of which some of them are > failing. I want to know which one is failing exactly. > Is there anyway I can debug it and which statement wen

Subject: Re: LIMIT within GROUP BY

Change the > to > and the < to < to deal with this. Baron Miroslav Monkevic wrote > Thanks Baron great advice (as always). > > My real query is a bit more complicated but speaking in terms of e

Subject: Re: DROP TRIGGER IF EXISTS throws error??

Hi Jesse wrote > I 'm attempting to restore a couple of backups and part way through I > get the error > You have an error in your SQL syntax check the manual that corresponds > to your MySQL

Subject: DROP TRIGGER IF EXISTS throws error??

I 'm attempting to restore a couple of backups and part way through I get the error You have an error in your SQL syntax check the manual that corresponds to your MySQL server version for the rig

MySQL Manager Issue

> Right click in query editor window select "Properties " from popup menu > Select "Quick Code " in Editor options tree. > On the right side of the dialog window in "Automatic features " group > desele

Subject: Debugging batch sql statements

I have a large batch of insert sql statements of which some of them are failing. I want to know which one is failing exactly. Is there anyway I can debug it and which statement went wrong. I have on

Subject: Re: LIMIT within GROUP BY

Thanks Baron great advice (as always). My real query is a bit more complicated but speaking in terms of example I provided I took this path #################### create table results ( person_i

MySQL Manager Issue

Right click in query editor window select "Properties " from popup menu Select "Quick Code " in Editor options tree. On the right side of the dialog window in "Automatic features " group deselect "Cod

Subject: Connect To Foreign Tables

The application I 'm working on uses MySQL 5.0.41 and we also need to retrieve some data from a SQL-Server database in another department. SQL-Server has a feature (that I haven 't tested) that allo

Subject: Re: How to change "long_query_time " with mySql 3.23

I wouldn 't be surprised if this feature is broken in 3.23. You said you installed it yourself. Can you possibly upgrade to 4.1 instead? thomas Armstrong wrote > It looks like mySQL is taking ok t

Subject: Re: How to change "long_query_time " with mySql 3.23

It looks like mySQL is taking ok the "long_query_time " value by using -------- set-variable long_query_time 5 -------- If I display mySQL parameters ------ long_query_time current value 10 --

Subject: Re: LIMIT within GROUP BY

Miroslav >My goal is to sum 7 greatest results for each person. Have a look at 'Within-group quotas (Top N per group) ' at http //www.artfulsoftware.com/infotree/queries.php. PB ----- Miroslav M

access privileges

Hi All Today I installed mysql for debian OS. After the installation i started mysql using mysqld_safe &. Now if i try to connect to mysql using "mysql -uroot -p " it fails but if i use "-habc " i

connections limit

It is set in mysql 's config file. Have you traced into your program? Albert Sanchez > Is there a limit of connections (open and close) that mysql can carry? or a > limit by second? > > I have a big

MySQL Manager Issue

Sorry for posting this here but 1) I didn 't see a 3rd party MySQL list and 2) I tried several times to post a support ticket on the SQLManager.net site and it simply would not save my ticket. The

Subject: Re: How to change "long_query_time " with mySql 3.23

I also tried with ------- set-variable long_query_time 5 ------ mySQL starts ok but all queries within the file are # Query_time 0 Lock_time 0 Rows_sent 119 Rows_examined 238 The aren 't slo

Subject: How to change "long_query_time " with mySql 3.23

Hi. I 'm suffering a severe slowness of my server (mySQL 3.23) and want to detect Slow Queries. I installed mySQL on '/usr/local/mysql ' and works ok. But if I insert this line into '/etc/my.cnf ' -

Speeding Up Process

"For Each " is always best avoided think set based! Might be better if you could forward your SQL. Rhys -----Original Message----- From Neil Tompkins [mailto neildtompkins@(protected)] Sent 04 Oct

Speeding Up Process

Hi I 've the following process/queries which I want to speed up for a product inventory/warehouse which we have a number of items available to sell each day For Each Company For Each Product

Subject: Re: single line inserts with on duplicate key

Scott Haneda wrote > Is it possible in single-line inserts with on duplicate key clauses to > get back a list of last insert id 's for what was inserted? > > I get strange results just one single

connections limit

Is there a limit of connections (open and close) that mysql can carry? or a limit by second? I have a big memory crash (double free or corruption) in my program and I smell that it could be mysql t

Subject: Re: LIMIT within GROUP BY

Hi Miroslav Monkevic wrote > Hello > > MySQL 4.1 > > I have query > SELECT SUM(points) as ranking FROM results GROUP BY person_id ORDER BY > ranking DESC > > My goal is to sum 7 greatest resu

Subject: Hotel availability system

Hi I 'm looking to design a hotel reservation/availability system to be used online. Has anyone had any experience with regards table / database design ? Thanks Neil

Subject: LIMIT within GROUP BY

Hello MySQL 4.1 I have query SELECT SUM(points) as ranking FROM results GROUP BY person_id ORDER BY ranking DESC My goal is to sum 7 greatest results for each person. In more general my questi
Page 10 of 508 1   2   3   4   5   6   7   8   9   10   Next 10   Next 100