AWS, Cloud, Oracle AWS DynamoDB -> S3 -> OCI Autonomous Database 16.11.2020 by Oracle Team By Franck Pachot . I contribute to multiple technologies communities. I’m an Oracle ACE Director for many years, and I also became an AWS Data Hero recently 🎉. I got asked(…)
AWS, Database Administration & Monitoring Loading data from S3 to AWS RDS for PostgreSQL 11.11.2020 by Daniel Westermann AWS RDS for PostgreSQL comes with an extension that allows you to fetch data from AWS S3 and to write back data to AWS(…)
AWS, PostgreSQL PostgreSQL in AWS: clearing the doubts 09.11.2020 by Open source Team By Franck Pachot . I’ve heard and read people saying that the PostgreSQL managed service is not the true open-source PostgreSQL from the community. This is wrong and I’m writing this post to clarify it. PostgreSQL on EC2(…)
AWS, Database Administration & Monitoring, Database management Getting started with Exasol – Distribution keys 03.11.2020 by Daniel Westermann After the previous posts about Exasol, which have been more around installation, administration, backup & restore, loading data and general notes around transactions and sessions we'll now go into more details how Exasol manages data. Here is the list of(…)
AWS, Database Administration & Monitoring Getting started with Exasol – A multi node cluster in AWS 15.10.2020 by Daniel Westermann As of now, all the previous posts worked with the Community Edition of Exasol. While that is great for getting started quickly (the Community Edition comes with all the features, except multi node support and a(…)
AWS, Cloud Amazon Aurora Serverless (PostgreSQL compatibility) 20.09.2020 by Cloud Team By Franck Pachot . I’ve written a blog post about serverless databases and here is an example of Amazon RDS Aurora PostgreSQL in serverless mode: When I’ve created the instance (15:55 –(…)
AWS, Cloud Amazon or AWS services? 18.09.2020 by Cloud Team By Franck Pachot . When I'm writing about a product I like to be precise about the name, the upper and lower case, and even more: do you know that was taking special care of writing Oracle 12cR2 before then(…)
AWS, NoSQL Amazon DynamoDB: the cost of indexes 13.08.2020 by Cloud Team By Franck Pachot . That’s common to any data structure, whether it is RDBMS or NoSQL, indexes are good to accelerate reads but slow the writes. This post explains the consequences of adding indexes in DynamoDB. Secondary Indexes What(…)
AWS Amazon DynamoDB Local: running NoSQL on SQLite 07.08.2020 by Cloud Team By Franck Pachot . DynamoDB is a cloud-native, managed, key-value proprietary database designed by AWS to handle massive throughput for large volume and high concurrency with a simple API. simple API: Get, Put, Query, Scan on a table without(…)
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,(…)