MySQL Forums
Forum List  »  MyISAM

Re: What constitutes a large table?
Posted by: Kenneth Vogt
Date: October 17, 2005 03:17PM

MySQL 4.1.13

Linux 2.4.31

Apache 1.3.33

CREATE TABLE `am_log` (\n `id` int(10) NOT NULL auto_increment,\n `level` tinyint(2) NOT NULL default '0',\n `updated` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,\n `entered` timestamp NOT NULL default '0000-00-00 00:00:00',\n `message` text,\n PRIMARY KEY (`id`),\n KEY `entered` (`entered`),\n FULLTEXT KEY `message` (`message`)\n) ENGINE=MyISAM DEFAULT CHARSET=latin1

I am recording an autoincremented key, a flag, a couple of dates, and a block of text with an average length of 130 characters (although the mean length is probably 20 characters and it never exceeds 1,000 characters).

I already mentioned the operations. Generally, I add sequential records. Occasionally, I delete a block of them. Otherwise, it is just SELECT operations.

Options: ReplyQuote


Subject
Views
Written By
Posted
2954
October 10, 2005 08:24PM
1927
October 17, 2005 01:22PM
Re: What constitutes a large table?
1996
October 17, 2005 03:17PM
1992
October 18, 2005 10:42AM
1950
October 18, 2005 12:12PM
2015
October 19, 2005 01:27AM
1951
October 19, 2005 09:10AM
1937
October 20, 2005 01:26AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.