Re: Performance of MEMORY/HEAP-tables compared to mysql-cluster?

2006-02-06 Thread sheeri kritzer
- a hot backup tool for InnoDB which also backs up MyISAM tables http://www.innodb.com/order.php - Original Message - From: Jan Kirchhoff [EMAIL PROTECTED] Newsgroups: mailing.database.myodbc Sent: Tuesday, January 31, 2006 1:09 PM Subject: Re: Performance of MEMORY/HEAP-tables

Re: Performance of MEMORY/HEAP-tables compared to mysql-cluster?

2006-02-06 Thread Jan Kirchhoff
I just managed to get two identical test-servers running, both being slaves of my production system replicating a few databases including two of the heavy-use tables. One server uses heap-tables, on the other one i changed the table-format to innodb. I've had some problems

Re: Performance of MEMORY/HEAP-tables compared to mysql-cluster?

2006-02-05 Thread Heikki Tuuri
tables http://www.innodb.com/order.php - Original Message - From: Jan Kirchhoff [EMAIL PROTECTED] Newsgroups: mailing.database.myodbc Sent: Tuesday, January 31, 2006 1:09 PM Subject: Re: Performance of MEMORY/HEAP-tables compared to mysql-cluster? Hi, I am currently experiencing

Re: Performance of MEMORY/HEAP-tables compared to mysql-cluster?

2006-01-31 Thread Jan Kirchhoff
Hi, I am currently experiencing trouble getting my new mysql 5-servers running as slaves on my old 4.1.13-master. Looks like I'll have to dump the whole 30GB-database and import it on the new servers :( At this moment I do no see any oppurtunity to do this before the weekend since the longest

Performance of MEMORY/HEAP-tables compared to mysql-cluster?

2006-01-27 Thread Jan Kirchhoff
Hi, Did anybody ever benchmark heap-tables against a cluster? I have a table with 900.000 rows (40 fields, CHARs, INTs and DOUBLEs, Avg_row_length=294) that gets around 600 updates/sec (grouped in about 12 extended inserts a minute inserting/updating 3000 rows each). This is currently a HEAP

Re: Performance of MEMORY/HEAP-tables compared to mysql-cluster?

2006-01-27 Thread Kishore Jalleda
may be a good option, but you can also use replication and have multiple slaves and distribute the load, if you have the resources to do that .. Kishore Jalleda On 1/27/06, Jan Kirchhoff [EMAIL PROTECTED] wrote: Hi, Did anybody ever benchmark heap-tables against a cluster? I have a table

Re: Performance of MEMORY/HEAP-tables compared to mysql-cluster?

2006-01-27 Thread sheeri kritzer
we've set it up so everything is in memory anyway. Perhaps a similar setup would help for you? Sincerely, Sheeri Kritzer On 1/27/06, Jan Kirchhoff [EMAIL PROTECTED] wrote: Hi, Did anybody ever benchmark heap-tables against a cluster? I have a table with 900.000 rows (40 fields, CHARs, INTs

Re: Performance of MEMORY/HEAP-tables compared to mysql-cluster?

2006-01-27 Thread Jan Kirchhoff
sheeri kritzer schrieb: Why are you using a heap table? We started out with a myisam-table years ago when the table was much smaller und less frequently updated. We tried innodb about 2 or 3 years ago and couldn't get a satisfying result. We then changed it to HEAP and everything was fine.

RE: Performance of MEMORY/HEAP-tables compared to mysql-cluster?

2006-01-27 Thread Jimmy Guerrero
: mysql@lists.mysql.com Subject: Re: Performance of MEMORY/HEAP-tables compared to mysql-cluster? Why are you using a heap table? My company has tables with much more information than that, that get updated much more frequently. We use InnoDB tables, with very large buffer sizes and have tweaked

Re: Performance of MEMORY/HEAP-tables compared to mysql-cluster?

2006-01-27 Thread sheeri kritzer
No problem: Firstly, how are you measuring your updates on a single table? I took a few binary logs, grepped out for things that changed the table, counting the lines (using wc) and then dividing by the # of seconds the binary logs covered. The average for one table was 108 updates per second.

Re: Performance of MEMORY/HEAP-tables compared to mysql-cluster?

2006-01-27 Thread Jan Kirchhoff
sheeri kritzer schrieb: No problem: Firstly, how are you measuring your updates on a single table? I took a few binary logs, grepped out for things that changed the table, counting the lines (using wc) and then dividing by the # of seconds the binary logs covered. The average for one table

Locks on Heap tables

2005-07-07 Thread Hannes Rohde
are experiencing long lasting table locks due to deletes or updates on the session table. I know that heap tables only support table wide locking, but shouldn't those locks be gone quite fast? I have already checked the obvious reasons for this kind of behaviour like swapping but I couldn't find anything. Even

Re: Locks on Heap tables

2005-07-07 Thread Gleb Paharenko
as for instance phpbb does.=20 Lately we are experiencing long lasting table locks due to deletes or updates on the session table. I know that heap tables only support table wide locking, but shouldn't those locks be gone quite fast? I have = already checked the obvious reasons

AW: Locks on Heap tables

2005-07-07 Thread Hannes Rohde
. Juli 2005 10:35 An: mysql@lists.mysql.com Betreff: Re: Locks on Heap tables Hello. Are you sure that your server doesn't swap? Providing output of 'SHOW STATUS', 'SHOW VARIABLES' and your table definition could give more information for suggestions. Also, if you have a hash index on a MEMORY table

Re: very large HEAP-tables in 4.1.3

2004-08-07 Thread Jan Kirchhoff
I'll just give all options a try on our development-system afterwards. I guess if something works with 2GB of RAM, it should also work with 6GB (Opteron). Or is mysql's behaviour changing with very big heap-tables or key_buffers? Jan -- MySQL General Mailing List For list archives: http

very large HEAP-tables in 4.1.3

2004-08-06 Thread Jan Kirchhoff
I was just wondering if anybody has been using very large HEAP-tables and if there are ways to have mysql use the memory more efficient: (I have no experience with all heap-tables but using them as temporary tables...) I just started testing with 2 heap-tables on a development-system (p4

Re: very large HEAP-tables in 4.1.3

2004-08-06 Thread Philippe Poelvoorde
Maybe you should try to normalize your table, 'symbol' could have its own table, that would reduce data and index. And then try to reduce the size of your rows, bidsize and asksize should be in integer I think. Maybe 'float' would be enough. What represents the 'quelle' column ? Is kurszeit

Re: very large HEAP-tables in 4.1.3

2004-08-06 Thread Jan Kirchhoff
Philippe Poelvoorde wrote: Maybe you should try to normalize your table, 'symbol' could have its own table, that would reduce data and index. And then try to reduce the size of your rows, bidsize and asksize should be in integer I think. Maybe 'float' would be enough. What represents the 'quelle'

Re: very large HEAP-tables in 4.1.3

2004-08-06 Thread Philippe Poelvoorde
Hi, I changed a few columns, bidsize and asksize are integer now, and i changed ticknumber to smallint unsigned. At first I used the ticknumbers by the feedserver, now I count up to 65,000 and then reset the counter back to 0. I need that additional column to handle multiple ticks within one

Re: very large HEAP-tables in 4.1.3

2004-08-06 Thread Jan Kirchhoff
Philippe Poelvoorde wrote: Hi, I changed a few columns, bidsize and asksize are integer now, and i changed ticknumber to smallint unsigned. At first I used the ticknumbers by the feedserver, now I count up to 65,000 and then reset the counter back to 0. I need that additional column to handle

Re: very large HEAP-tables in 4.1.3

2004-08-06 Thread Harrison
Hi, A few questions for you. On Friday, August 6, 2004, at 06:17 AM, Jan Kirchhoff wrote: I was just wondering if anybody has been using very large HEAP-tables and if there are ways to have mysql use the memory more efficient: (I have no experience with all heap-tables but using them

Re: HEAP tables vs MYISAM on ramdisk

2004-02-24 Thread Sasha Pachev
Mark Maunder wrote: The table I'm using is non-critical data, so it's not really an issue for me. But I was browsing through the mysql manual looking for a way to rebuild an MYI file from the .frm and MYD file (is there a way?) when I came across this: There is: REPAIR TABLE t1 USE_FRM -- Sasha

Re: HEAP tables vs MYISAM on ramdisk

2004-02-23 Thread Eric B.
:[EMAIL PROTECTED] Since HEAP tables don't support fulltext indexes, is moving MYISAM tables to ramdisk an acceptable workaround? On Sat, 2004-02-21 at 18:35, Mark Maunder wrote: I've noticed a 4 times insert speed improvement by moving the MYI index file of a myisam table to a ramdisk

Re: HEAP tables vs MYISAM on ramdisk

2004-02-23 Thread Mark Maunder
disks? Are you not risking major data loss if ever you have a power failure or PC failure? Thanks for the info! Eric Mark Maunder [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Since HEAP tables don't support fulltext indexes, is moving MYISAM tables to ramdisk an acceptable

Re: HEAP tables vs MYISAM on ramdisk

2004-02-23 Thread Eric B.
or PC failure? Thanks for the info! Eric Mark Maunder [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Since HEAP tables don't support fulltext indexes, is moving MYISAM tables to ramdisk an acceptable workaround? On Sat, 2004-02-21 at 18:35, Mark Maunder wrote

Re: HEAP tables vs MYISAM on ramdisk

2004-02-23 Thread Mark Maunder
a power failure or PC failure? Thanks for the info! Eric Mark Maunder [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Since HEAP tables don't support fulltext indexes, is moving MYISAM tables to ramdisk an acceptable workaround? On Sat, 2004-02-21 at 18:35

Re: HEAP tables vs MYISAM on ramdisk

2004-02-23 Thread Matt W
Hi Mark, - Original Message - From: Mark Maunder Sent: Monday, February 23, 2004 4:17 PM Subject: Re: HEAP tables vs MYISAM on ramdisk 411 is packed with features I'm dying to have on my production server, but I had it on my dev box, and I got some table corruption which, admittedly

HEAP tables vs MYISAM on ramdisk

2004-02-22 Thread Mark Maunder
Since HEAP tables don't support fulltext indexes, is moving MYISAM tables to ramdisk an acceptable workaround? On Sat, 2004-02-21 at 18:35, Mark Maunder wrote: I've noticed a 4 times insert speed improvement by moving the MYI index file of a myisam table to a ramdisk. The MYD file is still

Re: Replication with HEAP tables slave insert error

2004-02-03 Thread Egor Egorov
getting updated. The table type again was HEAP. Check data on slave. Does this value really exist? Probably your master server was restarted that was the reason why data in your HEAP tables could be lost on the master, but not on the slave. -- For technical support contracts, goto https

Re: Replication with HEAP tables slave insert error

2004-02-02 Thread Egor Egorov
Vinod Panicker [EMAIL PROTECTED] wrote: Hi, Had a query regarding replication with HEAP tables. It seems like I cannot use LOAD DATA FROM MASTER to update the stopped slave with data from the master since it apparently works only for MyISAM tables. Any other way of updating the slave

RE: Replication with HEAP tables slave insert error

2004-02-02 Thread Vinod Panicker
Hi Egor, Thanks for the reply. My responses below - Vinod Panicker [EMAIL PROTECTED] wrote: Hi, Had a query regarding replication with HEAP tables. It seems like I cannot use LOAD DATA FROM MASTER to update the stopped slave with data from the master since it apparently works only

Replication with HEAP tables slave insert error

2004-02-01 Thread Vinod Panicker
Hi, Had a query regarding replication with HEAP tables. It seems like I cannot use LOAD DATA FROM MASTER to update the stopped slave with data from the master since it apparently works only for MyISAM tables. Any other way of updating the slave with a snapshot of the data? Since a HEAP table

The 2GB Memory Limit, AWE, and HEAP tables

2003-07-02 Thread Michael Galpin
tables with embedded MySQL on Win2K. Will this be implemented on MySQL on Linux? Would this affect HEAP tables? If it will be implemented, is there a timetable? Will it require something to be done to the Linux kernel? Thanks, Michael

Re: Questions about HEAP tables

2003-03-07 Thread KH Chiu
As you write your code in somewhat pseduo code format, I can't comment on the exact syntax. You may use PERL-DBI-DBD:MySQL to implement your code. However, it may some problems with your logic. First of all, if the quote_for_family table already exist, the create table sql do nothing and it

heap tables keep on disappearing!

2003-03-06 Thread Steve Quezadas
I have a mysql table that I refer to a lot and needs to be quick. I set it as a HEAP table because of the speed (and HEAP tales ARE fast. zip baaannn). Anyway, whenever I restart the server the contents of the heap tables disappear! What the hell? But I read the manual and it seems

Re: heap tables keep on disappearing!

2003-03-06 Thread Jerry
Store it in another table and have a start up script that creates a heap once the server is started ? Jerry - Original Message - From: Steve Quezadas [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 06, 2003 7:41 PM Subject: heap tables keep on disappearing! I have

Re: heap tables keep on disappearing!

2003-03-06 Thread Alec . Cawley
Subject: heap tables keep on disappearing! I have a mysql table that I refer to a lot and needs to be quick. I set it as a HEAP table because of the speed (and HEAP tales ARE fast. zip baaannn). Anyway, whenever I restart the server the contents of the heap tables disappear! What

Re: heap tables keep on disappearing!

2003-03-06 Thread Paul DuBois
At 11:41 -0800 3/6/03, Steve Quezadas wrote: I have a mysql table that I refer to a lot and needs to be quick. I set it as a HEAP table because of the speed (and HEAP tales ARE fast. zip baaannn). Anyway, whenever I restart the server the contents of the heap tables disappear! What

Questions about HEAP tables

2003-03-06 Thread Justin Cook
Hi All, After googling around and checking out the archives I still haven't found the exact answer to my following question: First off the goal is to give a family multiple quotes from different companies for insurance based on several factors: age, length of coverage and coverage limits. All

non-unique indicies in HEAP tables handled incorrectly.

2003-01-09 Thread akrowne
indicies in HEAP tables handled incorrectly. Severity: critical Priority: high Category: mysql Class: sw-bug Release: mysql-4.0.4-beta (Official MySQL RPM) Environment: System: Linux shaun 2.4.18 #1 Tue Dec 3 05:32:59 EST 2002 i686 unknown Architecture: i686 Some

Re: non-unique indicies in HEAP tables handled incorrectly.

2003-01-09 Thread Jocelyn Fournier
Hi, I just want to confirm MySQL 4.0.8 seems to be broken too. However MySQL 4.1 is working fine with this testcase. Regards, Jocelyn - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 09, 2003 6:32 AM Subject: non-unique indicies in HEAP tables

Re: bug submitted (non-unique indicies in heap tables do not work correctly)

2003-01-09 Thread Aaron Krowne
Cute =) (MySQL sql query queries smallint =) Aaron Krowne On Thu, Jan 09, 2003 at 04:36:12PM +0100, [EMAIL PROTECTED] wrote: Your message cannot be posted because it appears to be either spam or simply off topic to our filter. To bypass the filter you must include one of the following

How to calculete used memmory when using heap tables in Mysql

2002-11-19 Thread Veselin Iordanov
Hello , I need help with heap tables and calculating memory usage. I checked in the Manual and found a formula, but I need help deciphering it ;) The memory needed for one row in a HEAP table is: SUM_OVER_ALL_KEYS(max_length_of_key + sizeof(char*) * 2) + ALIGN(length_of_row+1, sizeof(char

Re: How to calculete used memmory when using heap tables in Mysql

2002-11-19 Thread Benjamin Pflugmann
Hi. On Mon 2002-11-18 at 17:05:23 -0800, [EMAIL PROTECTED] wrote: Hello , I need help with heap tables and calculating memory usage. I checked in the Manual and found a formula, but I need help deciphering it ;) The memory needed for one row in a HEAP table is: sizeof(char*) is 4

Re: Question about HEAP tables

2002-09-30 Thread MySQL
From: [EMAIL PROTECTED] Date: Tue, 24 Sep 2002 13:41:23 +0800 (WST) I've got a problem with HEAP tables (undoubtedly the way that I'm using them). I'm running MySQL v.3.23.51 under Debian Linux with a 2.4.17 kernel. If anyone can help clear some of the fog, I'd

Question about HEAP tables

2002-09-23 Thread hooker
Hi, I've got a problem with HEAP tables (undoubtedly the way that I'm using them). I'm running MySQL v.3.23.51 under Debian Linux with a 2.4.17 kernel. I've got a perl script which creates a HELP table and controls the maximum size via the 'max_rows=' option to 'create table'. When the script

Re: Re[2]: heap tables

2002-06-18 Thread Sinisa Milivojevic
Victoria Reznichenko writes: Hi! SM Victoria Reznichenko writes: I have a question about heap tables :) Why does MySQL allow to insert more rows in the table than is specified in MAX_ROWS ? SM Send a test case ... mysql create table hp( - id int primary key)TYPE=HEAP

HEAP tables

2002-06-16 Thread Aborla.net - webmaster
Hello everybody, I have two questions: 1) If I create a table with MAX_ROWS=10 and I insert 10 records. Then I insert more 3 records. Does mysql delete older records and insert new ones?? 2) I created a table using this: CREATE TABLE a (pa VARCHAR (255) NOT NULL, pi VARCHAR (255), PRIMARY KEY

HEAP TABLES SUDDENLY DISAPPEARS****VERY URGENT**

2002-03-20 Thread Ramaraju.R.V
Hi, Application uses Jboss server with mysql backend. IMDB tables (Heap tables) are created by the app. Things work on fine. Suddenly we miss Heap tables. We are not able to reproduce this at any particular event. It happens randomly. We could not make out the reason for this. We set

Re: HEAP TABLES SUDDENLY DISAPPEARS****VERY URGENT**

2002-03-20 Thread Paul DuBois
At 10:15 -0500 3/20/02, Ramaraju.R.V wrote: Hi, Application uses Jboss server with mysql backend. IMDB tables (Heap tables) are created by the app. Things work on fine. Suddenly we miss Heap tables. We are not able to reproduce this at any particular event. Is someone restarting the server

Re: HEAP Tables Inherit Index?

2002-03-07 Thread ds
Hi, On Wed, 2002-03-06 at 15:50, Scalper wrote: If I create a temporary heap table from a select statement, does the new table also inherit the indexes (indices?) from the original table. Or will I think that every CREATE [...] TABLE [...] SELECT does not inherit any indexes (doesn't

heap tables and slow index query

2002-02-27 Thread Aaron J Mackey
server version: 3.23.47 mysql create table myhits ( - libid int unsigned not null, - begin bigint unsigned not null, - end bigint unsigned not null, - index(libid), - index(begin), - index(end) - ) type = heap; Query OK, 0 rows affected (0.00 sec) [ insert statement

Re: table type comparison (poor SELECT performance with HEAP tables ?)

2002-02-17 Thread Jeremy Zawodny
should not limit performance) and lots of very simple operations. I have the following observation from it : INSERTs : HEAP tables are incredibly faster than everything else. As you'd expect. Then come MYISAM tables (10 to 50 times slower than HEAP), and then the transactional tables (BDB

Re: table type comparison (poor SELECT performance with HEAP tables ?)

2002-02-17 Thread Antoine
Hi, At first thanks for the answer. I was wondering if my mail was precise enough. Your results could have a lot to do with the fact that HEAP tables used hashed indexes rather than the B-Tree indexes of MyISAM. The set No, I've really used queries that take advantage of the hash indexes

table type comparison (poor SELECT performance with HEAP tables ?)

2002-02-15 Thread Antoine
have the following observation from it : - INSERTs : HEAP tables are incredibly faster than everything else. Then come MYISAM tables (10 to 50 times slower than HEAP), and then the transactional tables (BDB and InnoDB). However the INSERTs were not contained in a single transaction, so this may

Re: Heap Tables

2001-12-14 Thread Benjamin Pflugmann
kinds of temporary tables that can be used? temporary tables are a special table property, which several table types can have (ISAM, MyISAM, HEAP). HEAP tables reside purely in memory (as long as the server runs or they are explicitly deleted), whereas TEMPORARY table are only visible

RE: Heap Tables

2001-12-13 Thread Boaz Yahav
is it possible to insert many rows into a heap table? I'm not sure how from the documentation. If not, are there other kinds of temporary tables that can be used? I need to enter 100 rows into a table and then select them with order by. do I need to create a table, select the records I want,

Replication problem (with temporary heap tables ?)

2001-10-31 Thread Dr. Frank Ullrich
Hi, MySQL V. 3.23.33 with binary log and replication turned on: this is what i do on the master (in a perl script): === create temporary table TEMP_HITS ( ... ) TYPE=HEAP; Insert several things into TEMP_HITS; Select from TEMP_HITS and

Re: Replication problem (with temporary heap tables ?)

2001-10-31 Thread Rafal Jank
= 45219 011031 2:17:41 Slave: connected to master '[EMAIL PROTECTED]:3306', replication started in log '3306_bin_log.001' at position 71445219 ERROR: 1051 Unknown table 't' 011031 3:09:04 Slave: error running query 'drop table MY_SHOP.t' 011031 3:09:04 Error

Heap tables replication

2001-10-01 Thread Peter Zaitsev
Hello mysql, Could anyone tell me if heap tables are cyrrently working with replication. As I remember some time ago you might get problems then server restarts (so empty it's heap tables) there fore slave does not and so it gets dublicate key errors on inserts to this tables, which

Re: Heap tables replication

2001-10-01 Thread Benjamin Pflugmann
Hi. On Mon, Oct 01, 2001 at 04:53:33PM +0400, [EMAIL PROTECTED] wrote: Hello mysql, Could anyone tell me if heap tables are cyrrently working with replication. As I remember some time ago you might get problems then server restarts (so empty it's heap tables) there fore slave

Syntax errors when creating HEAP tables and using IF NOT EXISTS

2001-09-16 Thread Robert Peters
We developed a site using PHP and MYSQL on an online shared server. We used HEAP tables extensively and everything worked fine. When we moved the site to our dedicated server prior to launching the site, the queries that should create the HEAP tables return syntax errors (when submitting

Syntax errors when creating HEAP tables and using IF NOT EXISTS

2001-09-16 Thread Robert Peters
We developed a site using PHP and MYSQL on an online shared server. We used HEAP tables extensively and everything worked fine. When we moved the site to our dedicated server prior to launching the site, the queries that should create the HEAP tables return syntax errors (when submitting

Re: auto_increment vs. heap tables

2001-08-16 Thread Leos Bitto
an old application written in PHP4 with PostgreSQL, and because of vacuum() it's having a big troubles. Solution? Straightforward: replace PostgreSQL with MySQL. Even with plain MyISAM tables, without heap tables (for storing session information - bascically cookies etc.) it's already faster and more

Re: auto_increment vs. heap tables

2001-08-16 Thread Leos Bitto
on it. and newid is the id recieved from the select. so doing it manually with heap tables seems quite feasable just a little extra work. thanks, -- Andrew - Original Message - From: Leos Bitto [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 14, 2001 6:05 AM

Re: auto_increment vs. heap tables

2001-08-16 Thread Andrew Schmidt
, August 16, 2001 1:02 PM Subject: RE: auto_increment vs. heap tables -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Except, if you have a table like so: ++-+ | id | num | ++-+ | 1 | 1 | | 2 | 2 | | 3 | 3 | | 4 | 4 | | 5 | 5 | ++-+ And remove

Re: auto_increment vs. heap tables

2001-08-16 Thread Eduardo J. Vega Arguedas
: auto_increment vs. heap tables Uh oh... Please NO. I want the standard _FAST_ auto_increment, not this. select max(id) from table x is terribly inefficient. And the table is locked during this operation... That's just not acceptable for me. Anyway, thanks for the response. It was the second one

Re: auto_increment vs. heap tables

2001-08-15 Thread Jeremy Zawodny
read the MySQL manual (applause here, please!) I know that auto_increment cannot be used there. This hurts me a lot, and given that MySQL doesn't support sequences, it nearly prohibits the usage of heap tables in my application. You do know that HEAP tables exist only in memory, right? However

auto_increment vs. heap tables

2001-08-14 Thread Leos Bitto
there. This hurts me a lot, and given that MySQL doesn't support sequences, it nearly prohibits the usage of heap tables in my application. However, I am still not giving up, so here's the question: how difficult would it be to get rid of that restriction for auto_increment in heap tables? The ideal

Heap Tables

2001-07-15 Thread Alexander Skwar
Hello When I store some data in a table of type Heap, this data will be lost when the server is shutdown (and later restarted), won't it? Alexander Skwar -- How to quote: http://learn.to/quote (german) http://quote.6x.to (english) Homepage: http://www.digitalprojects.com |

RE: Heap Tables

2001-07-15 Thread Carsten H. Pedersen
Hello When I store some data in a table of type Heap, this data will be lost when the server is shutdown (and later restarted), won't it? Correct. / Carsten -- Carsten H. Pedersen keeper and maintainer of the bitbybit.dk MySQL FAQ http://www.bitbybit.dk/mysqlfaq

Re: Heap Tables

2001-07-15 Thread Alexander Skwar
So sprach »Fournier Jocelyn [Presence-PC]« am 2001-07-15 um 23:37:57 +0200 : Hi, Definitely yes :) But the table structure won't be lost. Thanks to all who replied! filter: sql Alexander Skwar -- How to quote: http://learn.to/quote (german) http://quote.6x.to (english) Homepage:

HEAP tables

2001-05-21 Thread Jacob Friis Larsen
Does anyone have comments about using HEAP tables to cache a real table from a database ? My HEAP tables has max 10 rows. - Before posting, please check: http://www.mysql.com/manual.php (the manual) http

RE: indexes on TEMPORARY HEAP tables ignored in ORDER BY / GROUP BY

2001-03-09 Thread AzzKicar
For some strange reason, all HEAP table indexes only process WHERE clauses with = and = operators ONLY. There's nothing you can do about it. I'm pretty sure of that because I remember the MySQL mentions something like this about HEAP tables. -Original Message- From: Jeff S Wheeler

indexes on TEMPORARY HEAP tables ignored in ORDER BY / GROUP BY

2001-03-08 Thread Jeff S Wheeler
Hi, I'm not subscribed to the list so please CC: me on replies. Why are indexes on TEMPORARY tables created with TYPE=HEAP ignored when doing a query involving ORDER BY or GROUP BY? These indexes are used in some selects involving a WHERE clause, so obviously the index isn't completely

Re: Antwort: Re: Why Heap Tables doesn´t support auto in =?iso-8859-1?Q?crement_ colums?=

2001-03-02 Thread Alexander Skwar
So sprach Entryon Corp., Chief Technical Officer - P. Hasenfratz am Thu, Mar 01, 2001 at 02:37:30PM +0100: What's if you combine a timestamp with the client's IP address? IP addresses can be easily forged, especially if you're writing some kind of web application, so this is also not a good

Re: Antwort: Re: Why Heap Tables doesn´t support auto increment ?colums

2001-03-02 Thread Alexander Skwar
So sprach Gerhard Schmidt am Thu, Mar 01, 2001 at 04:02:54PM +0100: Besides the fakt tha this ID not unique. There ist the Problem that the ID you proposed ist an String ID and strings als Index are the Well, but he could make a two column primary key, where the first is the timestamp, and

Why Heap Tables doesn´t support auto_increment colums

2001-03-01 Thread Gerhard Schmidt
Hi, I wounder why there is no support for Auto_increment fields in Heap tables. I know there is a problem with the uniqueness of this columns but some times the uniqueness of the column is only needes as long as the heap table exists. Im currently working on system for Managing http Session

Re: Why Heap Tables doesn´t support auto increment colums

2001-03-01 Thread Richard Ellerbrock
-printable Hi,=20 I wounder why there is no support for Auto_increment fields in Heap tables. I know there is a problem with the uniqueness of this columns=20 but some times the uniqueness of the column is only needes as long=20 as the heap table exists.=20 I=B4m currently working

Re: Antwort: Re: Why Heap Tables doesn´t support auto increment ?colums

2001-03-01 Thread Gerhard Schmidt
the Uniqueness. The question still is. Why are auto_increment columns are not supported fuer Heap Tables. SoLong Estartu -- Gerhard Schmidt mailto:[EMAIL PROTECTED] Entwicklung

Re: Why Heap Tables doesn´t support auto increment colums

2001-03-01 Thread Joe Kislo
are Heap tables. So there is no Probelem if the ID generated by the auto_increment column is not unique when the Database server is restarted. There's a couple problems with that to begin with. First, you're storing state in a HEAP table. If the mysql server gets reset, all