Usual vacuum process cannot reclaim back free space from tables into OS. It just cleans deleted records and makes space in data pages but does not shrink data files. Which is OK if you keep using those tables for further updates and inserts. But if you have some...
Sometimes it happens that you must do everything only in terminal from command line. So here are some useful commands: List of database sessions and queries from pg_stat_activity every 2 seconds with highlighting differences: watch -d -n 2 'psql -U upcload -d queries...
If you are running “normal server” you could be asking why the hell would someone want to use database without swap. But if you have virtual machine on cloud you probably know very good what I am talking about. Because cloud instances of Linux usually run...
If your database has some problems with locks you can try to monitor them with this very simple bash script: #!/bin/bash while true; do l=$(ps -ef|grep wait|grep -v grep|wc -l) TIMESTAMP=$(date +"%Y%m%d_%H%M%S") if [ $l != 0 ]; then psql -U postgres -c...
Also only some small hints (and also still in TODO): CommandExplanationDistro yum list postgresqlShow available packages (all)RedHat, CentOS yum search plproxysearch for available packagesRedHat, CentOS rpm -qa|grep postgresqlShows which postgresql packages are...
Just some simple hints: (still in TODO…) CommandExplanation grep -i 'ERROR:' *.log|lessYou must be in directory with server logs. Command shows you lines with text "error:" (ignores big/small letters). Command "less" is used for pagination - you can list in...
This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish.AcceptRejectRead More
Privacy & Cookies Policy
Privacy Overview
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.