re: re: re: re: Multi-Table Updates

2002-12-02 Thread Egor Egorov
ajitdixit, Wednesday, November 27, 2002, 7:44:55 PM, you wrote: aasdcdi I had earlier downloaded mysql-4.1.1 development branch source code and had aasdcdi noticed that This bug is also present in 4.1.1 development tree source code Merge of 4.0.6 changes into 4.1 was made several days ago.

re: re: re: Multi-Table Updates

2002-11-27 Thread Egor Egorov
ajitdixit, Wednesday, November 27, 2002, 7:04:51 AM, you wrote: aasdcdi Result for Show Grants is as under aasdcdi SQL result aasdcdi Host: localhost aasdcdi SQL-query: SHOW GRANTS FOR aldixit@localhost; aasdcdi Grants for aldixit@localhost aasdcdi GRANT CREATE TEMPORARY TABLES, LOCK TABLES

re: re: re: Multi-Table Updates

2002-11-27 Thread ajitdixit
Hi , Thanks for reply I had earlier downloaded mysql-4.1.1 development branch source code and had noticed that This bug is also present in 4.1.1 development tree source code I had downloaded mysql-4.0 development source code as mentioned in mysql documentation but could not compile it as innodb

re: Multi-Table Updates

2002-11-26 Thread Egor Egorov
ajitdixit, Tuesday, November 26, 2002, 10:33:04 AM, you wrote: aasdcdi I am using mysql-4.0.5a-beta on Linux Redhat 7.3 server with php-4.3.0RC1 aasdcdi When I connect and execute my quiries as root user my query of multi-table aasdcdi update works fine aasdcdi update Stockists , areas set

re: Multi-Table Updates

2002-11-26 Thread ajitdixit
I have update priviledge on all the tables mentioned in the query I am able to update one table at time with the same connection There is some more requirement or bug in mysql for multi-table update Regards Ajit - This mail sent through

re: re: Multi-Table Updates

2002-11-26 Thread Egor Egorov
ajitdixit, Tuesday, November 26, 2002, 4:18:42 PM, you wrote: aasdcdi I have update priviledge on all the tables mentioned in the query aasdcdi I am able to update one table at time with the same connection aasdcdi There is some more requirement or bug in mysql for multi-table update Show me

re: re: Multi-Table Updates

2002-11-26 Thread ajitdixit
Hi , Result for Show Grants is as under SQL result Host: localhost SQL-query: SHOW GRANTS FOR aldixit@localhost; Grants for aldixit@localhost GRANT CREATE TEMPORARY TABLES, LOCK TABLES ON *.* TO 'aldixit'@'localhost' IDENTIFIED BY PASSWORD 'xx' GRANT SELECT ON `mysql`.* TO

re: Multi-Table Updates

2002-10-14 Thread Egor Egorov
Fraser, Monday, October 14, 2002, 10:50:35 AM, you wrote: FS Does anyone have the syntax for multi-table updates? FS The Online Mysql manual (for version 4.0.5) only has: FS UPDATE [LOW_PRIORITY] [IGNORE] tbl_name FS SET col_name1=expr1 [, col_name2=expr2, ...] FS [WHERE

RE: Multi-table updates in MySQL

2002-09-18 Thread Maarten Roosen
Howdy, Multiple table updates are not available in MySQL. I had the same problem and it was driving me crazy... I suggest you try combining your nice query with some PHP code, did work for me! :) good luck, Maarten Roosen -Original Message- From: Phil Kernick [mailto:[EMAIL

Re: Multi-table updates

2002-01-02 Thread Sinisa Milivojevic
Mike Frederick writes: Hello: I am testing a new product with MySQL, and so far have been very pleased, especially with the performance. One enhancement that I was looking forward to in 4.0 is described below: Updates that run over multiple tables is harder to do in MySQL. This will,