Trace connections
select * from pg_stat_activity;
select client_addr,count(*) from pg_stat_activity group by client_addr;
select datname,client_addr,count(*) from pg_stat_activity group by datname,client_addr;
Test times of count(*)
EXPLAIN ANALYZE SELECT COUNT(*) FROM remitos;
Obtain rows(tuples) info
select * from pg_class where relname = 'remitos' and relkind = 'r';
select * from pg_stat_all_tables where relname = 'remitos';
and look at the n_tup_ins, n_tup_del, ...
references:
http://www.postgresonline.com/journal/archives/134-Terminating-Annoying-Back-Ends.html
Friday, February 04, 2011
Subscribe to:
Post Comments (Atom)
-
Resources: [1] Hela https://ome.grc.nia.nih.gov/iicbu2008/hela/index.html
-
en inglés se llama “A potentially dangerous Request.Form value was detected from the client”. varias páginas indican dos cosas: 1. agrega...
-
Image to Tex [1] https://latexconvert.com/ [2] https://www.img2latex.xyz/convert [3] https://ai-math.io/image-to-latex [4] https://image2lat...
OS Emulation on Ubuntu 20
sudo apt update && sudo apt install qemu-system-x86 # Create a 1GB disk image qemu-img create -f qcow2 win95.qcow2 1G qemu-i...

No comments:
Post a Comment