May 17, 2026, 11:40 PM
This commit is contained in:
@@ -0,0 +1 @@
|
||||
postgres# select * from pg_stat_archiver;
|
||||
@@ -0,0 +1,21 @@
|
||||
postgres=# create database DBATEST;
|
||||
CREATE DATABASE
|
||||
|
||||
postgres=# create database DBATEST with tablespace ts_postgres;
|
||||
CREATE DATABASE
|
||||
|
||||
postgres#CREATE DATABASE "DBATEST"
|
||||
WITH TABLESPACE ts_postgres
|
||||
OWNER "postgres"
|
||||
ENCODING 'UTF8'
|
||||
LC_COLLATE = 'en_US.UTF-8'
|
||||
LC_CTYPE = 'en_US.UTF-8'
|
||||
TEMPLATE template0;
|
||||
|
||||
|
||||
|
||||
-- View database information:
|
||||
|
||||
postgres=# \l
|
||||
|
||||
postgres# select * from pg_database;
|
||||
Reference in New Issue
Block a user