I have mysql dump localhost.sql. But when i try to import this to postgresql db i got errors like this:
psql:localhost.sql:10: ERROR: unrecognized configuration parameter "sql_mode"
psql:localhost.sql:11: ERROR: unrecognized configuration parameter "autocommit"
START TRANSACTION
psql:localhost.sql:13: ERROR: unrecognized configuration parameter "time_zone"
psql:localhost.sql:24: ERROR: syntax error at or near "NOT"
LINE 1: CREATE DATABASE IF NOT EXISTS `peoplfv0_WPGHJ` DEFAULT CHARA...
^
psql:localhost.sql:25: ERROR: syntax error at or near "USE"
LINE 1: USE `peoplfv0_WPGHJ`;
^
psql:localhost.sql:39: ERROR: syntax error at or near "`"
LINE 1: CREATE TABLE `dl_affiliates` (
^
psql:localhost.sql:47: ERROR: syntax error at or near "`"
LINE 1: INSERT INTO `dl_affiliates` (`affiliates_id`, `affiliates_na...
^
psql:localhost.sql:65: ERROR: syntax error at or near "`"
LINE 1: CREATE TABLE `dl_artist` (
^
psql:localhost.sql:94: ERROR: syntax error at or near "`"
Can i convert this sql dump to postgresql format to import data from mysql dump?