Re: replication of temporary tables

2004-05-13 Thread Egor Egorov
Tom Cunningham [EMAIL PROTECTED] wrote: In short: what is the standard MySQL handling of temporary tables, *especially* when you've got a slave filter on to only replicate certain tables? These options apply to the temporary tables too. My replication stopped over the weekend, because

replication of temporary tables

2004-05-12 Thread Tom Cunningham
Hi, In short: what is the standard MySQL handling of temporary tables, *especially* when you've got a slave filter on to only replicate certain tables? My replication stopped over the weekend, because a query was executed which created temporary tables, then used that table to update one of

Re: Replication of temporary tables

2002-03-04 Thread Rafael Martinez
On 26 Feb 2002, Arjen Lentz wrote: On Tue, 2002-02-26 at 12:21, Peter Jennings wrote: We have been trying to solve a replication issue related to TEMPORARY tables. Here's the issue Every three hours we run a processX (C++ compiled program) on the Master mysql that goes something

Replication of temporary tables

2002-02-25 Thread Peter Jennings
We have been trying to solve a replication issue related to TEMPORARY tables. Here's the issue Every three hours we run a processX (C++ compiled program) on the Master mysql that goes something like this: CREATE TEMPORARY TABLE tempTableA INSERT INTO tempTableA INSERT INTO normalTableB

Re: Replication of temporary tables

2002-02-25 Thread Arjen Lentz
Hi Peter, On Tue, 2002-02-26 at 12:21, Peter Jennings wrote: We have been trying to solve a replication issue related to TEMPORARY tables. Here's the issue Every three hours we run a processX (C++ compiled program) on the Master mysql that goes something like this: CREATE TEMPORARY

Replication and temporary tables

2001-08-20 Thread Mike Wexler
Is there any reason why I shouldn't create temporary tables on a slave server? The tables only last until the client closes its connection, they aren't visible to other clients. I don't do any INSERT INTO permanentTable SELECT ... FROM temporaryTable

Re: Replication and temporary tables

2001-08-20 Thread Jeremy Zawodny
On Mon, Aug 20, 2001 at 02:04:09PM -0500, Mike Wexler wrote: Is there any reason why I shouldn't create temporary tables on a slave server? The tables only last until the client closes its connection, they aren't visible to other clients. I don't do any INSERT INTO permanentTable