PostgreSQL12体验
1.创建数据库
D:\PostgreSQL\bin>initdb.exe -D D:\PostgreSQL\data -E UTF-8 -U postgres -W
2.启动数据库
pg_ctl -D "D:\PostgreSQL\data" -l logfile start
3.连接数据库
D:\PostgreSQL\bin>psql -U postgres
4.注册PG服务
pg_ctl register -N PostgreSQL -D D:\postgresql\data
D:\PostgreSQL\bin>initdb.exe -D D:\PostgreSQL\data -E UTF-8 -U postgres -W
2.启动数据库
pg_ctl -D "D:\PostgreSQL\data" -l logfile start
3.连接数据库
D:\PostgreSQL\bin>psql -U postgres
4.注册PG服务
pg_ctl register -N PostgreSQL -D D:\postgresql\data