en
Feedback
There will be no singularity

There will be no singularity

Open in Telegram

Smartface, technologies and decay @antonrevyako

Show more
1 958
Subscribers
+124 hours
+27 days
-230 days
Posts Archive
JUG Ru Group's SmartData is back! The conference for data engineers will take place in October. Would you like to give a talk
JUG Ru Group's SmartData is back! The conference for data engineers will take place in October. Would you like to give a talk there? If you have interesting cases or you want to share your experience of nontrivial solutions, apply for participation. You will confirm your expertise, get to know other experts and get feedback from the participants. The Program Committee will help to prepare for the talk: schedule a personal curator, conduct a review of the material and organize rehearsals. On the website, you will find a list of topics you can talk about. If you have another topic, send your suggestions; they will be considered. And if you just want to participate in SmartData 2022, tickets are already on the website.

photo content

OMG https://github.com/oguimbal/pg-mem Well ... then it's time to remind you about my collection of open source SQL-tools: https://github.com/antonrevyako/useful-links/blob/master/opensource-sql-tools.md

SQL-WTF SQL-TIL snowflake edition. In Snowflake, you can create tables, stages, and functions temporarily. Temporary objects remain visible in the current session only and disappear after the session ends. The unusual behavior is that you can create a temporary object with the same name as an already existing object. So, all existing objects linked with it will be relinked to the "new" temporary object. For e.g. all views dependent on the original table will depend on the temporary table. More than it! The permanent table created after the temporary table with the same name stays invisible in the current session too :)

SQL-WTF SQL-TIL A few words about this. At this moment, you must specify an alias for all sub-selects in FROM clause. It's valid for PostgreSQL and MySQL. In Snowflake you can skip it. But under the hood Snowflake name it automatically as "values". So, you can't use more than one unnamed sub-select in from, because "values" will conflict. And yes, you can address it as "values".* Btw, there are some more "automatic aliases" in Snowflake: - "VALUES" (capital letters, not the same) for values() - "STAGE" for stages - "LIST_DIR_TABLE" for directory tables Absolutely insane behavior with sub-selects (named or unnamed) in the best and most popular DB in the world (he-he) - SQLite!
select * from (select 1) a, (select 1) b
Try to guess without tests (post your version in the comments)

a better way now… autoregex.xyz

photo content

To distract of the problem i randomly deleted 5 rows from the table.... :))) https://www.cybertec-postgresql.com/en/transaction-anomalies-with-select-for-update/

absolutely cursed…
absolutely cursed…