I\'m working on a project that requires lots of database inserts. I also need to be able to use something like full-text-search to retrieve the data.
I have a MyISAM table in MySQL which consists of two fields (f1 integer unsigned, f2 integer unsigned) and contains 320 million rows. I have an index on f2. Every week I insert about 150,000 rows into
After trying everything I could, I finally created this test table: CREATE TABLE test_table ( id int(11) NOT NULL AUTO_INCREMENT,
I have 2 tables: comments and comments_likes. comments id message likes triggers: AFTER DELETE DELETE FROM comments_likes WHERE comment_id = OLD.id;
I have a varchar(384) to store emails in a MyISAM table and I want check when the email exists 开发者_Python百科but the index length limit is 333 bytes (because I\'m using utf8 (1000 bytes/3 bytes)).
Which database engine should I use for a web crawler, InnoDB or MYiSAM? I have two PC\'s, each with 1TB hard drives. If one fills up, I\'开发者_StackOverflow社区d like for it to save to the other PC a
I am creating an application which will store a (semi) real-time feed of a few different scales around a certain 开发者_开发技巧location.The weights of each scale will be put in a table with only as m
I am having problems trying to use a different MySQL database engine.(I want to change from MyISAM to InnoDB)
Got a question about Entity Framework and MyIsam tables. My production database consists of MyIsam tables only. Often with a primary key li开发者_StackOverflowke UserId and then a secondary KeyId tha
MySQL has special table type MyISAM that does not support transactions. Does Oracle has something like this? I\'d like to create write-only database(for logging) that needs 开发者_如何学Pythonto be ve