Hi All Using Heidsql 12.15.0.7171 with Mariadb Exporting the db including data, the file is UTF8 but special characters like í ó á etx are not exported correclty even in the Db they are correct. Is thers anything i can do ? Thank you.
Bad accents when exporting with data
In that case there may be some mismatch with the charsets of your tables. Can you post the CREATE TABLE code of one relevant table here, so I can try to reproduce?
Also, please ensure your HeidiSQL session does not run some charset alteration in an autostart script (Session manager > Advanced)
This is the table
-- Dumping structure for table DATOS_L12.tags
CREATE TABLE IF NOT EXISTS `tags` (
`id` smallint unsigned NOT NULL,
`pantalla_dcs` varchar(50) DEFAULT NULL,
`linea` varchar(7) DEFAULT NULL,
`tags_dcs` varchar(30) DEFAULT NULL,
`descripcion` varchar(100) DEFAULT NULL,
`valor_min` double DEFAULT NULL,
`valor_max` double DEFAULT NULL,
`unidades` varchar(10) DEFAULT NULL,
`tipo_dato` varchar(11) DEFAULT NULL,
`limite_alarma_bajo` varchar(6) DEFAULT NULL,
`limite_alarma_alto` varchar(6) DEFAULT NULL,
`limite_bajo_operacion` double DEFAULT NULL,
`limite_alto_operacion` double DEFAULT NULL,
`nombre_objeto_opc_server_800xa` varchar(500) DEFAULT NULL,
`grupo_de_muestreo` smallint DEFAULT NULL,
`informe` varchar(200) DEFAULT NULL,
`intervalo` mediumint unsigned DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
I do not have Startup Script. Thabk you
Just created that table on my local MariaDB 10.3. My first inspection was my server converted your charset=utf8mb3 to charset=utf8, and my MariaDB server supports the newer utf8mb4, so utf8mb3 may be an issue on your side.
Notepad++ detects the output file correctly and displays german umlauts and some of yours which I copied into the table correctly:

Please login to leave a reply, or register at first.