pg技术大讲堂 -凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 593420
  • 博文数量: 486
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 4941
  • 用 户 组: 普通用户
  • 注册时间: 2018-07-05 13:59
个人简介

ocp考试资料群:569933648 验证码:ocp ocp 12c 19c考试题库解析与资料群:钉钉群号:35277291

文章分类

全部博文(486)

文章存档

2024年(3)

2023年(35)

2021年(151)

2020年(37)

2019年(222)

2018年(38)

我的朋友
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: mysql/postgresql

2023-02-23 17:55:43


postgresql从小白到专家,是从入门逐渐能力提升的一个系列教程,内容包括对pg基础的认知、包括安装使用、包括角色权限、包括维护管理、、等内容,希望对热爱pg、学习pg的同学们有帮助,欢迎持续关注cuug pg技术大讲堂。

part 3:pg建库与使用

内容1:创建postgresql数据库

内容2:启动和关闭postgresql数据库

内容3:使用postgresql数据库


1、创建数据库集簇

数据库集簇初始化流程:

--创建目录(以下操作都以postgres用户执行)

mkdir /usr/local/pg12.2/data

--初始化数据库集簇

initdb -d $pgdata -w --data-checksums #复制时需要

--启动数据库集簇

pg_ctl -d $pgdata start

postgresql.conf配置文件:

vi $pgdata/postgresql.conf

listen_addresses = '*' # 监听所有地址连接port = 1922 # 监听端口


2.1、数据库打开与关闭

--启动数据库集簇

pg_ctl -d $pgdata start

--关闭数据库集簇

pg_ctl -d $pgdata stop


2.2、数据库连接

--登录数据库

psql -u postgres

--退出数据库

\q


3、数据库使用

--登录到数据库后查看帮助

help

--执行pgsql命令

\l

--执行标准sql命令

select * from tab_name;



相关阅读:

从小白到专家 pg技术大讲堂 - part 1:pg简介

从小白到专家 pg技术大讲堂 - part 2:pg源代码安装



以上就是part 3 - pg建库与使用的内容,大家练习的时候如果遇到困难,可以进群一起探讨,钉钉交流群:358,22,460

阅读(191) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图