AWS DynamoDB PartiQL – part II: SELECT 25.11.2020 by Cloud Team By Franck Pachot . In the previous post I insertd a few rows in a Demo table using the SQL-like new API on DynamoDB. I checked my items with a SELECT but was limited in(…)
AWS DynamoDB PartiQL – part I: INSERT 24.11.2020 by Cloud Team By Franck Pachot . This sounds paradoxical to execute SQL statements on a NoSQL database, but we have now a new API to interact with DynamoDB, which looks like SQL. AWS data services is a collection of purpose-built database(…)
AWS, NoSQL RDBMS (vs. NoSQL) scales the algorithm before the hardware 03.08.2020 by Cloud Team By Franck Pachot . In The myth of NoSQL (vs. RDBMS) “joins dont scale” I explained that joins actually scale very well with an O(logN) on the input tables size, thanks to B*Tree index access,(…)
Database Administration & Monitoring, NoSQL A lesson from NoSQL (vs. RDBMS): listen to your users 01.08.2020 by Oracle Team By Franck Pachot . I have written a few blog posts about some NoSQL (vs. RDBMS) myths (“joins dont scale”, “agility: adding attributes” and “simpler API to(…)
NoSQL, Oracle The myth of NoSQL (vs. RDBMS) “a simpler API to bound resources” 21.07.2020 by Oracle Team By Franck Pachot . NoSQL provides an API that is much simpler than SQL. And one advantage of it is that users cannot exceed a defined amount of resources in one call. You can read this in(…)
AWS, Database Administration & Monitoring, NoSQL, Oracle, PostgreSQL The myth of NoSQL (vs. RDBMS) “joins dont scale” 05.07.2020 by Oracle Team By Franck Pachot . I’ll reference Alex DeBrie article “SQL, NoSQL, and Scale: How DynamoDB scales where relational databases don’t“, especially the paragraph about “Why relational databases don’t scale”. But I(…)
Cloud, Oracle Oracle non-linguistic varchar2 columns to order by without sorting 16.06.2020 by Oracle Team By Franck Pachot . Sorting data is an expensive operation and many queries declare an ORDER BY. To avoid the sort operation you can build an index as it maintains a sorted structure. This helps with Top-N queries as(…)
Cloud, Oracle No{Join,GroupBy}SQL – Analytic Views for BI 14.06.2020 by Open source Team By Franck Pachot . Advocates of NoSQL can query their structures without having to read a data model first. And without writing long table join clauses. They store and query a hierarchical structure without the need to follow relationships,(…)
AWS, Database Administration & Monitoring, NoSQL, Oracle, PostgreSQL The myth of NoSQL (vs. RDBMS) agility: adding attributes 07.05.2020 by Open source Team By Franck Pachot . There are good reasons for NoSQL and semi-structured databases. And there are also many mistakes and myths. If people move from RDBMS to NoSQL because of wrong reasons, they will have a bad experience and(…)
Development & Performance Refactoring procedural to SQL – an example with MySQL Sakila 01.03.2020 by Open source Team By Franck Pachot What I want to show in this blog post is that, as in mathematics where you have to apply some algebra rules to transform an equation to an equivalent one, the database developer must translate the business(…)