码迷,mamicode.com
首页 >  
搜索关键字:psql    ( 253个结果
PostgreSQL简单添加只读用户的方法
1. 添加了白名单只读来避免开发同事错误的修改数据库内的数据, 但是他们总想去查询数据库的内容. 最简单的办法是修改pg_hba.conf添加只读用户. 2. 添加只读用户. 使用psql登录pg数据库 psql -U gscloud -d gscloud 效果为: [root@centos76 z ...
分类:数据库   时间:2020-01-01 14:52:28    阅读次数:125
离线安装PostgreSQL11.6
因为客户最近有一台CentOS7的虚拟机,但是没有联网,需要安装离线安装PostgreSQL 1、首先去官网下载离线安装包 https://www.postgresql.org/download/ 说明:可以点击相应系统下载,也可以点击左边导航source下载tar.gz 选择网页下端的 我此次安装 ...
分类:数据库   时间:2020-01-01 10:07:48    阅读次数:805
pg复制远端数据库
1 备份 pg_dump -v -f gscloud1912 -C -h 10.24.12.143 -U gscloud1912 gscloud1912 2 还原 创建数据库角色 创建数据库 还原 psql -v -h localhost -d gscloud1912 -U gscloud1912 ...
分类:数据库   时间:2019-12-28 16:02:32    阅读次数:77
【metasploit教程】之建立数据库
在我们通过search命令搜索时,我们会发现搜索的很慢(慢搜索)而且会报错; 启动postgresql: service postgresql strart 启动metasploit会开始建立数据表: service metasploit strart 配置开机启动: update-rc.d pos ...
分类:数据库   时间:2019-12-17 00:05:39    阅读次数:139
二进制安装postgresql
一、 下载需要的版本文件 网址 https://www.enterprisedb.com/download-postgresql-binaries wget https://get.enterprisedb.com/postgresql/postgresql-10.11-2-linux-x64-bi ...
分类:数据库   时间:2019-12-14 13:29:10    阅读次数:93
oracle Blob处理
--读 TempSql.SQL.Add('Select rptblob from RPTDEF where bianh = :bianh '); TempSql.ParamByName('bianh').AsString := '8061'; TempSql.Open; TBlobField(Tem ...
分类:数据库   时间:2019-11-30 11:46:16    阅读次数:105
psql 导出单张表数据
两种方式: 1 命令:pg_dump --host 127.0.0.1 --port 5432 --username "postgres" --role "postgres" --file "D:/test.sql" --table "public.\"表名\"" "数据库名" 2 使用pgadmi ...
分类:数据库   时间:2019-11-22 10:47:42    阅读次数:105
关于简单的hive练习
现给定一个一千条的原始数据的txt文件,要求清洗掉多余字符,按照空格和换行规则导入hive中。 1、导入txt文件 使用BufferedReader方法导入txt文件,准备进行处理。 2、清洗数据 使用字符串分割函数split()将数据按照空格、/、+、,等字符进行分割。 3、导出txt文件 使用F ...
分类:其他好文   时间:2019-11-13 23:54:14    阅读次数:185
PostgreSQL12体验
1.创建数据库D:\PostgreSQL\bin>initdb.exe-DD:\PostgreSQL\data-EUTF-8-Upostgres-W2.启动数据库pg_ctl-D"D:\PostgreSQL\data"-llogfilestart3.连接数据库D:\PostgreSQL\bin>psql-Upostgres4.注册PG服务pg_ctlregister
分类:数据库   时间:2019-11-09 12:06:02    阅读次数:98
postgresql数据库连接数查询
使用psql无法连接数据库,并报错 FATAL:53300 psql: FATAL: 53300: remaining connection slots are reserved for non-replication superuser connections 普通用户的连接已满,保留用于非复制的 ...
分类:数据库   时间:2019-10-31 16:17:21    阅读次数:477
253条   上一页 1 2 3 4 5 6 ... 26 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!