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 113 of 508 Previous 100   Previous 10   111   112   113   114   115   116   117   118   119   120   Next 10   Next 100  

Server at 99%

Kim if this is still going can you post the output of SHOW FULL PROCESSLIST please? 40 MB doesn 't sound like a lot of data but could be a fair number of rows and a complete table analysis and r

Is the fsync() fake on FreeBSD6.1?

Hi I benchmarked MySQL 4.1.18 on FreeBSD 6.1 and Debian 3.1 using Super Smack 1.3 some days ago. The benchmark table is CREATE TABLE `Account` ( `aid` int(11) NOT NULL auto_increment `name` c

Records in front of and behind another record

Scott Haneda wrote > Mysql 4 > > I have a frustrating case here a list of numbers say 0 through 30 000 or > so however there are gaps in the numbers so not purely sequential. > > I am fac

Merging two fields; references to fields

You have at least 2 options (witch came instantly in my mind) CONCAT_WS - concatenation with separator SELECT CONCAT_WS( '/ ' firstname lastname) AS name FROM tablename CONCAT - concatenation of a

Subject: Leading zero where strlen < 5

The best way to do this is with code however here is A way to do it (I am sure that there are more than one...) UPDATE tbl_Name SET ZipCodes concat( '0 ' ZipCodes) WHERE length(ZipCodes) 4 Of co

ASP Reporting EOF?

When you run the query in the Query Browser do any of the records return a 'NULL ' value? If so then MS 's ASP engine would return an EOF because MySQL 's NULL is NOT the same as objRS(fld.name) " "

help on join query

Hi All Given this table +

Subject: Defaulting Date Field

What is the best way to default a date/time field to the current date/time? I 've tried using Now() but I get an error of course. The only other way I know of to do this is to add a trigger which

Multiple Entries

Nicholas Vettese wrote > If I have a multiple choice on a form and want to store that in my DB then how should I set up my table? I have been reading up on these but everyone seems to have a diffe

SSL on MySQL 5.0.22

Hi I am using 5.0.22 on Windows. As I read in the reference manual almost "ALL " SSL values/options are specific to 5.1.x versions. Do I stand _ANY_ chance to use SSL anyway? Specifically I want

your chance

Same here On Mon 2006-06-26 at 06 46 -0300 Jo??o C??ndido de Souza Neto wrote > I read that message and had no feelings. > > <ismailonur@(protected) > escreveu na mensagem > news mysql.general-19930

?mysql_stmt_bind_param under windows bug?

On Monday 26 June 2006 01 04 am Arias Gonzalez Javier wrote > memset(bind 0 sizeof(bind)) This is probably your issue right here. You 've already got bind[3] with storage allocation for 3 MYSQ

Subject: Funny connection problem

Hello I 'm running MySQL 5.0.22 x86_64 on CentOS 4.3 on one server and web apps on another server. Occasionally these web apps (PHP) will return error 1130 Host 'xxxxxxxxx ' is not allowed to connect

create view and insert into problems

Hello NG I have two tables in my mysql database created with phpmyadmin t_authors 1 authorid (primary key auto_increment) 2 lastname 3 firstname And a table named t_books fields inside t_boo

How to deploy MYSQL db to client

Hi! I wrote small windows application which use MySql 5 databse. I want to make one installation pakage with which I will install application and database. What is procedure to deploy database to cl

Subject: Re-importing a mysqldump file

Ian Barnes wrote > Is this possible? Or would the best way be to import the dumped file into a > temp table and then select out of the temp table into my correct table ? > Anyway to use a trigger?

InnoDB database Lost

Hopefully you 're not still having this problem. I don 't use phpMyAdmin but I know that it allows you to run "repair table " to try to fix a table after a crash. Does that work? -Sheeri On 6/25/06

Upgrading from 3.23.58 > 5.0.22?

Dan I haven 't seen any other responses so I 'll chime in with my $.02. I think you should have very few problems upgrading from 3.23.58 to 5.0.22. I think you will in fact be able to do pretty m

SELECT and NULL

SELECT * FROM table WHERE some_field IS NOT NULL -----Original Message----- From J?rn Dahl-Stamnes [mailto sql01@(protected)] Sent Sunday June 25 2006 2 24 PM To mysql@(protected) Su

A lot of HD Writing

In the last episode (Jun 24) Santiago del Castillo said > Hi is usual to have a lot of HD writing on a MySQL server where > (according to mytop) there are between 800 and 1200 queries per > second?

selecting data from 2 local DBs with same table structure

>I need the query to select the data from table1 on db1 and then select the >data from table1 on db2 and return a result of where if a field data value >is found in both tables that matches on na

Subject: assembler not found or what?

Hi all i am compiling mysql 4.1.20 with he following options export CFLAGS "-O3 -fomit-frame-pointer -march nocona -msse3 " export CXXFLAGS "-O3 -fomit-frame-pointer -felide-constructors -march noco

patch for 5.1.11 to use openssl

i don 't know the proper place to send this and i didn 't see any mention of it in the list archives. there is a really small problem with the configure script in 5.1.11 (and other versions perhap

Subject: Version Numbers - Precedence

On Saturday 24 June 2006 12 50 Asif Lodhi wrote > Hi > > Mathematically speaking the 5.0.22 I am using came _before_ 5.0.5. > Is that correct? Or 5.0.5 came first and then came 5.0.22? After.

help with locate() function and index

kevin vicky wrote > Hi > > I am trying to use locate() function to get position of a substring in a > text field which on average has 2000 characters and the search substring is > 30 -50 characters

Subject: 3 Table Join question

I am trying to build a query to 1) Get all the results from one table 'images ' 2) For each entry in the 'images ' table find the correct title from the 'playlist ' OR 'media ' table where images.id

what is selectivity?

Reading about DBs I am seeing the term "selectivity ". What does it mean? Seems like it has something to do with the distribution or pattern of data in tables(?) It 's coming up in discussions about o

Subject: Python program for data entry

I 'm looking for a simple python program which offers a graphical interface for entering data into a simple MySQL table. Is there a standard or semi-standard program for this? Or can anyone offer a

Subject: Re: Left Join Help SOLVED

Thank you all so much for your help here is my solution (I 'm sure I can do a little more optimization) SELECT DISTINCT (td.td_id) td.venue_id as ven_id td.td_date as td_date art.NAME as art_nam

error loading data from file > ERROR 1329 (02000): No data - zero rows fetch

Ferindo - I believe there is a 64K limit on the length of a record in a MyISAM table (text and binary columns excluded) but I haven 't ever seen a number of columns limit. Based on your table desc
Page 113 of 508 Previous 100   Previous 10   111   112   113   114   115   116   117   118   119   120   Next 10   Next 100