Re: locking issues

2005-11-30 Thread Gleb Paharenko
Hello. Have a look here: http://dev.mysql.com/doc/refman/5.0/en/converting-tables-to-innodb.html http://dev.mysql.com/doc/refman/5.0/en/innodb-restrictions.html PaginaDeSpud wrote: > i'm using myisam. Is there any tip i should know before to migrate this > table to innodb ? > > Th

Re: locking issues

2005-11-29 Thread PaginaDeSpud
i'm using myisam. Is there any tip i should know before to migrate this table to innodb ? Thanks ! - Original Message - From: "Gleb Paharenko" <[EMAIL PROTECTED]> To: Sent: Tuesday, November 29, 2005 12:35 PM Subject: Re: locking issues Hello. What table

Re: locking issues

2005-11-29 Thread Gleb Paharenko
Hello. What table engine do you use for your tables? InnoDB usually is the best choice if you have lots of concurrent updates and inserts. "PaginaDeSpud" <[EMAIL PROTECTED]> wrote: > I'm getting locking issues due to tables very often updated/insert. > >

locking issues

2005-11-28 Thread PaginaDeSpud
I'm getting locking issues due to tables very often updated/insert. It's splitted into two tables, one has the more updated data and the another has the more static data. I'm using queries with JOIN, would it be better for performance to use two queries instead of using JOIN?

InnoDB locking issues

2005-02-02 Thread Dobromir Velev
Hi, I'm running quite a large database - mostly inserts (4-5 million rows a day) and an occasional select to generate some report based on the inserted data which works very well. Once a month I need to generate a larger number of reports. The SELECT queries are optimized quite well but some of

innoDB alter table and locking issues

2004-09-22 Thread Jeff Kolber
Hello List, Recently I needed to alter a large innodb table (~200k rows) to add a column on a live server. The alter table ran fine on the development server with close to the same number of rows in the table so I didn't anticipate too much trouble. The list archive and the documentation indicate

Re: locking issues

2004-03-18 Thread Hans van Dalen
Excuse me for late response. When I do it from the mysql prompt it works fine but trough the API (I use DAC for MySQL from microolap, maybe the bug is in there software!!) it doesn't work fine. I have try it on several versions: 4.1.1, 5.0.0 and 4.0.0. Thank you for your help. If you think it

Re: locking issues

2004-03-08 Thread Egor Egorov
Hans van Dalen <[EMAIL PROTECTED]> wrote: > > A question about locking. In my code (delphi but that doesn't much matter) > I fire ad-hoc queries (select). Before the query i fire a locking query > (read) for that particular tables. Something like this: > > lock tables tab1 a read, tab2 b read >

locking issues

2004-03-05 Thread Hans van Dalen
Hi Group, A question about locking. In my code (delphi but that doesn't much matter) I fire ad-hoc queries (select). Before the query i fire a locking query (read) for that particular tables. Something like this: lock tables tab1 a read, tab2 b read (execute) select * from tab1 a, tab2 b where.

Re: More locking issues

2002-12-12 Thread Anderson Pereira Ataides
[EMAIL PROTECTED] > - Original Message - > From: "Jeff Snoxell" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, December 12, 2002 6:57 PM > Subject: More locking issues > > > Hi, > > > > I'm new to MySQL. I see

Re: More locking issues

2002-12-12 Thread Gelu Gogancea
ssage - From: "Michael T. Babcock" <[EMAIL PROTECTED]> To: "Gelu Gogancea" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; "Jeff Snoxell" <[EMAIL PROTECTED]> Sent: Thursday, December 12, 2002 8:44 PM Subject: Re: More locking issues > Gelu Go

Re: More locking issues

2002-12-12 Thread Michael T. Babcock
Gelu Gogancea wrote: If you have more than one user connected to the database which handled the same tables, you need to use LOCK/UNLOCK tables. MySQL daemon don't lock tables or records if you don't require this. Can I ask if this is in fact accurate? As I understand it, MySQL does a fairl

Re: More locking issues

2002-12-12 Thread Gelu Gogancea
RE COMPANY Permanent e-mail address : [EMAIL PROTECTED] [EMAIL PROTECTED] - Original Message - From: "Jeff Snoxell" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 12, 2002 6:57 PM Subject: More locking issues &

More locking issues

2002-12-12 Thread Jeff Snoxell
Hi, I'm new to MySQL. I see you all talking about locking databases etc... but isn't that the point of having a database server? So you don't have to worry about record locks? I'm designing the backend for a popular site where a user's visit will result in multiple read/write operations on a d

re: locking issues

2002-12-12 Thread Egor Egorov
On Thursday 12 December 2002 14:06, Greg_Cope at sandwich dot pfizer dot com wrote: > I may be confused here but it would appear that when you issue a LOCK > TABLES tbl_name { READ|WRITE }; You cannot read from another unlocked table > in the same connection eg: > > mysql> LOCK TABLES users read

locking issues

2002-12-12 Thread Greg_Cope
Hi All, I may be confused here but it would appear that when you issue a LOCK TABLES tbl_name { READ|WRITE }; You cannot read from another unlocked table in the same connection eg: mysql> LOCK TABLES users read; Query OK, 0 rows affected (0.00 sec) mysql> select * from Logger limit 1; ERROR 110

Re: locking issues

2002-12-09 Thread Paul DuBois
At 19:52 + 12/9/02, [EMAIL PROTECTED] wrote: Hi All, I may be confused here but it would appear that when you issue a LOCK TABLES tbl_name { READ|WRITE }; You cannot read from another unlocked table in the same connection eg: You're supposed to lock all the tables that you'll need until you

locking issues

2002-12-09 Thread Greg_Cope
Hi All, I may be confused here but it would appear that when you issue a LOCK TABLES tbl_name { READ|WRITE }; You cannot read from another unlocked table in the same connection eg: mysql> LOCK TABLES users read; Query OK, 0 rows affected (0.00 sec) mysql> select * from Logger limit 1; ERROR 110

RE: my sql database and locking issues(URGENT)

2001-05-21 Thread Warren van der Merwe
> 2. > The following is the extract from mysql documentation: > " > In MySQL Version 3.23.7 and above, you can insert rows > into MyISAM tables at the same time other threads are > reading from the table. Note that currently this only > works if there are no holes after deleted rows in the > table

my sql database and locking issues(URGENT)

2001-05-21 Thread VVM Ravikumar Sarma Chengalvala
Hi, 1. Does mysql inherently implement locking implicitly? 2. The following is the extract from mysql documentation: " In MySQL Version 3.23.7 and above, you can insert rows into MyISAM tables at the same time other threads are reading from the table. Note that currently this only works if there a