- postgresql
- what's new
- scheduler
- video
- code
•
•
•
•
-
Re: Creating 1 million users in PostgreSQL
Hans-Jürgen Schönig wrote a great post “Creating 1 million users in PostgreSQL”. I just love such things! Well done! Thanks. But since there is no possibility to leave comments under original post (BTW why?), I’ll create my own post. When testing such tricks always create temp database. Because I accidentally used… no, no, not the … Continue reading Re: Creating 1 million users in PostgreSQL
-
Code Quality Comparison of Firebird, MySQL, and PostgreSQL
I have read very interesting post “Code Quality Comparison of Firebird, MySQL, and PostgreSQL” today about static analysis of three open-source RDBMS. And I wonder, should we use static code analyzers on an ongoing basis, e.g. PVS Studio? tl;dr: So, the code-quality rankings are as follows: 1 place – Firebird and PostgreSQL. 2 place – … Continue reading Code Quality Comparison of Firebird, MySQL, and PostgreSQL
-
PostgreSQL on Android?
Yes, it’s possible! Recently I found great Android application Termux. Termux is an Android terminal emulator and Linux environment app that works directly with no rooting or setup required. A minimal base system is installed automatically – additional packages are available using the APT package manager. I installed it and my first command was pkg … Continue reading PostgreSQL on Android?
-
psql on bash on Windows
1. Windows 10 supports Subsystem for Linux. 2. psql has some issues with non-English locales under Windows, see Notes for Windows Users. So I installed WSL, then choose Ubuntu, started Bash and executed: pasha_golub@PASHA:~$ sudo apt install postgresql-client Cool. Now I have native Linux psql and, of course, I want to try Pavel Stehule’s Postgres … Continue reading psql on bash on Windows
-
IsEven or IsEvenER?
How to create IsEven() function on plpgsql. #FridayPost