UPDATE LOW_PRIORITY

2006-11-16 Thread Marcus Bointon
Given: Client A: SELECT * FROM mytable WHERE status = 1; Client B: UPDATE LOW_PRIORITY mytable SET status = 2 WHERE id = $n How long will A prevent B from writing? I'm concerned that clients like A will prevent B from ever writing. In practice, how long does a low priority write typi

UPDATE LOW_PRIORITY

2002-11-25 Thread Jacob Friis Larsen
If I use UPDATE LOW_PRIORITY, will the client then have to wait for the update query to finish or not? Regards, Jacob - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com

re: SV: UPDATE LOW_PRIORITY database

2002-11-25 Thread Egor Egorov
Jacob, Monday, November 25, 2002, 12:03:14 PM, you wrote: > If I use UPDATE LOW_PRIORITY, will the client then have to > wait for the > update to finish or not? Yes, it will wait. -- For technical support contracts, goto https://order.mysql.com/?ref=ensita This email is spo

SV: UPDATE LOW_PRIORITY database

2002-11-25 Thread Jacob Friis Larsen
Venlig hilsen Jacob Friis Larsen [ JFL WebCom | www.webcom.dk | +45 7027 0767 ] > -Oprindelig meddelelse- > Fra: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sendt: 25. november 2002 11:02 > Til: Jacob Friis Larsen > Emne: Re: UPDATE LOW_PRIORITY database >

Re: UPDATE LOW_PRIORITY

2002-07-29 Thread Victoria Reznichenko
Jacob, Monday, July 29, 2002, 12:19:14 PM, you wrote: JFL> MySQL question: JFL> If I use UPDATE LOW_PRIORITY will the client then have to wait for the JFL> update to finish or is UPDATE LOW_PRIORITY the same as INSERT DELAYED ? It's not the same as INSERT DELAYED. Client wil

UPDATE LOW_PRIORITY

2002-07-29 Thread Jacob Friis Larsen
MySQL question: If I use UPDATE LOW_PRIORITY will the client then have to wait for the update to finish or is UPDATE LOW_PRIORITY the same as INSERT DELAYED ? - Before posting, please check: http://www.mysql.com/manual.php