本文介绍了导出数据库的CREATE脚本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
说我已经在pgAdmin中创建了一个数据库,但是我想导出一个CREATE sql文件。
Say I've created a database in pgAdmin, but I want to export a CREATE sql file.
我将如何生成转储?
推荐答案
要生成一个SQL脚本,该脚本将创建表在给定数据库中的存在,请执行以下操作:
To generate a sql script that will create the tables as they exist in a given database do:
pg_dump-仅模式-没有所有者the_database> create_the_tables.sql
这将为您提供一堆create table语句。为了了解它的便携性,我尝试了以下操作:
This will give you a bunch of create table statements. Just to see how portable it was I tried the above as follows:
bvm$ pg_dump -s --no-owner devdb | sqlite3 so_ans.db
然后:
bvm$ sqlite3 so_ans.db .schema
CREATE TABLE courses (
id integer NOT NULL,
name text,
created_by integer,
jc text
);
有点酷。
这篇关于导出数据库的CREATE脚本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!