dbaplus Community
Author

dbaplus Community

Enterprise-level professional community for Database, BigData, and AIOps. Daily original articles, weekly online tech talks, monthly offline salons, and quarterly XCOPS&DAMS conferences—delivered by industry experts.

2.3k
Articles
1
Likes
9.1k
Views
0
Comments
Recent Articles

Latest from dbaplus Community

100 recent articles max
dbaplus Community
dbaplus Community
Jul 19, 2026 · Databases

Why PostgreSQL’s Creator Criticizes Oracle and Google – AI‑Generated SQL Still Falls Short

In a candid interview, PostgreSQL founder Michael Stonebraker recounts his journey from Ingres to Postgres, critiques Oracle’s sales tactics, denounces Google’s and Amazon’s database strategies, explains Postgres’s extensible type system, explores the DBOS research project, and highlights why current large‑language‑model‑to‑SQL solutions remain far from production‑ready.

AIDBOSDatabase Architecture
0 likes · 25 min read
Why PostgreSQL’s Creator Criticizes Oracle and Google – AI‑Generated SQL Still Falls Short
dbaplus Community
dbaplus Community
Jul 19, 2026 · Databases

When Does MySQL Skip Writing to the Binlog? A Deep Dive into ROW‑Mode Logic and Controls

The article explains how MySQL determines whether a statement should be recorded in the binary log under ROW format, detailing the check_table_binlog_row_based function, the cached_row_logging_check flag, OPTION_BIN_LOG, and various scenarios—such as temporary tables, replication filters, no‑replicate tables, session settings, and internal operations—where binlog entries are omitted.

Binary LogBinlogMySQL
0 likes · 11 min read
When Does MySQL Skip Writing to the Binlog? A Deep Dive into ROW‑Mode Logic and Controls
dbaplus Community
dbaplus Community
Jul 18, 2026 · Operations

Can Windows’ New Native Linux Commands Replace WSL?

Microsoft has integrated a native Coreutils package into Windows, allowing many common Linux commands to run without WSL, but the single‑exe design, command conflicts, missing POSIX features, and runtime differences mean it cannot fully replace the Windows Subsystem for Linux.

Command LineCoreutilsCross-platform
0 likes · 6 min read
Can Windows’ New Native Linux Commands Replace WSL?
dbaplus Community
dbaplus Community
Jul 16, 2026 · Artificial Intelligence

Comprehensive Guide to Agent Skills: Standards, Build Process, and Design Patterns

This article provides an in‑depth technical analysis of Agent Skills, detailing the official specification, three‑layer progressive loading mechanism, engineering workflow of Skill‑Creator, naming and description rules, evaluation agents, practical advantages, known limitations, and five reusable design patterns for building robust AI agent capabilities.

AIAgent SkillsDesign Patterns
0 likes · 34 min read
Comprehensive Guide to Agent Skills: Standards, Build Process, and Design Patterns
dbaplus Community
dbaplus Community
Jul 15, 2026 · Backend Development

Why Are More Teams Switching from RabbitMQ to NATS?

The article compares RabbitMQ and NATS, outlining RabbitMQ's maturity and operational complexity versus NATS's lightweight, high‑performance, cloud‑native design, and explains when each solution is appropriate for modern microservice, edge, and AI‑driven architectures.

Cloud NativeJetStreamNATS
0 likes · 8 min read
Why Are More Teams Switching from RabbitMQ to NATS?
dbaplus Community
dbaplus Community
Jul 14, 2026 · Artificial Intelligence

Achieving 85%+ Accuracy: Qunar’s SQL Agent for Intelligent Data Retrieval and Efficiency Gains

The article details Qunar’s AI‑driven SQL Agent project, describing how data‑governance, multi‑agent architecture, prompt design, and RAG techniques were combined to reduce data‑access latency, raise query accuracy above 85%, and streamline the end‑to‑end data‑service workflow for business users.

AI OperationsData GovernanceLarge Language Model
0 likes · 24 min read
Achieving 85%+ Accuracy: Qunar’s SQL Agent for Intelligent Data Retrieval and Efficiency Gains
dbaplus Community
dbaplus Community
Jul 13, 2026 · Interview Experience

How to Process a 10 GB CSV File with Only 512 MB RAM?

The article walks through an interview scenario where a candidate must handle a 10 GB CSV using just 512 MB of memory, critiques naive answers, and presents a step‑by‑step streaming, chunked, and checkpoint‑based solution with optional Kafka/Flink considerations.

CSVFlinkJava
0 likes · 8 min read
How to Process a 10 GB CSV File with Only 512 MB RAM?
dbaplus Community
dbaplus Community
Jul 12, 2026 · Databases

Stop Blaming Data Size: 90% of Slow SQLs Are Due to Poor Queries

This article reveals that most slow SQL queries aren't caused by large data volumes but by poor query writing, such as index‑killing functions, implicit type casts, leading wildcards, SELECT *, missing LIMIT, and inefficient JOINs, and offers a five‑step method to diagnose and fix them.

SQLdatabasesindexing
0 likes · 11 min read
Stop Blaming Data Size: 90% of Slow SQLs Are Due to Poor Queries