IWETHEY v. 0.3.0 | TODO
1,095 registered users | 0 active users | 0 LpH | Statistics
Login | Create New User
IWETHEY Banner

Welcome to IWETHEY!

New Here's the table
CREATE TABLE `appraisal_files` (\n  `idnum` bigint(20) unsigned NOT NULL auto_increment,\n  `time_stamp` timestamp(14) NOT NULL,\n  `reference_number` bigint(20) unsigned NOT NULL default '0',\n  `source_filename` varchar(128) NOT NULL default '',\n  `source_extension` varchar(5) NOT NULL default 'PDF',\n  `source_data` longblob NOT NULL,\n  PRIMARY KEY  (`idnum`),\n  KEY `time_stamp` (`time_stamp`),\n  KEY `reference_number` (`reference_number`)\n) TYPE=MyISAM

This already is the separate table for the blobs.
===

Implicitly condoning stupidity since 2001.
New What are the indexes though?
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New Called KEY in mysql
  PRIMARY KEY  (`idnum`),\n  KEY `time_stamp` (`time_stamp`),\n  KEY `reference_number` (`reference_number`)

===

Implicitly condoning stupidity since 2001.
New Oh, heh. Never mind.
Seems silly for them to invent their own syntax...
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
     Why would a database insert take >40 seconds? - (drewk) - (7)
         No idea, just a wild guess - (Meerkat) - (1)
             Full table scan is faster - (drewk)
         Are there indexes on other columns? - (ben_tilly) - (4)
             Here's the table - (drewk) - (3)
                 What are the indexes though? -NT - (admin) - (2)
                     Called KEY in mysql - (drewk) - (1)
                         Oh, heh. Never mind. - (admin)

We still think digital watches are a pretty neat idea.
56 ms