Telegram Web Link
A friend of mine is on a product hunt today!
Forwarded from Roman Agabekov
Hey friends,

We built a database performance management tool Releem that helps engineers to keep database servers fast, secure and reliable.

Why Releem:
- Automatic performance tuning
- Fast slow query identification
- Monitoring & tuning in one place
- MySQL / MariaDB & AWS RDS.
- Open-source agent

After few years development we launched on Product Hunt.

If you interested in such solutions, have some questions or feedback appreciate your support❤️ here https://www.producthunt.com/posts/releem
👍3
OtterTune is dead…

https://ottertune.com/
😭6🫡4😁1
Forwarded from Generative Anton (Anton Repushko)
Из сорцов sqlite
😁30😐7👏6🎃3👍1🤣1
Forwarded from DataEng
Ребята из Supabase не перестают радовать! 😲

На днях в сети появился новый сервис от Supabase: https://postgres.new. Это data modeling сервис на базе Postgres со встроенным AI ассистентом. Запуск Postgres прямо в браузере возможен благодаря https://pglite.dev/. Это облегчённая версия Postgres, упакованная в WASM.

Целевая аудитория сервиса:

— аналитики данных
— дата инженеры
— студенты, изучающие реляционные базы данных, в частности PostgreSQL
— разработчики, разрабатывающие схемы таблиц

Пример работы с сервисом смотрите на Ютубе.
👍10
😁33🔥11
🤩21👍1
Friendly reminder:
The UNION and UNION ALL operators may order the rows in the final result set in an unspecified order. For example, it may place rows from the second result set before/after the row from the first result set.


I have encountered a situation where a query with UNION and UNION ALL resulted in a stable different row order...

UNION is often used for something like this:

SELECT * FROM (
SELECT id FROM t WHERE name = 'user_input'
UNION
SELECT id FROM t WHERE name = 'default_value'
)
LIMIT 1


It is important that if a record with 'user_input' is found, it should be the first record in the result.
In such a case, add an ORDER BY of this form to the query:

ORDER BY name = 'default_value'
👍3🤔3🤨1
2025/07/13 18:29:47
Back to Top
HTML Embed Code: