can not import in mysql workbench -
i exported database, mysql workbench, , in local disk c, , delete database, mysql workbench, , imported database(which exported previously, in case ui.sql) , original database name hibernatedb (which deleted mysql workbench), error unknown database, how can import this?[this commands of import.this exported database in local disk c.
by default, "include create schema" option in data export wizard disabled. suspect left disabled, generated sql lacks query create database. in other words, need create hibernatedb database. so, might add "create database if not exists hibernatedb
; use hibernatedb
;" on top of ui.sql.
Comments
Post a Comment