如何查看postgresql数据库用户

如何查看postgresql数据库用户,第1张

postgresql中一个序列对象通常用于为行或者表生成唯一的标识符。查看序列:psql 的 \d 命令输出一个数据库对象,包括 Sequence,表,视图和索引。你还可以使用 \ds 命令只查看当前数据库的所有序列。例如:pigdb-# \ds List of relations Schema | Name | Type | Owner--------+-----------------------+----------+-------- public | author_ids | sequence | ichexw public | shipments_ship_id_seq | sequence | ichexw(2 rows)

david=# select extract(year from now());

date_part

-----------

2013

(1 row)

david=# 32 取月份

david=# select extract(month from now());

date_part

-----------

4

(1 row)

david=#

david=# select extract(day from timestamp '2013-04-13');

date_part

-----------

13

(1 row)

david=#

david=# SELECT EXTRACT(DAY FROM INTERVAL '40 days 1 minute');

date_part

-----------

40

(1 row)

david=# 33 查看今天是一年中的第几天

david=# select extract(doy from now());

date_part

-----------

102

(1 row)

david=# 34

查看现在距1970-01-01 00:00:00 UTC 的秒数

david=# select extract(epoch from now());

date_part

------------------

136575590794474

(1 row)

david=# 35 把epoch 值转换回时间戳

david=# SELECT TIMESTAMP WITH TIME ZONE 'epoch' + 1369755555 INTERVAL '1 second';

column

------------------------

2013-05-28 23:39:15+08

(1 row)

david=#

--取day

skytf=> select extract(day from now());

date_part

-----------

3

(1 row)

skytf=> select extract(day from timestamp '2011-06-03');

date_part

-----------

3

(1 row)

skytf=> select timestamp '2011-06-03';

timestamp

---------------------

2011-06-03 00:00:00

(1 row)

--取小时

skytf=> select extract (hour from now());

date_part

-----------

14

(1 row)

--取分钟

skytf=> select extract (minute from now());

date_part

方法一:通过查找表数据文件方式

这种方法通过查找表的数据文件的方式从而确定表的创建时间,但是这种方法并不能准备查询表的创建

时间,而且有时候,这种方法得到的信息还有可能是错误的,下面大致演示下。

--11 创建表并插入数据

francs=> create table test_ctime (id int4 primary key ,name varchar(32));

NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "test_ctime_pkey" for table "test_ctime"

CREATE TABLE

francs=> insert into test_ctime select generate_series(1,10000),'create_time test';

INSERT 0 10000

francs=> \d test_ctime;

Table "francstest_ctime"

Column | Type | Modifiers

--------+-----------------------+-----------

id | integer | not null

name | character varying(32) |

Indexes:

"test_ctime_pkey" PRIMARY KEY, btree (id)

francs=> \dt+ test_ctime;

List of relations

Schema | Name | Type | Owner | Size | Description

--------+------------+-------+--------+--------+-------------

francs | test_ctime | table | francs | 536 kB |

(1 row)

备注:表创建好了,接下来演示如何定位表的物理文件。

--12 定位表所在的表空间

francs=> select relname,relfilenode,reltablespace from pg_class where relname='test_ctime';

relname | relfilenode | reltablespace

------------+-------------+---------------

test_ctime | 24650 | 0

(1 row)

备注:在 PostgreSQL 的逻辑结构体系中,表位于数据库中,同时表位于表空间上,面表空间对应系统上一个

文件目录,每个表由一个或者多个文件组成; 根据上面的结果,表 test_ctime 的 reltablespace

值为 0,表示位于所属数据库的默认表空间,注意 relfilenode 值为 24650。

--13 查询数据库 francs 的默认表空间

francs=> select oid,datname,dattablespace from pg_database where datname='francs';

oid | datname | dattablespace

-------+---------+---------------

16386 | francs | 16385

备注:上面查出数据库 francs 的默认表空间的 oid 为 16385。

--14 查找 oid 为 16385 的表空间

francs=> select oid, from pg_tablespace where oid=16385;

oid | spcname | spcowner | spcacl | spcoptions

-------+------------+----------+-----------------------------------------+------------

16385 | tbs_francs | 10 | {postgres=C/postgres,francs=C/postgres} |

(1 row)

备注:查了半天才查到表 test_ctime 的默认表空间为 tbs_francs,这里之所以饶这么大圈,是为

了展示 postgresql 中的一些逻辑结构关系,如果自己对环境比较熟悉,可以直接定位到

哪个表空间。

--15 查询表空间 tbs_francs 对应的物理目录

francs=> \db

List of tablespaces

Name | Owner | Location

------------+----------+------------------------------------------

pg_default | postgres |

pg_global | postgres |

tbs_francs | postgres | /database/1922/pgdata1/pg_tbs/tbs_francs

(3 rows)

备注:表空间 tbs_francs 的数据目录为 /database/1922/pgdata1/pg_tbs/tbs_francs。

--16 进入数据目录

[postgres@redhat6 16386]$ cd /database/1922/pgdata1/pg_tbs/tbs_francs

[postgres@redhat6 tbs_francs]$ ll

total 40K

drwx------ 4 postgres postgres 40K May 22 10:35 PG_92_201204301

[postgres@redhat6 tbs_francs]$ cd PG_92_201204301/

[postgres@redhat6 PG_92_201204301]$ ll

total 16K

drwx------ 2 postgres postgres 12K Jun 26 19:03 16386

drwx------ 2 postgres postgres 40K May 22 10:37 pgsql_tmp

备注:根据前面的步骤 13 查询的信息知道 16386 为数据库 francs 的 oid。 再根据步骤 12 的信息知道

表 test_ctime 的 relfilenode 值为 24650

--17 查找表 test_ctime 的数据文件

[postgres@redhat6 16386]$ ll 24650

-rw------- 1 postgres postgres 512K Jun 26 18:57 24650

备注:根据数据文件 24650 知道表的创建时间为 2012-06-26 18:57。但这种方法并不准确,因为

表上的 *** 作可能导致表重新生成文件,接着演示。

--18 cluster 表

francs=> cluster verbose test_ctime using test_ctime_pkey;

INFO: clustering "francstest_ctime" using index scan on "test_ctime_pkey"

INFO: "test_ctime": found 0 removable, 10000 nonremovable row versions in 64 pages

DETAIL: 0 dead row versions cannot be removed yet

CPU 000s/003u sec elapsed 008 sec

CLUSTER

francs=> select relname,relfilenode,reltablespace from pg_class where relname='test_ctime';

relname | relfilenode | reltablespace

------------+-------------+---------------

test_ctime | 24655 | 0

(1 row)

备注:表 test_ctime 经过 cluster *** 作后,重新生成了数据文件,文件号由原来的 24650 变成了 24655

--19 系统上再次查询表数据文件

[postgres@redhat6 16386]$ ll 24650

-rw------- 1 postgres postgres 0 Jun 26 19:19 24650

[postgres@redhat6 16386]$ ll 24655

-rw------- 1 postgres postgres 512K Jun 26 19:19 24655

备注:显然新文件的时间 24655 并不是表 test_ctime 的初始创建时间。

--110 vacuum full 表

francs=> vacuum full test_ctime;

VACUUM

francs=> select relname,relfilenode,reltablespace from pg_class where relname='test_ctime';

relname | relfilenode | reltablespace

------------+-------------+---------------

test_ctime | 24659 | 0

(1 row)

备注: vacuum full *** 作后,同样产生了新文件,新文件号为 24659

--111 系统上再次查询表数据文件

[postgres@redhat6 16386]$ ll 24659

-rw------- 1 postgres postgres 512K Jun 26 19:22 24659

在SQL SERVER 2005上是好用的

1、安全性 → 登录名 → 新建登录名

2、设置万 SQL 用户名 密码

强制实施密码策略 √(选择)

其它2个选项 忽略

3、用户映射 → 仅可以访问的数据库 √(选择),之后下面出现好多可以设置的属性

选择用户可以对这个数据库做哪些 *** 作

4、状态

连接到数据库引擎 --- 允许

登录 ------------------------启用

5、确认 退出 用新账号 试试

postgresql是功能强大的开源数据库。

postgresql数据库是功能强大的开源数据库,它支持丰富的数据类型(如JSON和JSONB类型、数组类型)和自定义类型。

PostgreSQL数据库提供了丰富的接口,可以很方便地扩展它的功能,如可以在GiST框架下实现自己的索引类型,支持使用C语言写自定义函数、触发器,也支持使用流行的编程语言写自定义函数。

PostgreSQL数据库优点

1、对超许可数量软件使用的天然免疫力

对一些商业性质的数据库销售商来说,超许可数量的软件使用是第一位的问题。而使用PostgreSQL,因为没有任何授权的费用是,也就没有任何人可以起诉您违反授权协议违规使用软件。

2、比商业服务商更好的支持

除了有一般商业公司的支持外,我们还有由PostgreSQL专业人员和热心的爱好者组成的各种社区,用户可以向他们寻求支持和帮助。

3、员工成本的显著降低

相对于市场上大型的商业私有数据库软件,我们的系统在设计和开发时已考虑仅需少量的维护和优化,同时仍保持所有功能正常、稳定和性能正常。不仅如此,我们的培训过程相对于那些商业私有数据库供应商来说,总体来说有更好的性价比、更容易管理和更接近真实的使用场景。

4、享有盛名的可靠性和稳定性

与很多商业私有数据库不一样的是,对很多公司特别常见的是,PostgreSQL在几年的运行过程中几乎未出现哪怕是一次的宕机情况,即使是一次,它就是这样稳定地工作着。

5、扩展性

所有PostgreSQL的源代码对所有人都是可以免费获得的。如果您的公司员工需要定制或是给PostgreSQL增加一些功能,他们只需做很少的改动工作,也没有额外的成本。全球PostgreSQL社区的专业人员和热心的爱好者也在积极地扩展PostgreSQL的功能。

可以去你数据库的data数据位置(pgsql安装完成后initdb的位置),里面有一个postgresqlconf文件,搜索port,如果“port = xxxx”前没有#(#为注释内容,不生效的),说明你的数据库配置的端口号就是这个,如果有#,采用默认的端口号:5432

另外这个路径下还有一个postmastepid(前提是你的数据库已经启动了),打开可以看到启动的数据库所占端口号。

以上内容windows和linux版都一样

SELECT

  pg_procproname AS "函数名称",

  pg_typetypname AS "返回值数据类型",

  pg_procpronargs AS "参数个数"

FROM

  pg_proc

    JOIN pg_type

   ON (pg_procprorettype = pg_typeoid)

WHERE

  pg_typetypname != 'void'

  AND pronamespace = (SELECT pg_namespaceoid FROM pg_namespace WHERE nspname = 'public');

以上就是关于如何查看postgresql数据库用户全部的内容,包括:如何查看postgresql数据库用户、postgresql根据已知的一个日期,查询数据库中这个日期所属的月份的所有数据、如何找到PostgreSQL数据库上次更新的时间等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9348689.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-27
下一篇 2023-04-27

发表评论

登录后才能评论

评论列表(0条)

保存