1. 如何将Postgres备份文件.backup导入到新的数据库中
1.到www.postgresql.org下载pgadmin这个工具,安装好
2.在菜单-文件-新增服务器
名称:TEST-PGSQL(名称自己编) 主机:填上你postgresql数据库专的服务器ip地址在本机属可以填上:127.0.0.1
埠号:就是端口postgreql默认是 (5432),
用户名:就是创建数据库时指定的超级管理员名称,密码:就是创建数据库时指定的密码。输完后点确定,就会连接到你的数据库。
3.找到你要导入数据的数据库名称,点右键,点”恢复“或者”备份回存“(pgadmin不同的pgadmin版本导入按钮的名称不一样)。然后跳出让你选择xxx.backup的文件,点确定,等导入完就可以。
2. 如何用data文件夹恢复postgresql数据库
您好,举例说明:如将一Shapfile文件“c:\road.shp”导入到数据表“road”中,数据库为“sjzmap”。1、运行“命令提示符”。2、切换至PostgreSQL数据库安装目录中的bin目录下。3、执行此目录下的shp2pgsql命令:“shp2pgsqlc:\road.shproad>c:\road.sql”。4、如将此文件直接导入数据库(不推荐):“shp2pgsql-cc:\road.shproadsjzmap|psql-dsjzmap”。5、使用pgAdmin3选择数据库,再导入表。注:..,..,withoutaddinganyactualdata.ngsteps.UsethePostgreSQL"mp"formatfortheoutputdata.Thiscanbecombinedwith-a,-cand-d."insert"SQLformat.Usethisforverylargedatasets..Keepidentifiers'case(column,schemaandattributes)..Coerceallintegerstostandard32-bitintegers,donotcreate64-bitbigints,..OutputWKTformat,forusewitholder(0.x)versionsofPostGIS.s.Specifyencodingoftheinputdata(dbffile).Whenused,.,.
3. pgadmin数据库可以直接导出数据吗
命令操作抄:袭
数据的导出:pg_mp -U postgres(用户名) (-t 表名) 数据库名(缺省时同用户名) > c:fulldb.sql
数据的导入:psql -U postgres(用户名) 数据库名(缺省时同用户名) < C:fulldb.sql
pgAdmin操作:
数据的导出:在库名上右击-->backup-->ok,即将数据保存到.backup文件中。
数据的导入:在库名上右击-->restore-->注意填写.backup文件的路径不能有空格-->ok.