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

Insertion Problem

Hello all I am trying to get this script to INSERT a couple of records into my DB but I am getting these errors. I know the second warning has nothing to do with MySQL so I will work on figuring

Subject: mysql_connect problem

http //dev.mysql.com/doc/refman/5.0/en/old-client.html Regards! Edwin. -----Mensaje original----- De WSteffen [mailto wsteffen@(protected)] Enviado el Mi?rcoles 28 de Junio de 2006 10 29 a.m. P

is there a way to optimize like '%..% ' searches ?

Martin currently there is not a way to optimize that particular type of query. You might consider changing to fulltext indexes and searches instead as it could be faster but it is a slightly diffe

Secure login / set maximum of login tries

Hi is there a way to set a maximum of login tries? Thanks Michael Decker -- Michael Decker Michael.Decker@(protected) TESIS SYSware GmbH http //www.tesis.

How can I enable big-table option ?

It may not be the big-table option you are looking for. MySQL defaults to a 4GB table limit based on calculation. From CREATE TABLE in the manual under AVG_ROW_LENGTH. MySQL uses the product of the

How to create references and insert into values in phpmyadmin?

Hello NG how can I implement a reference in phpmyadmin between two fields from two different tables so that the two fields of the two different tables have the same values? And if I have to fill th

Converting string hex column to integer

On 28.06.2006 13 54 Du?an Pavlica wrote > Hello > I have column of type char(2) containing hex numbers (e.g. "0A " "FF " > ...) and I cannot find correct function which could convert those hex > nu

How to share data between servers

1. One-Way-Replication server2 gets data from server1 if server2 does not write in the database... if it writes 1.a 2-Way-Replication server2 gets data from server1 AND server1 gets data from se

MySQL Test Framework documented

MySQL is shipped with a set of test cases and programs for running them. These tools constitute the MySQL test framework that provides a means for verifying that MySQL Server and its client programs o

CJK FAQ

MySQL has provided support for CJK languages (Chinese Japanese Korean) for a long time. There 's a chapter in the MySQL Reference Manual that extensively covers MySQL character set support. Managing

Please Help - Stored Procedure Issue

I have the following stored procedure that I 'm using DELIMITER $$ DROP PROCEDURE IF EXISTS `bpa`.`sp_GetNextInv` $$ CREATE PROCEDURE `sp_GetNextInv`( IN nChapterID Int OUT cInvNo VarChar(7)) BEG

Subject: Use of @ in Stored Procedure

Jesse wrote > I have skimmed through several pages of instructions on creating > stored procedures and I can 't seem to find when I should and should > not use the "@ " symbol before a variable name

Field list error in Stored Procedure

Hi all Running MySQL 5.0.22 Community on Win 2003 Server. Can anyone give me some guidance as to what is wrong with the following SP? It continually errors with "1054 Unknown column 'Individual ' in

Foreign Language FULLTEXT Indexing

I 'm guessing that the way MySQL handles foreign language full text indexing is through parser plug-ins and custom stop word lists. Am I right? And If so these must have been already created for the

DELETE based on JOIN

Jesse wrote > I need to delete some records based on a JOIN relation. The following > works in Microsoft SQL Server and the syntax appears to be correct > for MySQL but it reports "syntax..near

multi-column indexes on InnoDB tables

Sounds like you have more potential problems than is typical. It also sounds like you may want to setup replication even if the data is replicated to an old old computer that you were going to thro

SNMP monitoring of mysql servers

Hi all We have an implementation of mysql servers and are looking for a decent SNMP monitoring package for them. We are looking to monitor replication queries per second throughput and slow q

Lazy and greedy control statements

how about something like this which finds one row (if any) with the lowest in-stock price UNIONs it with the highest out-of-stock price (if any) and then returns just one row including whether t

Access from other computers in the network

Wim see http //dev.mysql.com/doc/refman/5.0/en/grant.html When granting access to a user you can do like GRANT SELECT on db.* to 'user '@ '%.domain.com ' which gives 'user ' access to select from any t

How to Output to Screen in Procedure

How do I output messages to the screen during the execution of a Stored Procedure? In other words what command in a stored procedure will allow me to sent output to the screen to indicate progress

Show named locks currently held by any thread

Hi is is possible to show a list of all named locks (obtained by GET_LOCK)? Best regards Achim -- MySQL General Mailing List For list archives http //lists.mysql.com/mysql To unsubscribe ht

Using replace on columns containing *

Part of the problem is that you have a ' ' in between your REPLACE and your (). The REPLACE function needs to have that space removed. SELECT REPLACE(deviceID '* ' '.* ') FROM MY_TABLE Try that and s

CREATE TABLE Failure

In addition to Ben 's answer... > Hi All > > I have been repeatedly trying to create the following table - without > __ANY__ success. Looks like there is REALLY something wrong with the > MySQL engi

Subject: for queries and enquiries

On Tuesday 27 June 2006 13 43 Veerabhadra rao Narra wrote > Hi all if u have doubts pls feel free to send mails to v.n@(protected) > www.venadsolutions.com > its > not spam > -Rao I consider this as spam.

InnoDB obeyance of PRIMARY KEY constraint - confirmation

> I did read in the manual that the field level REFERENCES constraints > on InnoDB tables do not work as expected and one has to first define a > table level index and then create a table-level FOREIG

How can I connect to mysql server using PHP?

On Tuesday 27 June 2006 03 35 am ???? wrote > Hello everyone > I wanna connect to mysql server using PHP. My operating system is > Redhat Fedora Core 4 and the version of mysql is 4.1.3 beta.

Recommended backup scripts for mysql databases

Andreas if you are only using MyISAM tables the included mysqlhotcopy script may work for you. We used it at my previous employer with good results. We would run it to create a snapshot of our d

TINYTEXT != VARCHAR(255) ? (Advanced Data Generator related)

Hello Denis > > I have a question related to the two MySQL data types mentioned in the > subject. Are they totally identical or not? > > > I am asking this question due to the problem I am facing ri

Subject: faster query (newbie)

I have a query statement like this select hiart01a.cust hiarf01.nama hiarf01.al2 hiart01a.tgl hiart01a.netto hiart01a.muka from hiart01a hiarf01 where hiart01a.tgl > from_days(to_days(now()) -

concurrency problem

On the extremely rare occasion when I couldn 't use an auto increment mainly for performance reasons I 've used an id+subid. Usually I 've only done this for long running scripts that process/add a lo
Page 112 of 508 Previous 100   Previous 10   111   112   113   114   115   116   117   118   119   120   Next 10   Next 100