Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Cannot Reproduce
-
Affects Version/s: 10.0.1
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
-
Environment:LINUX 64 BITS
Description
HI GUYS! i have a duplicated row with same primary keys in a ARIA table
what could i do!? REPAIR don't find it, CHECK don't find it but in SELECT it's showed twice!
CREATE TABLE `dig_lotes` (
`lote_unidade` INT(11) NOT NULL DEFAULT '0',
`lote_data` DATE NOT NULL DEFAULT '0000-00-00',
`lote_numero` INT(11) NOT NULL DEFAULT '0',
`lote_tipo` CHAR(1) NOT NULL DEFAULT 'p',
`total_ocorrencias` INT(10) UNSIGNED NOT NULL DEFAULT '0',
`total_documentos` INT(10) UNSIGNED NOT NULL DEFAULT '0',
`total_baixas` INT(10) UNSIGNED NOT NULL DEFAULT '0',
`total_bancos` INT(10) UNSIGNED NOT NULL DEFAULT '0',
`moeda_total` CHAR(3) NOT NULL DEFAULT 'R$',
`valor_total` DECIMAL(17,5) UNSIGNED NOT NULL DEFAULT '0.00000',
`valor_baixas` DECIMAL(17,5) UNSIGNED NOT NULL DEFAULT '0.00000',
`valor_bancos` DECIMAL(17,5) UNSIGNED NOT NULL DEFAULT '0.00000',
`digitador_tipo` ENUM('f','j') NOT NULL DEFAULT 'f',
`digitador_id` INT(11) NOT NULL DEFAULT '0',
`sit_spa` ENUM('d','s','p','a','mov') NOT NULL DEFAULT 'd',
`data_spa_d` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`data_spa_s` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`data_spa_p` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`data_spa_a` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`data_spa_mov` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`bordero` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
`cessionario_tipo` ENUM('f','j') NOT NULL DEFAULT 'f',
`cessionario_id` BIGINT(20) NOT NULL DEFAULT '0',
`importado` VARCHAR(25) NOT NULL,
`numero_remessa_boleto` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
`arquivo_importacao_id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
`observacao` TEXT NOT NULL,
`lote_data_origem` DATE NOT NULL DEFAULT '0000-00-00',
`lote_numero_origem` INT(11) NOT NULL DEFAULT '0',
`cobrador_padrao_tipo` ENUM('f','j') NOT NULL DEFAULT 'f',
`cobrador_padrao_id` INT(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`lote_unidade`, `lote_data`, `lote_numero`),
INDEX `lote_origem` (`lote_unidade`, `lote_data_origem`, `lote_numero_origem`)
)
ENGINE=Aria;
what got wrong? well i made a INSERT IGNORE INTO with another table:
insert ignore into dig_lotes
(lote_unidade,lote_tipo,lote_data,lote_numero,importado,sit_spa)
select lote_unidade,lote_tipo,lote_data,lote_numero,importado,'s'
from dig_contas
where (lote_unidade,lote_tipo,lote_data,lote_numero) not in (
select lote_unidade,lote_tipo,lote_data,lote_numero
from dig_lotes
);
it showed some warnings but no error, and after this it showed two values with same primary key!
how could i export database to check?
Gliffy Diagrams
Attachments
Activity
- All
- Comments
- Work Log
- History
- Activity
- Transitions
CHECK:
select * from dig_lotes where sit_spa!='mov' and lote_tipo='p' order by lote_data,lote_numero
"1001" "2013-04-12" "706" => repeated twice
"1001" "2013-04-17" "746" => repeated twice too
"lote_unidade" "lote_data" "lote_numero" "lote_tipo" "total_ocorrencias" "total_documentos" "total_baixas" "total_bancos" "moeda_total" "valor_total" "valor_baixas" "valor_bancos" "digitador_tipo" "digitador_id" "sit_spa" "data_spa_d" "data_spa_s" "data_spa_p" "data_spa_a" "data_spa_mov" "bordero" "cessionario_tipo" "cessionario_id" "importado" "numero_remessa_boleto" "arquivo_importacao_id" "observacao" "lote_data_origem" "lote_numero_origem" "cobrador_padrao_tipo" "cobrador_padrao_id"
"1001" "2013-04-12" "706" "p" "0" "1" "0" "0" "R$" "14681,00000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-12 22:23:03" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-12" "706" "p" "0" "0" "0" "0" "R$" "0,00000" "0,00000" "0,00000" "f" "0" "s" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-17" "746" "p" "0" "3" "0" "0" "R$" "14480,00000" "0,00000" "0,00000" "f" "44953" "s" "2013-04-17 20:56:27" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-17" "746" "p" "0" "0" "0" "0" "R$" "0,00000" "0,00000" "0,00000" "f" "0" "s" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-18" "604" "p" "0" "1" "0" "0" "R$" "6912,00000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-18 11:32:34" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-18" "692" "p" "0" "1" "0" "0" "R$" "180,00000" "0,00000" "0,00000" "f" "43878" "s" "2013-04-18 18:14:59" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-18" "705" "p" "0" "1" "0" "0" "R$" "41,40000" "0,00000" "0,00000" "f" "43878" "s" "2013-04-18 19:03:15" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-18" "706" "p" "0" "1" "0" "0" "R$" "2362,50000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-18 19:09:03" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-18" "706" "p" "0" "0" "0" "0" "R$" "0,00000" "0,00000" "0,00000" "f" "0" "s" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-18" "707" "p" "0" "1" "0" "0" "R$" "552,90000" "0,00000" "0,00000" "f" "43878" "s" "2013-04-18 19:24:52" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-18" "707" "p" "0" "0" "0" "0" "R$" "0,00000" "0,00000" "0,00000" "f" "0" "s" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-18" "708" "p" "0" "1" "0" "0" "R$" "13680,00000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-18 19:59:48" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-18" "710" "p" "0" "0" "0" "0" "R$" "0,00000" "0,00000" "0,00000" "f" "0" "s" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-18" "710" "p" "0" "1" "0" "0" "R$" "11759,10000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-18 20:57:08" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "369" "p" "0" "1" "0" "0" "R$" "50277,90000" "0,00000" "0,00000" "f" "44330" "s" "2013-04-19 06:40:06" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "603" "p" "0" "1" "0" "0" "R$" "18136,74000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-19 10:55:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "658" "p" "0" "1" "0" "0" "R$" "540,00000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-19 12:15:24" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "661" "p" "0" "4" "0" "0" "R$" "11558,40000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-19 12:36:33" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "689" "p" "0" "1" "0" "0" "R$" "1322,00000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-19 14:46:04" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "703" "p" "0" "1" "0" "0" "R$" "39,85000" "0,00000" "0,00000" "f" "43878" "s" "2013-04-19 16:00:38" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "706" "p" "0" "1" "0" "0" "R$" "380,00000" "0,00000" "0,00000" "f" "44953" "s" "2013-04-19 16:47:49" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPf" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "706" "p" "0" "0" "0" "0" "R$" "0,00000" "0,00000" "0,00000" "f" "0" "s" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPf" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "725" "p" "0" "0" "0" "0" "R$" "0,00000" "0,00000" "0,00000" "f" "0" "s" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "725" "p" "0" "1" "0" "0" "R$" "2864,25000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-19 18:07:38" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "728" "p" "0" "1" "0" "0" "R$" "99,75000" "0,00000" "0,00000" "f" "43878" "s" "2013-04-19 18:19:03" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "736" "p" "0" "1" "0" "0" "R$" "50184,10000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-19 19:23:18" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "736" "p" "0" "0" "0" "0" "R$" "0,00000" "0,00000" "0,00000" "f" "0" "s" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "745" "p" "0" "1" "0" "0" "R$" "13534,25000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-19 20:25:05" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "746" "p" "0" "3" "0" "0" "R$" "91320,00000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-19 21:20:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-19" "746" "p" "0" "0" "0" "0" "R$" "0,00000" "0,00000" "0,00000" "f" "0" "s" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-21" "1" "p" "0" "1" "0" "0" "R$" "173486,38000" "0,00000" "0,00000" "f" "44330" "s" "2013-04-21 23:50:48" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "308" "p" "0" "3" "0" "0" "R$" "11500,00000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-22 10:53:53" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "310" "p" "0" "1" "0" "0" "R$" "42021,00000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-22 11:01:43" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "311" "p" "0" "1" "0" "0" "R$" "63581,90000" "0,00000" "0,00000" "f" "6755" "s" "2013-04-22 11:15:19" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "316" "p" "0" "1" "0" "0" "R$" "225000,00000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-22 11:37:26" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "319" "p" "0" "1" "0" "0" "R$" "85658,33000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-22 11:55:08" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "320" "p" "0" "1" "0" "0" "R$" "157957,07000" "0,00000" "0,00000" "f" "90006" "p" "2013-04-22 11:58:14" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "447" "p" "0" "1" "0" "0" "R$" "40,85000" "0,00000" "0,00000" "f" "6709" "s" "2013-04-22 12:58:10" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPf" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "494" "p" "0" "1" "0" "0" "R$" "522,20000" "0,00000" "0,00000" "f" "43878" "s" "2013-04-22 14:39:46" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "514" "p" "0" "1" "0" "0" "R$" "240,00000" "0,00000" "0,00000" "f" "44953" "s" "2013-04-22 15:42:49" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPf" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "519" "p" "0" "1" "0" "0" "R$" "360,00000" "0,00000" "0,00000" "f" "44953" "s" "2013-04-22 15:47:26" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPf" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "520" "p" "0" "1" "0" "0" "R$" "60,00000" "0,00000" "0,00000" "f" "44953" "s" "2013-04-22 15:50:56" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPf" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "522" "p" "0" "1" "0" "0" "R$" "207,00000" "0,00000" "0,00000" "f" "43878" "s" "2013-04-22 16:32:51" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "535" "p" "0" "1" "0" "0" "R$" "31074,08000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-22 17:48:08" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "540" "p" "0" "1" "0" "0" "R$" "50,00000" "0,00000" "0,00000" "f" "6783" "s" "2013-04-22 19:38:29" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPf" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "541" "p" "0" "1" "0" "0" "R$" "540,00000" "0,00000" "0,00000" "f" "6755" "s" "2013-04-22 19:38:56" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "542" "p" "0" "3" "0" "0" "R$" "73231,20000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-22 19:45:39" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"
"1001" "2013-04-22" "543" "p" "0" "1" "0" "0" "R$" "169743,14000" "0,00000" "0,00000" "f" "90006" "s" "2013-04-22 19:49:23" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0000-00-00 00:00:00" "0" "f" "0" "SPfat" "0" "0" "" "0000-00-00" "0" "f" "0"