小红花·文摘
  • 首页
  • 广场
  • 排行榜🏆
  • 直播
  • FAQ
Dify.AI

Phase 1 gave us pages and heap files (raw byte storage on disk). Phase 2 gave us schemas and serialization (typed values to/from bytes). But these two layers don’t know about each other — you’d...

OLTP – Phase 3 Table and Catalog

Kimserey Lam’s website, Software Development blog posts, videos and tutorials
Kimserey Lam’s website, Software Development blog posts, videos and tutorials · 2026-05-27T05:00:00Z

PostgreSQL's Table Access Method API is finally seeing real action.

Christophe Pettus: Table Access Methods Wake Up

Planet PostgreSQL
Planet PostgreSQL · 2026-05-20T15:00:00Z

When everyone has access to the same AI models, the winners are those who use them to build advantages that competitors can’t copy.

From AI table stakes to AI advantage: Building competitive moats

McKinsey Insights & Publications
McKinsey Insights & Publications · 2026-05-15T00:00:00Z

最近,一位客户的数据库表的auto_increment值接近最大容量。为避免超限,建议将数据类型从INT UNSIGNED更改为BIGINT。在使用pt-online-schema-change进行修改时,由于索引过大导致进程缓慢,最终决定取消该操作,采用Aurora蓝绿部署,直接在新集群上进行ALTER操作。通过删除次级索引后再添加,成功在auto_increment耗尽前完成了修改。此案例强调了监控auto_increment和合理规划的重要性。

在Aurora中对大型表执行ALTER TABLE

Percona Database Performance Blog
Percona Database Performance Blog · 2026-05-01T01:55:40Z

Here is a GUC that ships with a warning label. The docs, which are normally restrained to the point of parody, state plainly that setting this parameter wrong can cause “irretrievable data loss or...

Christophe Pettus: All your GUCs in a row: allow_system_table_mods

Planet PostgreSQL
Planet PostgreSQL · 2026-04-23T01:00:00Z

PDF table extraction often looks easy until it fails in production. Real bank statements can be messy, with scanned pages, shifting layouts, merged cells, and wrapped rows that break standard Java...

Article: Redesigning Banking PDF Table Extraction: A Layered Approach with Java

InfoQ
InfoQ · 2026-04-21T09:00:00Z

Google 的 Swiss Table 是一种高效的哈希表实现,利用 SIMD 指令实现 16 路并行探测,性能比传统的 std::unordered_map 快 2 倍以上。它通过控制字节优化内存访问,减少缓存未命中率,提升查找效率,并采用开放寻址策略,解决了链式哈希的内存开销和性能瓶颈问题。

Swiss Table:Google 的 SIMD 加速哈希表

土法炼钢兴趣小组的博客
土法炼钢兴趣小组的博客 · 2026-04-07T00:00:00Z

PostgreSQL 19 增加了 ALTER PUBLICATION 中对 EXCEPT TABLE 的支持,允许用户灵活地修改排除列表,从而更有效地管理表的发布和排除,提升了数据库的灵活性和可控性。

Hubert 'depesz' Lubaczewski: 等待 PostgreSQL 19 – 在 ALTER PUBLICATION 中增加对 EXCEPT TABLE 的支持。

Planet PostgreSQL
Planet PostgreSQL · 2026-03-26T11:46:24Z

PostgreSQL 19将引入EXCEPT TABLE语法,允许用户在创建出版物时排除一个或多个表,从而避免将这些表的数据发送给订阅者。对于分区表,排除将在根级别应用,未来将支持通过ALTER PUBLICATION管理这些排除项。这一改进将增强逻辑复制的灵活性。

Hubert 'depesz' Lubaczewski:等待PostgreSQL 19 - 通过EXCEPT TABLE允许在出版物中排除表

Planet PostgreSQL
Planet PostgreSQL · 2026-03-18T11:15:16Z

MySQL HeatWave is a fully-managed MySQL database service that combines transactions, analytics, machine learning, and GenAI services, without ETL duplication. Also included is HeatWave Lakehouse,...

Mapping your data to file(s) in your Lakehouse table

Planet MySQL
Planet MySQL · 2026-03-13T15:59:33Z

文章介绍了《易经》六十四卦的Unicode范围(U+4DC0到U+4DFF),并提供了Python、PowerShell和JavaScript的代码示例,用于输出所有卦象。

Unicode Table of the Sixty-Four Hexagrams of the I Ching

安志合的学习博客
安志合的学习博客 · 2026-01-30T01:35:53Z
Chao Li:理解PostgreSQL中分区表的ALTER TABLE行为

分区表是PostgreSQL的重要特性,但ALTER TABLE在分区表上的行为常常令人困惑。本文系统总结了ALTER TABLE在分区表上的15种子命令行为,帮助用户理解这些命令对现有和未来分区的影响。

Chao Li:理解PostgreSQL中分区表的ALTER TABLE行为

Planet PostgreSQL
Planet PostgreSQL · 2026-01-21T08:53:38Z

2025年12月14日,亚历山大·科罗特科夫提交了ALTER TABLE ... MERGE PARTITIONS ...和ALTER TABLE ... SPLIT PARTITION ...两个DDL命令补丁。这些命令用于合并和拆分分区,但在高负载下不建议用于大型分区表,尽管为未来改进奠定了基础。

休伯特·‘depesz’·卢巴切夫斯基:等待 PostgreSQL 19 – 实现 ALTER TABLE … MERGE/SPLIT PARTITIONS … 命令

Planet PostgreSQL
Planet PostgreSQL · 2026-01-04T17:30:47Z

Managing large datasets can be a balancing act between performance and storage. Keeping your “hot” data lean is critical for speed and memory efficiency. But what about the “cold” data you still...

🚀 Lightning-Fast Archiving in MySQL HeatWave Using Table Partition Exchange

Planet MySQL
Planet MySQL · 2026-01-02T13:46:49Z

© Laurenz Albe 2025 Sometimes a string column should only contain one of a limited number of distinct values. Examples would be the current state of a service request or the US state in an...

Laurenz Albe: What is better: a lookup table or an enum type?

Planet PostgreSQL
Planet PostgreSQL · 2025-12-02T11:01:12Z

From a successful gen-AI-backed shopping assistant to a new way to wow customers with great design, Turkish tableware, kitchenware, and homeware retailer Karaca partnered with McKinsey to create...

A family-owned kitchen and homeware company brings the power of AI to the dinner table

McKinsey Insights & Publications
McKinsey Insights & Publications · 2025-10-23T00:00:00Z
Hudi系列:表类型(Table & Query Types)

Hudi是一种数据管理框架,支持写时复制(COW)和读时合并(MOR)两种表类型。COW优化读取性能但写入延迟较高,而MOR通过日志文件动态合并,降低写入延迟,支持实时数据可用性。Hudi还提供快照查询、时间旅行查询和增量查询等多种查询类型,以满足不同的数据访问需求。

Hudi系列:表类型(Table & Query Types)

京东科技开发者
京东科技开发者 · 2025-10-17T03:44:55Z

Take your first hands-on steps in MySQL! This post teaches you how to create schemas and tables using relatable library analogies, beginner-friendly SQL examples, and tips to avoid common...

MySQL Basics: Table Manners – Setting up Your First Schema and Table

Planet MySQL
Planet MySQL · 2025-09-25T04:00:00Z

本文介绍了如何在远程数据库执行 SQL 查询,并将结果流式传输到 DataFusion,支持数据插入、自动推断结果集 schema、下推过滤器和限制等功能,兼容多种数据库类型。

datafusion-remote-table: 读取远端数据库,利用 datafusion 引擎分析计算

Rust.cc
Rust.cc · 2025-09-02T09:38:14Z

本文讨论了Apache Seata中出现的ShouldNeverHappenException异常“Get table meta failed”的原因及解决方案。问题是t_note_seq表缺少索引,导致Seata无法生成全局锁。解决方案是为该表添加主键索引,以确保Seata正常解析表元数据并执行分布式事务。

Seata ShouldNeverHappenException异常“Get table meta failed”解决

老卫(柳伟卫)的博客
老卫(柳伟卫)的博客 · 2025-07-31T00:22:00Z
  • <<
  • <
  • 1 (current)
  • 2
  • 3
  • >
  • >>
👤 个人中心
在公众号发送验证码完成验证
登录验证
在本设备完成一次验证即可继续使用

完成下面两步后,将自动完成登录并继续当前操作。

1 关注公众号
小红花技术领袖公众号二维码
小红花技术领袖
如果当前 App 无法识别二维码,请在微信搜索并关注该公众号
2 发送验证码
在公众号对话中发送下面 4 位验证码
友情链接: MOGE.AI 九胧科技 模力方舟 Gitee AI 菜鸟教程 Remio.AI DeekSeek连连 53AI 神龙海外代理IP IPIPGO全球代理IP 东波哥的博客 匡优考试在线考试系统 开源服务指南 蓝莺IM Solo 独立开发者社区 AI酷站导航 极客Fun 我爱水煮鱼 周报生成器 He3.app 简单简历 白鲸出海 T沙龙 职友集 TechParty 蟒周刊 Best AI Music Generator

小红花技术领袖俱乐部
小红花·文摘:汇聚分发优质内容
小红花技术领袖俱乐部
Copyright © 2021-
粤ICP备2022094092号-1
公众号 小红花技术领袖俱乐部公众号二维码
视频号 小红花技术领袖俱乐部视频号二维码