Re: Auto loading a table

2005-03-15 Thread Gleb Paharenko
469 228 2183 > > > -Original Message- > From: Michael Stassen [mailto:[EMAIL PROTECTED] > Sent: Monday, March 14, 2005 8:28 AM > To: [EMAIL PROTECTED] > Cc: Gleb Paharenko; mysql@lists.mysql.com > Subject: Re: Auto loading a table > > > [EMAIL P

RE: Auto loading a table

2005-03-14 Thread gunmuse
respectful 4 days. Thanks Donny Lairson President 29 GunMuse Lane P.O. box 166 Lakewood NM 88254 http://www.gunmuse.com 469 228 2183 -Original Message- From: sol beach [mailto:[EMAIL PROTECTED] Sent: Sunday, March 13, 2005 3:11 PM To: [EMAIL PROTECTED] Subject: Re: Auto loading a table With

RE: Auto loading a table

2005-03-14 Thread gunmuse
:[EMAIL PROTECTED] Sent: Monday, March 14, 2005 8:28 AM To: [EMAIL PROTECTED] Cc: Gleb Paharenko; mysql@lists.mysql.com Subject: Re: Auto loading a table [EMAIL PROTECTED] wrote: > [Donny Lairson] Quick bump I never got an answer > > I have a table fsearch_temp I use it as a memory

Re: Auto loading a table

2005-03-14 Thread Michael Stassen
[EMAIL PROTECTED] wrote: > [Donny Lairson] Quick bump I never got an answer > > I have a table fsearch_temp I use it as a memory table to keep things > light and fast but after a restart I want to repopulate some data > automatically. So I thought I just said load from TEST2 which would by a > m

Re: Auto loading a table

2005-03-14 Thread Gleb Paharenko
Hello. >) ENGINE = MEMORY LOAD FROM TEST2 DEFAULT CHARSET = utf8 AUTO_INCREMENT =0 You should use select statement, not LOAD. For example: CREATE TABLE . SELECT * FROM TEST2; And table options like DEFAULT CHARSET you should put before select statement. See: http://dev.mysql.com/

RE: Auto loading a table

2005-03-13 Thread gunmuse
[Donny Lairson] Quick bump I never got an answer I have a table fsearch_temp I use it as a memory table to keep things light and fast but after a restart I want to repopulate some data automatically. So I thought I just said load from TEST2 which would by a myisam table containing the hardba