时间:2021-05-23
postgresql中默认会有三个数据库:postgres、template0、template1。
postgres=# \l List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+-------------+-------------+----------------------- postgres | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =T/postgres + | | | | | postgres=CTc/postgres template0 | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres template1 | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres(3 rows) postgres=#客户端默认会连接到postgres库。可以删除该库,不过会影响默认客户端连接。
删除了postgres库之后,可以借助模板库template1再创建postgres库:
$ psql template1psql (11.9)Type "help" for help. template1=# drop database postgres;DROP DATABASEtemplate1=# \l List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+-------------+-------------+----------------------- template0 | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres template1 | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres(2 rows) template1=# create database postgres;CREATE DATABASEtemplate1=# \l List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+-------------+-------------+----------------------- postgres | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | template0 | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres template1 | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres(3 rows) template1=#其实,在使用create database db_name语句创建新库的时候,就是创建模板库template1的一个拷贝。
修改以后,再创建新库的时候,新库也会包含上面的表和扩展:
template1=# create database db_test;CREATE DATABASEtemplate1=# \c db_testYou are now connected to database "db_test" as user "postgres".db_test=# \dx List of installed extensions Name | Version | Schema | Description ---------+---------+------------+-------------------------------------------------- hstore | 1.5 | public | data type for storing sets of (key, value) pairs plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language(2 rows) db_test=# \d List of relations Schema | Name | Type | Owner --------+-------------+-------+---------- public | my_test_tab | table | postgres(1 row) db_test=#无论,在template1中加入了什么,都会在之后新建的库中。
从这里可以看到,只有template0库对应的datallowconn字段的值是F。这就是上面重建postgres的时候先登录template1而不是template0的原因。
template0是默认的不可修改的数据库。不建议用户对template0做任何修改。在初始化后的空实例中,template0和template1是完全相同的。
为什么需要两个模板库呢?假设你搞乱了template1,还可以通过template0恢复template1。
如果你想创建自己的模板库,只需将你选中库对应的datistemplate(pg_database中的列)设置为T即可。
当然,在创建新库的时候,还可以选择其他的库做为源库:
db_test=# create database db_test_2 template db_test;CREATE DATABASEdb_test=#但是,要求不能有其他连接连接到模板库,否则会报错:
db_test=# create database db_test_2 template db_test;ERROR: source database "db_test" is being accessed by other usersDETAIL: There is 1 other session using the database.db_test=#补充:重建postgresql模板数据库template1
$ psql -U postgres postgrespostgres=# update pg_database set datistemplate = false where datname='template1';UPDATE 1postgres=# drop database template1;DROP DATABASEpostgres=# create database template1 template=template0;CREATE DATABASEpostgres=# update pg_database set datistemplate = true where datname='template1';UPDATE 1postgres=#以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
微信小程序Template模板WXML提供模板(Template),可以在模板中定义代码片段,然后在不同的地方使用。可以保证格式以及数据的相同。1-定义模板使用
一、html5中的template标签html中的template标签中的内容在页面中不会显示。但是在后台查看页面DOM结构存在template标签。这是因为t
打開template/default/common/module.css文件查找.tlth,.tltd{padding:5px0;border-bottom:1
string.Template()string.Template()内添加替换的字符,使用"$"符号,或在字符串内,使用"${}";调用时使用string.su
字符串的替换(interpolation),可以使用string.Template,也可以使用标准字符串的拼接.string.Template标示替换的字符,使