Nie masz na dysku w katalogu o nazwie bazy danych pliku lms*.frm?
nie ma niczego takiego
Możesz zrobić zrzut samego schematu bazy danych LMS i przesłać tutaj?
-- -- Struktura tabeli dla `nodes` -- CREATE TABLE IF NOT EXISTS `nodes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(32) NOT NULL DEFAULT '', `ipaddr` int(16) unsigned NOT NULL DEFAULT '0', `ownerid` int(11) NOT NULL DEFAULT '0', `creationdate` int(11) NOT NULL DEFAULT '0', `moddate` int(11) NOT NULL DEFAULT '0', `creatorid` int(11) NOT NULL DEFAULT '0', `modid` int(11) NOT NULL DEFAULT '0', `netdev` int(11) DEFAULT NULL, `access` tinyint(1) NOT NULL DEFAULT '1', `warning` tinyint(1) NOT NULL DEFAULT '0', `lastonline` int(11) NOT NULL DEFAULT '0', `linktype` tinyint(1) NOT NULL DEFAULT '0', `info` text NOT NULL, `passwd` varchar(16) NOT NULL DEFAULT '', `ipaddr_pub` int(16) unsigned NOT NULL DEFAULT '0', `location` text NOT NULL, `chkmac` tinyint(1) NOT NULL DEFAULT '1', `halfduplex` tinyint(1) NOT NULL DEFAULT '0', `port` smallint(6) NOT NULL DEFAULT '0', `nas` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `nodeid_2` (`id`,`name`), KEY `nodeid` (`id`), KEY `netdev` (`netdev`), KEY `ownerid` (`ownerid`), KEY `ipaddr_pub` (`ipaddr_pub`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2169 ;
-- -- Wyzwalacze `nodes` -- DROP TRIGGER IF EXISTS `trigger1`; DELIMITER // CREATE TRIGGER `trigger1` BEFORE UPDATE ON `nodes` FOR EACH ROW BEGIN if old.warning <> new.warning then IF NEW.warning=0 THEN SET NEW.info = concat(NEW.info, "<font color=blue> <b>Komunikat wyłączony</b></font> ", now(),"<br>"); end if; IF NEW.warning=1 THEN SET NEW.info = concat(NEW.info, "<font color=blue> <b>Komunikat włączony</b></font> ", now(), "<br>"); end if; end if; if old.access <> new.access then IF NEW.access=0 THEN SET NEW.info = concat(NEW.info, "<font color=red> <b>Ograniczony dostęp</b></font> ",now(), "<br>"); end if; IF NEW.access=1 THEN SET NEW.info = concat(NEW.info, "<font color=red> <b>Pełny dostęp</b></font> ", now(), "<br>"); end if; end if; end // DELIMITER ; --
trochę się rozjechało ale mam nadzieje że się przyda. zapytanie odnosi się to tabeli nodes więc wkleiłem tylko tą tabele (całość jest przydługa)