I want to create a temporary merge table:

CREATE TABLE 42_t1 (a INT AUTO_INCREMENT PRIMARY KEY, message CHAR(20))
CREATE TABLE 42_t2 (a INT AUTO_INCREMENT PRIMARY KEY, message CHAR(20))

CREATE temporary TABLE 42_merge_temp (a INT NOT NULL, message CHAR(20),
KEY(a)) TYPE=MERGE UNION=(42_t1,42_t2)

When I wanted to create this table I got the following error :
ERROR 1017: Can't find file: '#sql7d58_1961_0.MRG' (errno: 2)

The common temporary table is works good, so the common merge table works
good. But the temporary merge table doesn't works.

How can I create a temporary merge table?
-------------------------------------

Hi

Lackó

mailto:[EMAIL PROTECTED]


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to