Close

SQL

SQL stands for Structured Query Language. It is a language used to manage data in relational database management systems (RDBMS).

RDBMSs are database management systems that store data in tables. Each table consists of rows and columns. The rows represent individual data records, and the columns represent the different pieces of data about each record.

SQL is a declarative language, meaning you tell the database what you want to do, not how.

Exploring The Time Functions in MySQL

Exploring The Time Functions in MySQL

Here’s a list of some of MySQL’s time functions with SQL samples: NOW() – returns the current date and time in the format ‘YYYY-MM-DD HH:MM:SS’ Example: SELECT NOW(); CURDATE() – returns the current date in the format ‘YYYY-MM-DD’ Example: SELECT CURDATE(); CURTIME() – returns the current time in the format […]

Devamını Oku

Make Your Life Easier with MySQL’s Date Functions

Make Your Life Easier with MySQL's Date Functions

Date functions in MySQL are a set of functions that allow you to manipulate and extract date and time values from expressions, columns, or literals. Date functions help perform various operations on dates, such as finding the difference between two dates, adding or subtracting intervals from a date, formatting a […]

Devamını Oku

Exploring the Full Spectrum of AWS Services

Exploring the Full Spectrum of AWS Services

I use Amazon as a cloud service in my new Java/Kotlin projects. I couldn’t easily find a complete list of AWS modules. I was able to create this shortlist as a result of the reviews. Compute   EC2 Virtual Private Servers Lightsail Amazon’s hosting provider (VPS, DNS, storage) Lambda Functions […]

Devamını Oku

DevOps Stack

DevOps Stack

I am sharing a sample and full DevOps Stack by Simon Reymann Our whole DevOps stack consists of the following tools: The main reason we have chosen Kubernetes over Docker Swarm is related to the following artifacts: for the original post and comments please visit https://stackshare.io/zimoony/decisions/104069607668616391 and my StackShare profile is https://stackshare.io/ozgurozkok

Devamını Oku

Streaming Now: Debezium 1.0 Final Is Out

Streaming Now: Debezium 1.0 Final Is Out

Debezium is an open-source distributed platform that turns your existing databases into event streams so that applications can see and respond almost instantly to each committed row-level change in the databases. Debezium is built on top of Kafka and provides Kafka Connect compatible connectors that monitor specific database management systems. Debezium records the history […]

Devamını Oku

pgLoader, PostgreSQL data loader tool

postgresql

pgloader loads data into PostgreSQL. The official site is https://pgloader.io/ pgloader loads data into PostgreSQL and allows you to implement Continuous Migration from your current database to PostgreSQL. Read the White Paper to learn how to limit risks and control your budget, and start your PostgreSQL migration today! Introduction pgLoader has two modes of operation. It […]

Devamını Oku

SQL vs. NoSQL: All You Need To Know

SQL vs NoSQL: All You Need To Know

This video details the SQL and NoSQL Basics, Comparison, Pros and Cons of When to use what, etc. SQL (Structured Query Language) and NoSQL (Not only SQL) are two broad categories of database management systems that differ in how they store, process and retrieve data. SQL databases are based on […]

Devamını Oku

Streaming Database Changes with Debezium by Gunnar Morling

Streaming Database Changes with Debezium by Gunnar Morling

“Debezium (noun | de·be·zi·um | /dɪ:ˈbɪ:ziːəm/) – secret ingredient for change data capture” Updating caches and full-text indexes, synchronizing data between microservices, maintaining different read models in a CRQS-style architecture, and feeding operational data to your analytics tools — just a few use cases which benefit so much from streaming […]

Devamını Oku