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

Subject: Re: Implement a logging table; avoiding conflicting inserts

> Given MySQL 4.0.12 I need to implement a pageview log with a > resolution of 1 day. > > I propose this table > > CREATE TABLE `pageviews` ( > `id` int(11) NOT NULL auto_increment > `date` dat

help with ORDER BY

Hi all! I need some help with ORDER BY in the following example. I want to order by selected category then by subcategories of the selected category then by categories with the same parent_id of th

Subject: Re: Big SELECT: ordering results by where matches are found

At 13 34 -0400 10/9/07 Baron Schwartz wrote >Looks like you 've found the solution you need. The only other >suggestion I have is to use UNION ALL if you don 't need to eliminate >duplicate rows in

Subject: Re: What should be a simple query...

Try this SELECT RMAs.rma_id FROM RMAs rma_line_items WHERE TO_DAYS(date_settled) 733274 AND RMAs.rma_id rma_line_items.rma_id GROUP BY RMAs.rma_id HAVING COUNT(*) > 1 On Sep 10 2007 at 11 36

Subject: Question: table schema optimization

Folks A help needed. My manager 's pushed me to optimize the tables that I created in distributed in several DBs. I have tried best to explain to him that I have followed the strict formula design to

Subject: What should be a simple query...

I have two tables one called RMAs and the other called rma_line_items. The first one has the general details of the RMA (Return Merchandise Authorization) the second holds the details of each it

Subject: Re: Using MAX function to fetch primary id

You can do it as long as there is only a single record with the max value. If there is more than 1 record with the same max value there isn 't a single record to pull. To do it you would need to

Subject: Data corruption and server crash issues in replicated setup

Hi all Starting Wednesday night we observed several weird errors indicative of data corruption shortly before a CPU spike and complete crash on our master db server (opera.oursite.com). opera.oursi

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

Thank you for your replies. I attempted to restore again and most oddly mysql complained that it couldn 't restore to a particular table because it wasn 't in the database which of course it had t

Subject: Implement a logging table; avoiding conflicting inserts

Hello Listies Given MySQL 4.0.12 I need to implement a pageview log with a resolution of 1 day. I propose this table CREATE TABLE `pageviews` ( `id` int(11) NOT NULL auto_increment `date`

Subject: Re: Really strange index/speed issues

Baron Schwartz wrote > Hi Chris > > Chris Hemmings wrote > > Dan Buettner wrote > > > Chris a couple of thoughts - > > > > > > First your index on the section is doing you no good (at this time) > > >

Subject: Re: Really strange index/speed issues

Hi Chris Chris Hemmings wrote > Dan Buettner wrote > > Chris a couple of thoughts - > > > > First your index on the section is doing you no good (at this time) > > since > > all the values are the s

Subject: Re: Really strange index/speed issues

Dan Buettner wrote > Chris a couple of thoughts - > > First your index on the section is doing you no good (at this time) since > all the values are the same. You may already know that but thoug

Subject: Re: Really strange index/speed issues

Chris a couple of thoughts - First your index on the section is doing you no good (at this time) since all the values are the same. You may already know that but thought I 'd mention it. Second

Subject: Re: Really strange index/speed issues

Jeremy Cole wrote > Hi Chris > > Chris Hemmings wrote > > Hello > > > > I have a table currently holding 128 978 rows... In this table I > > have a section column (int) and a price column (int).

Subject: Re: Really strange index/speed issues

Hi Chris Chris Hemmings wrote > Hello > > I have a table currently holding 128 978 rows... In this table I have a > section column (int) and a price column (int). Every row has a section of

bitwise logic

Hi You can actually unpack them using some fairly cryptic stuff. I would only use this to unpack them once to re-store them as INT. Here 's an example CREATE TABLE ip (packed CHAR(4)) INSERT I

Subject: Really strange index/speed issues

Hello I have a table currently holding 128 978 rows... In this table I have a section column (int) and a price column (int). Every row has a section of 1 currently every row has a price rang

Subject: MySQL Connector/J 5.1.3 RC is available!

-----BEGIN PGP SIGNED MESSAGE----- Hash SHA1 Hi MySQL Connector/J 5.1.3 RC a new release candidate of the Type-IV pure-Java JDBC driver for MySQL has been released. Version 5.1.3 is suitable for

Subject: Re: Big SELECT: ordering results by where matches are found

Chris Sansom wrote > At 11 01 -0400 10/9/07 Baron Schwartz wrote > > The entire UNION can then be ordered by relevance. You could also > > just add in an arbitrary number in each UNION to get th

Subject: Best Practice - Encryption

Hi MySQL 'ers -- I run multiple HIPAA compliant databases and a lot of very secure patient information in my MySQL databases. However I am a bit of a security phreak and want to go a step furthe

Subject: more options for MySQL tools by MySQL

Hello all I want to suggest one thing relating to MySQL Tools for 5.0(Administrator Query browser etc.) - A new feature can be added to use command line options to synchronize structure and data da

Subject: Re: Big SELECT: ordering results by where matches are found

At 11 01 -0400 10/9/07 Baron Schwartz wrote >The entire UNION can then be ordered by relevance. You could also >just add in an arbitrary number in each UNION to get the effect of >ordering by wh

Subject: Re: Big SELECT: ordering results by where matches are found

At 11 01 -0400 10/9/07 Baron Schwartz wrote >I 've built similar systems with a series of UNION queries. Each UNION has a column for "relevance " which can be a sum of CASE statements such as > >IF

Subject: Re: Big SELECT: ordering results by where matches are found

Chris Sansom wrote > I 'm sure there must be an accepted technique for this but it 's > something I haven 't tried before so if anyone can point me in the right > direction I 'd be grateful. > > I 'm

Subject: Big SELECT: ordering results by where matches are found

I 'm sure there must be an accepted technique for this but it 's something I haven 't tried before so if anyone can point me in the right direction I 'd be grateful. I 'm writing a search facility for

Subject: Re: table based replication into a different db

Christian Parpart wrote > Hi all > > i would like to replicate just tables beginning with a certain prefix > while the replication slave host 's database name also differs. > > i remember i once re

our server got stuck

hi All Last month one of the our server got stuck but We could n 't find the reason. Here I have attached the OS(Red Hat Enterprise Linux AS relese 4) message log. I think issue may be in MySQL. We a

Subject: Re: MySQL 6.0.2-alpha and Falcon and possible bug/problem

Mariella Petrini wrote > > > ...MySQL 6.0.2 with Falcon on Linux with Debian 4. > I have compiled the source code for 64 bit executable. > The system is an Intel 2 cpus 4 cores each with 8 GB > of

Subject: Re: MySQL 6.0.2-alpha and Falcon and possible bug/problem

Mathieu Bruneau wrote > I never tried the falcon engine but could it be that mysql is running > out of file descriptor ? > That 's less likely with Falcon than with engines that put each table an
Page 14 of 508 Previous 10   11   12   13   14   15   16   17   18   19   20   Next 10   Next 100