2 tabelle in errore: _finder_tokens e _aggregate
-
Buongiorno a tutti, ho nel database 2 cartelle che non si riparano, comunque segnala errori.
Viso che ho un database pulito, ho esportato le tabelle e moi riposta questo codice:code_text -- phpMyAdmin SQL Dump -- version 5.2.3 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Creato il: Ago 16, 2026 alle 11:29 -- Versione del server: 10.11.10-MariaDB-cll-lve -- Versione PHP: 8.4.22 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `ialpasca1_ital` -- -- -------------------------------------------------------- -- -- Struttura della tabella `xdk3x_finder_tokens` -- CREATE TABLE `xdk3x_finder_tokens` ( `term` varchar(75) NOT NULL, `stem` varchar(75) NOT NULL, `common` tinyint(1) UNSIGNED NOT NULL DEFAULT 0, `phrase` tinyint(1) UNSIGNED NOT NULL DEFAULT 0, `weight` float UNSIGNED NOT NULL DEFAULT 1, `context` tinyint(1) UNSIGNED NOT NULL DEFAULT 2, `language` char(3) NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- -------------------------------------------------------- -- -- Struttura della tabella `xdk3x_finder_tokens_aggregate` -- CREATE TABLE `xdk3x_finder_tokens_aggregate` ( `term_id` int(10) UNSIGNED NOT NULL, `map_suffix` char(1) NOT NULL, `term` varchar(75) NOT NULL, `stem` varchar(75) NOT NULL, `common` tinyint(1) UNSIGNED NOT NULL DEFAULT 0, `phrase` tinyint(1) UNSIGNED NOT NULL DEFAULT 0, `term_weight` float UNSIGNED NOT NULL, `context` tinyint(1) UNSIGNED NOT NULL DEFAULT 2, `context_weight` float UNSIGNED NOT NULL, `total_weight` float UNSIGNED NOT NULL, `language` char(3) NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- -- Indici per le tabelle scaricate -- -- -- Indici per le tabelle `xdk3x_finder_tokens` -- ALTER TABLE `xdk3x_finder_tokens` ADD KEY `idx_word` (`term`), ADD KEY `idx_context` (`context`); -- -- Indici per le tabelle `xdk3x_finder_tokens_aggregate` -- ALTER TABLE `xdk3x_finder_tokens_aggregate` ADD KEY `token` (`term`), ADD KEY `keyword_id` (`term_id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;Pensavo di eliminare le mie e far caricare queste. Mi è venuto un dubbio, è possibile farlo oppure sto pensando di fare un gran casino ?
-
Ciao.
Che errori ti segnala?