ANN: Advanced Data Generator 1.6.1 released

2006-03-23 Thread Martijn Tonies
Dear ladies and gentlemen, Upscene Productions is happy to announce a new version of the database developer tool: Advanced Data Generator (version 1.6.1) Version 1.6.1 for MySQL specifically fixes an issue with reporting the null-ability on columns in MySQL 4 and 4.1 (

Re: Unicode (UTF-8) question

2006-03-23 Thread 古雷
http://dev.mysql.com/doc/refman/5.0/en/myodbc-windows-binary-installation.html I don't know how to use Delphi. But I think Delphi is easy to use ODBC just like VB or PB. Run set names utf8 just like a normal SQL statement after connect. If you don't understand let me know. regards, gu lei

digest not received

2006-03-23 Thread Rithish Saralaya
I have not been receiving the daily digest for the past 2 days. Just wanted to check if I am the only one it's the same for others too. Regards, Rithish.

Content analysis

2006-03-23 Thread Jacob Friis Saxberg
Is there any way I can do a content analysis with MySQL? I need to find text in a database that have similarity. /Jacob -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: 4.0.18 restore dump file 'max_allowed_packet' error

2006-03-23 Thread Remo Tex
Luke Vanderfluit wrote: Hi. I've got mysql 4.0.18 installed on a sun X4100 running solaris. This is just a 32 bit version of mysql. I've reverted back to this version after trying mysql 5, 4.0.26 and 4.0.18 64bit. Those versions were all unstable on 64bit, that is, the server would just go

Converting password to old format.

2006-03-23 Thread Eugene Kosov
Hi, everyone! I have transfer user's database and grants from one mysql server (4.1.15) to an older one (4.0.26). I don't know user's password and have only it's hash. How can I convert hashed password stored in mysql.user.password field to the 4.0 format? Is there something similar to

Error Messages

2006-03-23 Thread rb
Does anyone know the cause of the following error message Ignoring query to other database When I log onto the mysql monitor and use any command I get this message. This is strange because last time I used my copy of mysql it worked just fine. I am using MAC OSX and I was wondering if the latest

RE: Content analysis

2006-03-23 Thread Jay Blanchard
[snip] Is there any way I can do a content analysis with MySQL? I need to find text in a database that have similarity. [/snip] http://www.mysql.com/fulltext -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL

Re: 4.0.18 restore dump file 'max_allowed_packet' error

2006-03-23 Thread SGreen
Luke Vanderfluit [EMAIL PROTECTED] wrote on 03/22/2006 08:29:02 PM: Hi. I've got mysql 4.0.18 installed on a sun X4100 running solaris. This is just a 32 bit version of mysql. I've reverted back to this version after trying mysql 5, 4.0.26 and 4.0.18 64bit. Those versions were all

newbee error (1044)

2006-03-23 Thread Shawn Sharp
I get the following error while trying to create the following database mysql mysql zm_cre­ate.sql.in ERROR 1044 (42000): Access denied for user ''@'­loc­al­host' to database 'mysql' I tried to run the following script /usr/bin/mysql_in­stall_db --user­=mysql It does not create mysql database

Re: Converting password to old format.

2006-03-23 Thread SGreen
Eugene Kosov [EMAIL PROTECTED] wrote on 03/23/2006 07:03:15 AM: Hi, everyone! I have transfer user's database and grants from one mysql server (4.1.15) to an older one (4.0.26). I don't know user's password and have only it's hash. How can I convert hashed password stored in

Freeradius and MySql

2006-03-23 Thread Atkins, Dwane P
Good morning. I am trying to install Free Radius with MySql, but I either have a login issue or a permissions issue. I have added Radius and [EMAIL PROTECTED] to database, Fedora local users and just about everywhere I can think possible. I have added permissions for radius radius local

Question about autoincrement ID

2006-03-23 Thread saf
Hi, I have a question about autoincremend id: If I have an autoincrement id set on my first column field of my table and I have the following entries: 1 3 And then I make a INSERT INTO foobar VALUES(''); , the next field would be automatically 4: 1 3 4 Is there a possibility to take a free ID

Re: Freeradius and MySql

2006-03-23 Thread SGreen
Atkins, Dwane P [EMAIL PROTECTED] wrote on 03/23/2006 10:38:57 AM: Good morning. I am trying to install Free Radius with MySql, but I either have a login issue or a permissions issue. I have added Radius and [EMAIL PROTECTED] to database, Fedora local users and just about everywhere I

Re: Question about autoincrement ID

2006-03-23 Thread SGreen
[EMAIL PROTECTED] (saf) wrote on 03/23/2006 10:50:10 AM: Hi, I have a question about autoincremend id: If I have an autoincrement id set on my first column field of my table and I have the following entries: 1 3 And then I make a INSERT INTO foobar VALUES(''); , the next field

Re: Question about autoincrement ID

2006-03-23 Thread saf
On Thu, Mar 23, 2006 at 11:04:55AM -0500, [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] (saf) wrote on 03/23/2006 10:50:10 AM: The short answer is no. The Record #2 already existed. It's current status is deleted. If you had other tables that linked their data to record #2 and you created a

Re: Question about autoincrement ID

2006-03-23 Thread Alec . Cawley
[EMAIL PROTECTED] (saf) wrote on 23/03/2006 16:10:04: On Thu, Mar 23, 2006 at 11:04:55AM -0500, [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] (saf) wrote on 03/23/2006 10:50:10 AM: The short answer is no. The Record #2 already existed. It's current status is deleted. If you had other

Re: Question about autoincrement ID

2006-03-23 Thread saf
On Thu, Mar 23, 2006 at 04:17:44PM +, [EMAIL PROTECTED] wrote: Lots of ways round this. Instead of deleting records, add a boolean deleted flag. All selects then need to add and deleted = 0. But you can find a (random) deleted row with select id from table where deleted = 1 limit 1. If

Re: Question about autoincrement ID

2006-03-23 Thread Martijn Tonies
So I must do a big SELECT and then check my self every time (for each INSERT), which IDs are free? No, you just ignore deleted IDs. What's the point? Martijn Tonies Database Workbench - development tool for MySQL, and more! Upscene Productions http://www.upscene.com My thoughts:

RE: Freeradius and MySql

2006-03-23 Thread Atkins, Dwane P
* a) Verify that you have actually GRANTED permission for the account you are trying to authenticate with SELECT user, host from mysql.user where user ='radius'; mysql SELECT user, host from mysql.user where user ='radius'; ++---+ | user | host |

Re: Question about autoincrement ID

2006-03-23 Thread SGreen
[EMAIL PROTECTED] (saf) wrote on 03/23/2006 11:10:04 AM: On Thu, Mar 23, 2006 at 11:04:55AM -0500, [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] (saf) wrote on 03/23/2006 10:50:10 AM: The short answer is no. The Record #2 already existed. It's current status is deleted. If you had other

RE: Freeradius and MySql

2006-03-23 Thread SGreen
You could try suggestion B) ;-) Shawn Atkins, Dwane P [EMAIL PROTECTED] wrote on 03/23/2006 11:25:24 AM: * a) Verify that you have actually GRANTED permission for the account you are trying to authenticate with SELECT user, host from mysql.user where user ='radius'; mysql

RE: Freeradius and MySql

2006-03-23 Thread Atkins, Dwane P
I did do a FLUSH PRIVILEGES and this still resulted in the same error. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, March 23, 2006 10:31 AM To: Atkins, Dwane P Cc: mysql@lists.mysql.com Subject: RE: Freeradius and MySql You could try

RE: Freeradius and MySql

2006-03-23 Thread SGreen
OK, make sure you are using the correct password, too. Did you remember to encrypt the password with PASSWORD() or OLD_PASSWORD() when you create the account? SELECT user, host, password FROM mysql.user WHERE user='radius'; make sure your password is hashed, if not we can help you fix that

RE: Freeradius and MySql

2006-03-23 Thread Atkins, Dwane P
I didn't encrypt and that was going to be my next questions. How do I do that? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, March 23, 2006 10:45 AM To: Atkins, Dwane P Cc: mysql@lists.mysql.com Subject: RE: Freeradius and MySql OK,

RE: Freeradius and MySql

2006-03-23 Thread Atkins, Dwane P
Shawn, Thanks. That has done the trick. It turns out that I had passwords hashed for [EMAIL PROTECTED], but not [EMAIL PROTECTED] Resetting the password and flushing the privilege has really helped. Guess what, you have done in 20 minutes what myself and other could not do in a week.

Re: newbee error (1044)

2006-03-23 Thread Frank Delatorre
Dilipkumar, Thanks much for the tipit did the job! Now we query mysql to see if the new mysql database is seen by mysql and it still only sees test: [EMAIL PROTECTED]:/usr/bin mysqlshow +---+ | Databases | +---+ | test | +---+ [EMAIL PROTECTED]:/usr/bin Here is

Re: Question about autoincrement ID

2006-03-23 Thread mysql
On Thu, 23 Mar 2006 [EMAIL PROTECTED] wrote: To: saf [EMAIL PROTECTED] From: [EMAIL PROTECTED] Subject: Re: Question about autoincrement ID One important thing to remember: You should not let UI design requirements dictate your DB design. Most developers who design the database just to

mysqld_safe and timezone settings

2006-03-23 Thread Michael Sutter
Hello everybody, I have a problem with replication of data from master to slave server. The problem is, that the master is in a other timezone than the slave and so inserts with using the now() function creates different values on master and slave. If I want to update on the master and use

Re: Unknown command '\'' during load

2006-03-23 Thread sheeri kritzer
What does line 1189 look like? -Sheeri On 3/17/06, Jack Baty [EMAIL PROTECTED] wrote: I'm trying to restore a database from a dump as part of my make-sure-this-will-restore-just-in-case process and I get the following error... ERROR at line 1189: Unknown command '\''. The only thing I've

Re: Fw: About Data types

2006-03-23 Thread sheeri kritzer
On 3/19/06, shreeseva [EMAIL PROTECTED] wrote: - Original Message - From: shreeseva To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, March 20, 2006 01:15 AM Subject: About Data types Dear friends, I am using MySQL 5.0.17 on Win XP Prof. I have created a prototype

Re: Matching of german umlauts with LIKE

2006-03-23 Thread sheeri kritzer
MySQL doesn't have anything like that. You can use the wildcard characters instead of the umlauts if you want, such as SELECT * from person where name like %bersee which would get übersee and uebersee but also a whole lot more. But doing something like SELECT * from person where name like

Re: Unknown command '\'' during load

2006-03-23 Thread Jack Baty
On 3/23/06, sheeri kritzer [EMAIL PROTECTED] wrote: What does line 1189 look like? Good question. Hard to tell, since it's the insert statement for a rather large table (25 million rows) and I have --extended-insert set, so it's all on one *really* long line. Seems like there should be a return

Re: Unknown command '\'' during load

2006-03-23 Thread SGreen
[EMAIL PROTECTED] wrote on 03/23/2006 02:20:00 PM: On 3/23/06, sheeri kritzer [EMAIL PROTECTED] wrote: What does line 1189 look like? Good question. Hard to tell, since it's the insert statement for a rather large table (25 million rows) and I have --extended-insert set, so it's all on

RE: MySQL malloc error on Solaris

2006-03-23 Thread Ubaidul Khan
Following is the configuraton of mysqld: - Excerpt from my.cnf - # The MySQL server [mysqld] user= mysql port= 4406 socket = /tmp/mysql.sock #socket = /tmp/mysql_4.0.13.sock

web assistant?

2006-03-23 Thread Bing Du
Hello, Anybody here are also familiar with SQL server 2000 Web Assistant Wizard? The wizard enables you to create queries that run against the SQL server 2000 database to push data to your web site in the form of static pages. You can choose how often the web client sees the changes in the SQL

Re: Unknown command '\'' during load

2006-03-23 Thread Jack Baty
On 3/23/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: When you generated this dump file, did you remember to use the --max_allowed_packet parameter to make sure that mysqldump didn't create any extended insert statements larger than your server wants to handle? It could be crapping out

Re: mysql for freebsd 6.0

2006-03-23 Thread Ludwig Pummer
kalin mintchev wrote: hi all... i can't see the mysql 5 version for freebsd 6.0 on the mysql developer site? am i blind or it's on purpose?!?! curious... and actually need it... thanks... /usr/ports/databases/mysql50-server/ /usr/ports/databases/mysql51-server/ I suggest you

Re: newbee error (1044)

2006-03-23 Thread Shawn Sharp
Dilipkumar, Thanks much for the tipit did the job! Now we query mysql to see if the new mysql database is seen by mysql and it still only sees test: [EMAIL PROTECTED]:/usr/bin mysqlshow +---+ | Databases | +---+ | test | +---+ [EMAIL PROTECTED]:/usr/bin Here is

auto_increment syntax

2006-03-23 Thread Eric Beversluis
Can someone illustrate the correct syntax for using auto_increment in making a table? I've studied the manual and I'm not seeing how it comes out. EG: CREATE TABLE Books ( bookID INT(5) PRIMARY KEY AUTO_INCREMENT... THEN WHAT? Thanks. EB -- MySQL General Mailing List For list archives:

Re: auto_increment syntax

2006-03-23 Thread Simon Garner
On 24/03/2006 11:06 a.m., Eric Beversluis wrote: Can someone illustrate the correct syntax for using auto_increment in making a table? I've studied the manual and I'm not seeing how it comes out. EG: CREATE TABLE Books ( bookID INT(5) PRIMARY KEY AUTO_INCREMENT... THEN WHAT? Thanks. EB

Re: Matching of german umlauts with LIKE

2006-03-23 Thread Markus Fischer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I realized this also. Martin Schwarz off list suggested to me to use REGEXP for that purpose. That means that I'm rewriting the user input übersee behind the scenes to ^(ü|ue)bersee.* which works quote well. The only gotcha is that the user may

multiple mysqld processes running

2006-03-23 Thread Tatyana Gurevich
-- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: MySQL malloc error on Solaris

2006-03-23 Thread Heikki Tuuri
Ubaidul, ok, there is nothing in my.cnf that can explain why memory runs out. What kind of query are you running when the memory runs out? Does 'top' show that the mysqld process size grows uncontrollably? If you are using the C client interface, do you use 'mysql_store_result()' or