mysql&pg连接数

pg:
PG数据库查看当前连接数:
select count(1) from pg_stat_activity;
PG数据库查看最大连接数:
show max_connections;
最大连接数也可以在pg配置文件中配置:
在postgresql.conf中设置:
max_connections = 500

查询表索引:

select * from pg_indexes where tablename='student';
select * from pg_statio_all_indexes where relname='student';

select pg_relation_size('test'); //查看表大小

select pg_size_pretty(pg_relation_size('test')); //以KB,MB,GB的方式来查看表大小

select pg_size_pretty(pg_tablespace_size('pg_default')); //查看表空间大小

select pg_size_pretty(pg_indexes_size('bu_table'));//查看表索引大小


mysql:
SHOW FULL processlist; 查看数据库当前连接数,可以看到ip,谁连接了,连接了多少个,处于什么状态,连接时长等等
可以根据id杀死一些无用的进程, 如 kill 4598;
但要注意,root账号有杀死大部分进程的权限,其他账号只能杀死自己使用的进程
show variables like '%max_connections%';查看数据库配置的最大连接数
 show global variables;查看数据库所有配置
 如果需要在众多的全局变量中,找到某一个变量的值的办法是在上边的命令后面使用 “LIKE %需要的特征值%”模糊查找包含特征值的全局配置。
 比如  show global variables like "%wait_timeout%" 
 前面global代表全局的意思

你可能感兴趣的:(mysql,postgresql,数据库)