PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : SQL Fehler


Oliver-Berlin
11.08.2006, 14:02
Hallo,

in der SQL DB ist die Tabelle session und da habe ich einen Fehler drin

Table Op Msg_type Msg_text vxxxxx.sessioncheckerrorThe handler for the table doesn't support check

was ist das und was kann ich dagegen tun?

Gruß Olly

Mystics
11.08.2006, 22:36
Nichts, da man HEAP- bzw. MEMORY-Tabellen nicht optimieren/reparieren kann.

Lösche die Tabelle und lege sie neu an:CREATE TABLE session (
sessionhash CHAR(32) NOT NULL DEFAULT '',
userid INT UNSIGNED NOT NULL DEFAULT '0',
host CHAR(15) NOT NULL DEFAULT '',
idhash CHAR(32) NOT NULL DEFAULT '',
lastactivity INT UNSIGNED NOT NULL DEFAULT '0',
location CHAR(255) NOT NULL DEFAULT '',
useragent CHAR(100) NOT NULL DEFAULT '',
styleid SMALLINT UNSIGNED NOT NULL DEFAULT '0',
languageid SMALLINT UNSIGNED NOT NULL DEFAULT '0',
loggedin SMALLINT UNSIGNED NOT NULL DEFAULT '0',
inforum SMALLINT UNSIGNED NOT NULL DEFAULT '0',
inthread INT UNSIGNED NOT NULL DEFAULT '0',
incalendar SMALLINT UNSIGNED NOT NULL DEFAULT '0',
badlocation SMALLINT UNSIGNED NOT NULL DEFAULT '0',
bypass TINYINT NOT NULL DEFAULT '0',
profileupdate SMALLINT UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (sessionhash)
);