vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| dipesh wrote: > Dear Sir, > I have Mysql database backup file ( xyz.sql ). Now i want to restore > this ( xyz.sql ) file into Postgres Database. > I try following command to restore but Postgres gives me the Error. You have a mysql dump, which is designed to restore to a MySQL database. It will include mostly standard SQL and also all the specific MySQL differences. You'll need to convert it to produce something that PostgreSQL can understand. http://pgfoundry.org/search/?type_of...&Search=Search Perhaps one of these two projects: http://pgfoundry.org/projects/mysql2pgsql/ http://pgfoundry.org/projects/my2postgres/ -- Richard Huxton Archonet Ltd -- Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-sql |